Merge branch 'main' into pro-release
Dieser Commit ist enthalten in:
Commit
785bd5d956
98 geänderte Dateien mit 5492 neuen und 5671 gelöschten Zeilen
26
README.md
26
README.md
|
@ -1,3 +1,25 @@
|
||||||
# discourse-custom-wizard
|
# Discourse Custom Wizard Plugin
|
||||||
|
|
||||||
See further: https://thepavilion.io/c/knowledge/discourse/custom-wizard/118
|
The Custom Wizard Plugin lets you make forms for your Discourse forum. Better user onboarding, structured posting, data enrichment, automated actions and much more for your community.
|
||||||
|
|
||||||
|
<img src="https://camo.githubusercontent.com/593432f1fc9658ffca104065668cc88fa21dffcd3002cb78ffd50c71f33a2523/68747470733a2f2f706176696c696f6e2d6173736574732e6e7963332e63646e2e6469676974616c6f6365616e7370616365732e636f6d2f706c7567696e732f77697a6172642d7265706f7369746f72792d62616e6e65722e706e67" alt="" data-canonical-src="https://pavilion-assets.nyc3.cdn.digitaloceanspaces.com/plugins/wizard-repository-banner.png" style="max-width: 100%;" width="400">
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
If you're not sure how to install a plugin in Discourse, please follow the [plugin installation guide](https://meta.discourse.org/t/install-a-plugin/19157) or contact your Discourse hosting provider.
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
[Read the full documentation here](https://discourse.pluginmanager.org/c/discourse-custom-wizard/documentation), or go directly to the relevant section
|
||||||
|
|
||||||
|
- [Wizard Administration](https://discourse.pluginmanager.org/t/wizard-administration)
|
||||||
|
- [Wizard Settings](https://discourse.pluginmanager.org/t/wizard-settings)
|
||||||
|
- [Step Settings](https://discourse.pluginmanager.org/t/step-settings)
|
||||||
|
- [Field Settings](https://discourse.pluginmanager.org/t/field-settings)
|
||||||
|
- [Conditional Settings](https://discourse.pluginmanager.org/t/conditional-settings)
|
||||||
|
- [Field Interpolation](https://discourse.pluginmanager.org/t/field-interpolation)
|
||||||
|
- [Wizard Examples and Templates](https://discourse.pluginmanager.org/t/wizard-examples-and-templates)
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
- [Report a bug](https://discourse.pluginmanager.org/w/bug-report)
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import ComposerEditor from "discourse/components/composer-editor";
|
import ComposerEditor from "discourse/components/composer-editor";
|
||||||
import {
|
import {
|
||||||
|
bind,
|
||||||
default as discourseComputed,
|
default as discourseComputed,
|
||||||
on,
|
on,
|
||||||
} from "discourse-common/utils/decorators";
|
} from "discourse-common/utils/decorators";
|
||||||
|
@ -12,6 +13,8 @@ import Site from "discourse/models/site";
|
||||||
import { uploadIcon } from "discourse/lib/uploads";
|
import { uploadIcon } from "discourse/lib/uploads";
|
||||||
import { dasherize } from "@ember/string";
|
import { dasherize } from "@ember/string";
|
||||||
|
|
||||||
|
const IMAGE_MARKDOWN_REGEX = /!\[(.*?)\|(\d{1,4}x\d{1,4})(,\s*\d{1,3}%)?(.*?)\]\((upload:\/\/.*?)\)(?!(.*`))/g;
|
||||||
|
|
||||||
export default ComposerEditor.extend({
|
export default ComposerEditor.extend({
|
||||||
classNameBindings: ["fieldClass"],
|
classNameBindings: ["fieldClass"],
|
||||||
allowUpload: true,
|
allowUpload: true,
|
||||||
|
@ -25,7 +28,7 @@ export default ComposerEditor.extend({
|
||||||
popupMenuOptions: [],
|
popupMenuOptions: [],
|
||||||
draftStatus: "null",
|
draftStatus: "null",
|
||||||
replyPlaceholder: alias("field.translatedPlaceholder"),
|
replyPlaceholder: alias("field.translatedPlaceholder"),
|
||||||
uploadingFieldId: null,
|
wizardEventFieldId: null,
|
||||||
|
|
||||||
@on("didInsertElement")
|
@on("didInsertElement")
|
||||||
_composerEditorInit() {
|
_composerEditorInit() {
|
||||||
|
@ -76,7 +79,6 @@ export default ComposerEditor.extend({
|
||||||
|
|
||||||
const wizardEventNames = ["insert-text", "replace-text"];
|
const wizardEventNames = ["insert-text", "replace-text"];
|
||||||
const eventPrefix = this.eventPrefix;
|
const eventPrefix = this.eventPrefix;
|
||||||
const session = this.get("session");
|
|
||||||
this.appEvents.reopen({
|
this.appEvents.reopen({
|
||||||
trigger(name, ...args) {
|
trigger(name, ...args) {
|
||||||
let eventParts = name.split(":");
|
let eventParts = name.split(":");
|
||||||
|
@ -87,26 +89,8 @@ export default ComposerEditor.extend({
|
||||||
currentEventPrefix !== "wizard-editor" &&
|
currentEventPrefix !== "wizard-editor" &&
|
||||||
wizardEventNames.some((wen) => wen === currentEventName)
|
wizardEventNames.some((wen) => wen === currentEventName)
|
||||||
) {
|
) {
|
||||||
let wizardName = name.replace(eventPrefix, "wizard-editor");
|
let wizardEventName = name.replace(eventPrefix, "wizard-editor");
|
||||||
if (currentEventName === "insert-text") {
|
return this._super(wizardEventName, ...args);
|
||||||
args = {
|
|
||||||
text: args[0],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (currentEventName === "replace-text") {
|
|
||||||
args = {
|
|
||||||
oldVal: args[0],
|
|
||||||
newVal: args[1],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
let wizardArgs = Object.assign(
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
fieldId: session.get("uploadingFieldId"),
|
|
||||||
},
|
|
||||||
args
|
|
||||||
);
|
|
||||||
return this._super(wizardName, wizardArgs);
|
|
||||||
} else {
|
} else {
|
||||||
return this._super(name, ...args);
|
return this._super(name, ...args);
|
||||||
}
|
}
|
||||||
|
@ -138,6 +122,29 @@ export default ComposerEditor.extend({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@bind
|
||||||
|
_handleImageDeleteButtonClick(event) {
|
||||||
|
if (!event.target.classList.contains("delete-image-button")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const index = parseInt(
|
||||||
|
event.target.closest(".button-wrapper").dataset.imageIndex,
|
||||||
|
10
|
||||||
|
);
|
||||||
|
const matchingPlaceholder = this.get("composer.reply").match(
|
||||||
|
IMAGE_MARKDOWN_REGEX
|
||||||
|
);
|
||||||
|
|
||||||
|
this.session.set("wizardEventFieldId", this.field.id);
|
||||||
|
this.appEvents.trigger(
|
||||||
|
"composer:replace-text",
|
||||||
|
matchingPlaceholder[index],
|
||||||
|
"",
|
||||||
|
{ regex: IMAGE_MARKDOWN_REGEX, index }
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
extraButtons(toolbar) {
|
extraButtons(toolbar) {
|
||||||
const component = this;
|
const component = this;
|
||||||
|
@ -187,14 +194,14 @@ export default ComposerEditor.extend({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
previewUpdated($preview) {
|
previewUpdated(preview) {
|
||||||
highlightSyntax($preview[0], this.siteSettings, this.session);
|
highlightSyntax(preview, this.siteSettings, this.session);
|
||||||
|
|
||||||
if (this.siteSettings.mentionables_enabled) {
|
if (this.siteSettings.mentionables_enabled) {
|
||||||
const { linkSeenMentionableItems } = requirejs(
|
const { linkSeenMentionableItems } = requirejs(
|
||||||
"discourse/plugins/discourse-mentionables/discourse/lib/mentionable-items-preview-styling"
|
"discourse/plugins/discourse-mentionables/discourse/lib/mentionable-items-preview-styling"
|
||||||
);
|
);
|
||||||
linkSeenMentionableItems($preview, this.siteSettings);
|
linkSeenMentionableItems(preview, this.siteSettings);
|
||||||
}
|
}
|
||||||
this._super(...arguments);
|
this._super(...arguments);
|
||||||
},
|
},
|
||||||
|
@ -213,7 +220,7 @@ export default ComposerEditor.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
showUploadModal() {
|
showUploadModal() {
|
||||||
this.session.set("uploadingFieldId", this.field.id);
|
this.session.set("wizardEventFieldId", this.field.id);
|
||||||
document.getElementById(this.fileUploadElementId).click();
|
document.getElementById(this.fileUploadElementId).click();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,6 +2,7 @@ import CustomWizard from "../models/custom-wizard";
|
||||||
import discourseComputed from "discourse-common/utils/decorators";
|
import discourseComputed from "discourse-common/utils/decorators";
|
||||||
import Component from "@ember/component";
|
import Component from "@ember/component";
|
||||||
import { dasherize } from "@ember/string";
|
import { dasherize } from "@ember/string";
|
||||||
|
import getURL from "discourse-common/lib/get-url";
|
||||||
|
|
||||||
export default Component.extend({
|
export default Component.extend({
|
||||||
classNameBindings: [":wizard-no-access", "reasonClass"],
|
classNameBindings: [":wizard-no-access", "reasonClass"],
|
||||||
|
@ -18,7 +19,11 @@ export default Component.extend({
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
skip() {
|
skip() {
|
||||||
CustomWizard.skip(this.get("wizardId"));
|
if (this.currentUser) {
|
||||||
|
CustomWizard.skip(this.get("wizardId"));
|
||||||
|
} else {
|
||||||
|
window.location = getURL("/");
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -134,10 +134,7 @@ export default Component.extend({
|
||||||
{
|
{
|
||||||
scrollTop: $element.offset().top - 200,
|
scrollTop: $element.offset().top - 200,
|
||||||
},
|
},
|
||||||
400,
|
400
|
||||||
function () {
|
|
||||||
$element.wiggle(2, 100);
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -43,7 +43,7 @@ export default Component.extend(UndoChanges, {
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
|
|
||||||
messageUrl: "https://thepavilion.io/t/2810",
|
messageUrl: "https://discourse.pluginmanager.org/t/action-settings",
|
||||||
|
|
||||||
@discourseComputed("action.type")
|
@discourseComputed("action.type")
|
||||||
messageKey(type) {
|
messageKey(type) {
|
||||||
|
|
|
@ -27,7 +27,7 @@ export default Component.extend(UndoChanges, {
|
||||||
isTextType: or("isText", "isTextarea", "isComposer"),
|
isTextType: or("isText", "isTextarea", "isComposer"),
|
||||||
isComposerPreview: equal("field.type", "composer_preview"),
|
isComposerPreview: equal("field.type", "composer_preview"),
|
||||||
categoryPropertyTypes: selectKitContent(["id", "slug"]),
|
categoryPropertyTypes: selectKitContent(["id", "slug"]),
|
||||||
messageUrl: "https://thepavilion.io/t/2809",
|
messageUrl: "https://discourse.pluginmanager.org/t/field-settings",
|
||||||
|
|
||||||
@discourseComputed("field.type")
|
@discourseComputed("field.type")
|
||||||
validations(type) {
|
validations(type) {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import CustomWizardCustomField from "../models/custom-wizard-custom-field";
|
||||||
export default Controller.extend({
|
export default Controller.extend({
|
||||||
messageKey: "create",
|
messageKey: "create",
|
||||||
fieldKeys: ["klass", "type", "name", "serializers"],
|
fieldKeys: ["klass", "type", "name", "serializers"],
|
||||||
documentationUrl: "https://thepavilion.io/t/3572",
|
documentationUrl: "https://discourse.pluginmanager.org/t/custom-fields",
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
addField() {
|
addField() {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import I18n from "I18n";
|
||||||
import { underscore } from "@ember/string";
|
import { underscore } from "@ember/string";
|
||||||
|
|
||||||
export default Controller.extend({
|
export default Controller.extend({
|
||||||
messageUrl: "https://thepavilion.io/t/3652",
|
messageUrl: "https://discourse.pluginmanager.org/t/wizard-manager",
|
||||||
messageKey: "info",
|
messageKey: "info",
|
||||||
messageIcon: "info-circle",
|
messageIcon: "info-circle",
|
||||||
messageClass: "info",
|
messageClass: "info",
|
||||||
|
@ -68,7 +68,7 @@ export default Controller.extend({
|
||||||
file: null,
|
file: null,
|
||||||
filename: null,
|
filename: null,
|
||||||
});
|
});
|
||||||
$("#file-upload").val("");
|
document.getElementById("custom-wizard-file-upload").value = "";
|
||||||
},
|
},
|
||||||
|
|
||||||
@observes("importing", "destroying")
|
@observes("importing", "destroying")
|
||||||
|
@ -83,7 +83,7 @@ export default Controller.extend({
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
upload() {
|
upload() {
|
||||||
$("#file-upload").click();
|
document.getElementById("custom-wizard-file-upload").click();
|
||||||
},
|
},
|
||||||
|
|
||||||
clearFile() {
|
clearFile() {
|
||||||
|
@ -102,7 +102,7 @@ export default Controller.extend({
|
||||||
if (maxFileSize < file.size) {
|
if (maxFileSize < file.size) {
|
||||||
this.setMessage("error", "file_size_error");
|
this.setMessage("error", "file_size_error");
|
||||||
this.set("file", null);
|
this.set("file", null);
|
||||||
$("#file-upload").val("");
|
document.getElementById("custom-wizard-file-upload").value = "";
|
||||||
} else {
|
} else {
|
||||||
this.setProperties({
|
this.setProperties({
|
||||||
file,
|
file,
|
||||||
|
|
|
@ -21,5 +21,6 @@ export default Controller.extend({
|
||||||
return key;
|
return key;
|
||||||
},
|
},
|
||||||
|
|
||||||
messageUrl: "https://thepavilion.io/c/knowledge/discourse/custom-wizard",
|
messageUrl:
|
||||||
|
"https://discourse.pluginmanager.org/c/discourse-custom-wizard/documentation",
|
||||||
});
|
});
|
||||||
|
|
|
@ -6,7 +6,7 @@ import { observes } from "discourse-common/utils/decorators";
|
||||||
export default {
|
export default {
|
||||||
name: "custom-wizard-edits",
|
name: "custom-wizard-edits",
|
||||||
initialize(container) {
|
initialize(container) {
|
||||||
const siteSettings = container.lookup("site-settings:main");
|
const siteSettings = container.lookup("service:site-settings");
|
||||||
|
|
||||||
if (!siteSettings.custom_wizard_enabled) {
|
if (!siteSettings.custom_wizard_enabled) {
|
||||||
return;
|
return;
|
||||||
|
@ -47,6 +47,39 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
api.modifyClass("component:d-editor", {
|
||||||
|
pluginId: "custom-wizard",
|
||||||
|
|
||||||
|
didInsertElement() {
|
||||||
|
this._super(...arguments);
|
||||||
|
|
||||||
|
if (this.wizardComposer) {
|
||||||
|
this.appEvents.on(
|
||||||
|
`wizard-editor:insert-text`,
|
||||||
|
this,
|
||||||
|
"_wizardInsertText"
|
||||||
|
);
|
||||||
|
this.appEvents.on(
|
||||||
|
"wizard-editor:replace-text",
|
||||||
|
this,
|
||||||
|
"_wizardReplaceText"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_wizardInsertText(text, options) {
|
||||||
|
if (this.session.wizardEventFieldId === this.fieldId) {
|
||||||
|
this.insertText(text, options);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_wizardReplaceText(oldVal, newVal, opts = {}) {
|
||||||
|
if (this.session.wizardEventFieldId === this.fieldId) {
|
||||||
|
this.replaceText(oldVal, newVal, opts);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,7 +6,7 @@ export default {
|
||||||
|
|
||||||
initialize: function (container) {
|
initialize: function (container) {
|
||||||
const messageBus = container.lookup("service:message-bus");
|
const messageBus = container.lookup("service:message-bus");
|
||||||
const siteSettings = container.lookup("site-settings:main");
|
const siteSettings = container.lookup("service:site-settings");
|
||||||
|
|
||||||
if (!siteSettings.custom_wizard_enabled || !messageBus) {
|
if (!siteSettings.custom_wizard_enabled || !messageBus) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -224,7 +224,7 @@ export function buildFieldValidations(validations) {
|
||||||
wizardSchema.field.validations = validations;
|
wizardSchema.field.validations = validations;
|
||||||
}
|
}
|
||||||
|
|
||||||
const siteSettings = getOwner(this).lookup("site-settings:main");
|
const siteSettings = getOwner(this).lookup("service:site-settings");
|
||||||
if (siteSettings.wizard_apis_enabled) {
|
if (siteSettings.wizard_apis_enabled) {
|
||||||
wizardSchema.action.types.send_to_api = {
|
wizardSchema.action.types.send_to_api = {
|
||||||
api: null,
|
api: null,
|
||||||
|
|
|
@ -72,6 +72,9 @@ export default EmberObject.extend(ValidState, {
|
||||||
type: "PUT",
|
type: "PUT",
|
||||||
data: { fields },
|
data: { fields },
|
||||||
}).catch((response) => {
|
}).catch((response) => {
|
||||||
|
if (response.jqXHR) {
|
||||||
|
response = response.jqXHR;
|
||||||
|
}
|
||||||
if (response && response.responseJSON && response.responseJSON.errors) {
|
if (response && response.responseJSON && response.responseJSON.errors) {
|
||||||
let wizardErrors = [];
|
let wizardErrors = [];
|
||||||
response.responseJSON.errors.forEach((err) => {
|
response.responseJSON.errors.forEach((err) => {
|
||||||
|
|
|
@ -12,10 +12,10 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{input
|
{{input
|
||||||
id="file-upload"
|
id="custom-wizard-file-upload"
|
||||||
type="file"
|
type="file"
|
||||||
accept="application/json"
|
accept="application/json"
|
||||||
change=(action "setFile")}}
|
input=(action "setFile")}}
|
||||||
{{d-button
|
{{d-button
|
||||||
id="upload-button"
|
id="upload-button"
|
||||||
label="admin.wizard.manager.upload"
|
label="admin.wizard.manager.upload"
|
||||||
|
|
|
@ -8,10 +8,10 @@
|
||||||
{{nav-item route="adminWizardsLogs" label="admin.wizard.log.nav_label"}}
|
{{nav-item route="adminWizardsLogs" label="admin.wizard.log.nav_label"}}
|
||||||
{{nav-item route="adminWizardsManager" label="admin.wizard.manager.nav_label"}}
|
{{nav-item route="adminWizardsManager" label="admin.wizard.manager.nav_label"}}
|
||||||
|
|
||||||
<div class="admin-actions">
|
<div class="announcement">
|
||||||
{{wizard-subscription-badge}}
|
<a href="https://custom-wizard.pavilion.tech/subscriptions" target="_blank" title="Click to learn more about Custom Wizard Subscriptions">
|
||||||
<a target="_blank" class="btn btn-pavilion-support" rel="noreferrer noopener" href="https://thepavilion.io/w/support" title={{i18n "admin.wizard.support_button.title"}}>
|
<img src='/images/emoji/twitter/man_mage.png?v=12'>
|
||||||
{{d-icon "far-life-ring"}}{{i18n "admin.wizard.support_button.label"}}
|
<span>Custom Wizard Subscriptions Are Coming!</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{{/admin-nav}}
|
{{/admin-nav}}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
validation=validation
|
validation=validation
|
||||||
loading=composer.loading
|
loading=composer.loading
|
||||||
showLink=showLink
|
showLink=showLink
|
||||||
wizardComposerEvents=true
|
wizardComposer=true
|
||||||
fieldId=field.id
|
fieldId=field.id
|
||||||
disabled=disableTextarea
|
disabled=disableTextarea
|
||||||
outletArgs=(hash composer=composer editorType="composer")}}
|
outletArgs=(hash composer=composer editorType="composer")}}
|
||||||
|
|
|
@ -9,6 +9,24 @@ $info: #038ae7;
|
||||||
$warning: #d47e00;
|
$warning: #d47e00;
|
||||||
$error: #ef1700;
|
$error: #ef1700;
|
||||||
|
|
||||||
|
.announcement {
|
||||||
|
margin-left: auto;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #3c1c8d;
|
||||||
|
padding: 6px 12px;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.admin-wizard-controls {
|
.admin-wizard-controls {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#file-upload {
|
#custom-wizard-file-upload {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,8 @@ body.custom-wizard {
|
||||||
.global-notice,
|
.global-notice,
|
||||||
.create-topics-notice,
|
.create-topics-notice,
|
||||||
.top-notices-outlet,
|
.top-notices-outlet,
|
||||||
.consent_banner {
|
.consent_banner,
|
||||||
|
.bootstrap-mode-notice {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,72 @@ af:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ af:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ af:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,76 @@ ar:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
zero: "%{count} Characters"
|
||||||
|
one: "%{count} Character"
|
||||||
|
two: "%{count} Characters"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +249,7 @@ ar:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,86 +529,3 @@ ar:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
zero: "You can only select {{count}} items."
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
two: "You can only select {{count}} items."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
zero: "Select at least {{count}} items."
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
two: "Select at least {{count}} items."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
zero: "%{count} Characters"
|
|
||||||
one: "%{count} Character"
|
|
||||||
two: "%{count} Characters"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ az:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ az:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ az:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ be:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ be:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ be:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ bg:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ bg:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ bg:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ bn:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ bn:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ bn:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ bo:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ bo:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ bo:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,73 @@ bs:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +246,7 @@ bs:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,77 +526,3 @@ bs:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ ca:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ ca:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ ca:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ cs:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ cs:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ cs:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,76 @@ cy:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
zero: "%{count} Characters"
|
||||||
|
one: "%{count} Character"
|
||||||
|
two: "%{count} Characters"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +249,7 @@ cy:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,86 +529,3 @@ cy:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
zero: "You can only select {{count}} items."
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
two: "You can only select {{count}} items."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
zero: "Select at least {{count}} items."
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
two: "Select at least {{count}} items."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
zero: "%{count} Characters"
|
|
||||||
one: "%{count} Character"
|
|
||||||
two: "%{count} Characters"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ da:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ da:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ da:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -1,224 +1,291 @@
|
||||||
de:
|
de:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Schließe {{name}} ab"
|
||||||
|
completed: "Du hast diesen Assistenten abgeschlossen."
|
||||||
|
not_permitted: "Du bist nicht berechtigt, auf diesen Assistenten zuzugreifen."
|
||||||
|
none: "Es gibt hier keinen Assistenten."
|
||||||
|
return_to_site: "Zurück zu {{siteName}}"
|
||||||
|
requires_login: "Du musst eingeloggt sein, um auf diesen Assistenten zuzugreifen."
|
||||||
|
reset: "Diesen Assistenten zurücksetzen."
|
||||||
|
step_not_permitted: "Du bist nicht berechtigt, diesen Schritt anzusehen."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Den gespeicherten Entwurf vom %{date} fortsetzen?"
|
||||||
|
resume: "Weiter"
|
||||||
|
restart: "Neu beginnen"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Zeichen"
|
||||||
|
other: "%{count} Zeichen"
|
||||||
|
quit: "Vielleicht später"
|
||||||
|
done_custom: "Fertig"
|
||||||
|
back: "Zurück"
|
||||||
|
next: "Weiter"
|
||||||
|
step: "%{current} von %{total}"
|
||||||
|
upload: "Hochladen"
|
||||||
|
uploading: "Hochladen..."
|
||||||
|
upload_error: "Leider ist ein Fehler beim Hochladen der Datei aufgetreten. Bitte versuche es erneut."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Beitrags-Vorschau"
|
||||||
|
hide_preview: "Beitrag bearbeiten"
|
||||||
|
quote_post_title: "Gesamten Beitrag zitieren"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Fett"
|
||||||
|
bold_text: "fett gedruckter Text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Hervorhebung"
|
||||||
|
italic_text: "hervorgehobener Text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "hier Linkbeschreibung eingeben"
|
||||||
|
link_dialog_title: "Hyperlink einfügen"
|
||||||
|
link_optional_text: "optionaler Titel"
|
||||||
|
link_url_placeholder: "http://beispiel.com"
|
||||||
|
quote_title: "Blockzitat"
|
||||||
|
quote_text: "Blockzitat"
|
||||||
|
blockquote_text: "Blockzitat"
|
||||||
|
code_title: "Vorformatierter Text"
|
||||||
|
code_text: "vorformatierten Text mit 4 Leerzeichen einrücken"
|
||||||
|
paste_code_text: "tippe oder füge den Code hier ein"
|
||||||
|
upload_title: "Hochladen"
|
||||||
|
upload_description: "gib hier eine Beschreibung des Uploads ein"
|
||||||
|
olist_title: "Nummerierte Liste"
|
||||||
|
ulist_title: "Aufzählung"
|
||||||
|
list_item: "Listen-Element"
|
||||||
|
toggle_direction: "Richtung wechseln"
|
||||||
|
help: "Hilfe zur Markdown-Bearbeitung"
|
||||||
|
collapse: "den Editor minimieren"
|
||||||
|
abandon: "Editor schließen und Entwurf verwerfen"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Abbrechen"
|
||||||
|
cant_send_pm: "Sorry, Du kannst keine Nachricht an %{username} senden."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Hast du vergessen Empfänger hinzuzufügen?"
|
||||||
|
body: "Aktuell wird diese Nachricht nur an dich selber versendet!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Gib mindestens 5 Zeichen ein, um nach ähnlichen Themen zu suchen"
|
||||||
|
insufficient_characters_categories: "Gib mindestens 5 Zeichen ein, um in %{catLinks} nach ähnlichen Themen zu suchen"
|
||||||
|
results: "Dein Thema hat Ähnlichkeit mit..."
|
||||||
|
no_results: "Keine ähnlichen Themen."
|
||||||
|
loading: "Suche nach ähnlichen Themen..."
|
||||||
|
show: "zeigen"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
label: "Wizard"
|
label: "Assistent"
|
||||||
nav_label: "Wizards"
|
nav_label: "Assistenten"
|
||||||
select: "Select a wizard"
|
select: "Assistent auswählen"
|
||||||
create: "Create Wizard"
|
create: "Assistent erstellen"
|
||||||
name: "Name"
|
name: "Name"
|
||||||
name_placeholder: "wizard name"
|
name_placeholder: "Assistenten Name"
|
||||||
background: "Background"
|
background: "Hintergrund"
|
||||||
background_placeholder: "#hex"
|
background_placeholder: "#hex"
|
||||||
save_submissions: "Save"
|
save_submissions: "Speichern"
|
||||||
save_submissions_label: "Save wizard submissions."
|
save_submissions_label: "Wizard Einreichungen speichern."
|
||||||
multiple_submissions: "Multiple"
|
multiple_submissions: "Mehrere"
|
||||||
multiple_submissions_label: "Users can submit multiple times."
|
multiple_submissions_label: "Benutzer können mehrmals einreichen."
|
||||||
after_signup: "Signup"
|
after_signup: "Anmelden"
|
||||||
after_signup_label: "Users directed to wizard after signup."
|
after_signup_label: "Benutzer, die nach der Anmeldung an den Assistenten weitergeleitet werden."
|
||||||
after_time: "Time"
|
after_time: "Uhrzeit"
|
||||||
after_time_label: "Users directed to wizard after start time:"
|
after_time_label: "Benutzer, die nach der Startzeit an den Assistenten weitergeleitet werden:"
|
||||||
after_time_time_label: "Start Time"
|
after_time_time_label: "Startzeit"
|
||||||
after_time_modal:
|
after_time_modal:
|
||||||
title: "Wizard Start Time"
|
title: "Assistent Startzeit"
|
||||||
date: "Date"
|
date: "Datum"
|
||||||
time: "Time"
|
time: "Uhrzeit"
|
||||||
done: "Set Time"
|
done: "Uhrzeit festlegen"
|
||||||
clear: "Clear"
|
clear: "Leeren"
|
||||||
required: "Required"
|
required: "Erforderlich"
|
||||||
required_label: "Users cannot skip the wizard."
|
required_label: "Benutzer können den Assistenten nicht überspringen."
|
||||||
prompt_completion: "Prompt"
|
prompt_completion: "Aufforderung"
|
||||||
prompt_completion_label: "Prompt user to complete wizard."
|
prompt_completion_label: "Den Benutzer zum Vervollständigen des Assistenten auffordern."
|
||||||
restart_on_revisit: "Restart"
|
restart_on_revisit: "Neustart"
|
||||||
restart_on_revisit_label: "Clear submissions on each visit."
|
restart_on_revisit_label: "Einreichungen bei jedem Besuch löschen."
|
||||||
resume_on_revisit: "Resume"
|
resume_on_revisit: "Fortsetzen"
|
||||||
resume_on_revisit_label: "Ask the user if they want to resume on each visit."
|
resume_on_revisit_label: "Frage den Benutzer, ob er bei jedem Besuch fortfahren möchte."
|
||||||
theme_id: "Theme"
|
theme_id: "Theme"
|
||||||
no_theme: "Select a Theme (optional)"
|
no_theme: "Wählen Sie ein Theme (optional)"
|
||||||
save: "Save Changes"
|
save: "Änderungen speichern"
|
||||||
remove: "Delete Wizard"
|
remove: "Assistent löschen"
|
||||||
add: "Add"
|
add: "Hinzufügen"
|
||||||
url: "Url"
|
url: "Url"
|
||||||
key: "Key"
|
key: "Schlüssel"
|
||||||
value: "Value"
|
value: "Wert"
|
||||||
profile: "profile"
|
profile: "Profil"
|
||||||
translation: "Translation"
|
translation: "Übersetzung"
|
||||||
translation_placeholder: "key"
|
translation_placeholder: "Schlüssel"
|
||||||
type: "Type"
|
type: "Typ"
|
||||||
none: "Make a selection"
|
none: "Wähle aus"
|
||||||
submission_key: 'submission key'
|
submission_key: 'Einreichungsschlüssel'
|
||||||
param_key: 'param'
|
param_key: 'Parameter'
|
||||||
group: "Group"
|
group: "Gruppe"
|
||||||
permitted: "Permitted"
|
permitted: "Zulässig"
|
||||||
advanced: "Advanced"
|
advanced: "Erweitert"
|
||||||
undo: "Undo"
|
undo: "Rückgängig"
|
||||||
clear: "Clear"
|
clear: "Leeren"
|
||||||
select_type: "Select a type"
|
select_type: "Wähle einen Typ"
|
||||||
condition: "Condition"
|
condition: "Bedingung"
|
||||||
index: "Index"
|
index: "Index"
|
||||||
category_settings:
|
category_settings:
|
||||||
custom_wizard:
|
custom_wizard:
|
||||||
title: "Custom Wizard"
|
title: "Benutzerdefinierter Assistent"
|
||||||
create_topic_wizard: "Select a wizard to replace the new topic composer in this category."
|
create_topic_wizard: "Wähle einen Assistenten, um den neuen Themen-Komponisten in dieser Kategorie zu ersetzen."
|
||||||
message:
|
message:
|
||||||
wizard:
|
wizard:
|
||||||
select: "Select a wizard, or create a new one"
|
select: "Wähle einen Assistenten oder erstelle einen neuen"
|
||||||
edit: "You're editing a wizard"
|
edit: "Du bearbeitest einen Assistenten"
|
||||||
create: "You're creating a new wizard"
|
create: "Du erstellst einen neuen Assistenten"
|
||||||
documentation: "Check out the wizard documentation"
|
documentation: "Schau dir die Assistenten-Dokumentation an"
|
||||||
contact: "Contact the developer"
|
contact: "Kontaktiere den Entwickler"
|
||||||
field:
|
field:
|
||||||
type: "Select a field type"
|
type: "Feldtyp auswählen"
|
||||||
edit: "You're editing a field"
|
edit: "Du bearbeitest ein Feld"
|
||||||
documentation: "Check out the field documentation"
|
documentation: "Sieh Dir die Feld-Dokumentation an"
|
||||||
action:
|
action:
|
||||||
type: "Select an action type"
|
type: "Wähle einen Aktionstyp"
|
||||||
edit: "You're editing an action"
|
edit: "Du bearbeitest eine Aktion"
|
||||||
documentation: "Check out the action documentation"
|
documentation: "Sieh Dir die Aktions-Dokumentation an"
|
||||||
custom_fields:
|
custom_fields:
|
||||||
create: "View, create, edit and destroy custom fields"
|
create: "Benutzerdefinierte Felder ansehen, erstellen, bearbeiten und löschen"
|
||||||
saved: "Saved custom field"
|
saved: "Benutzerdefiniertes Feld gespeichert"
|
||||||
error: "Failed to save: {{messages}}"
|
error: "Speichern fehlgeschlagen: {{messages}}"
|
||||||
documentation: Check out the custom field documentation
|
documentation: Sieh Dir die benutzerdefinierte Felddokumentation an
|
||||||
manager:
|
manager:
|
||||||
info: "Export, import or destroy wizards"
|
info: "Assistenten exportieren, importieren oder löschen"
|
||||||
documentation: Check out the manager documentation
|
documentation: Sieh Dir die Manager-Dokumentation an
|
||||||
none_selected: Please select atleast one wizard
|
none_selected: Bitte wählen Sie mindestens einen gültigen Assistenten aus
|
||||||
no_file: Please choose a file to import
|
no_file: Bitte wähle eine zu importierende Datei aus
|
||||||
file_size_error: The file size must be 512kb or less
|
file_size_error: Die Dateigröße muss 512kb oder kleiner sein
|
||||||
file_format_error: The file must be a .json file
|
file_format_error: Die Datei muss eine .json Datei sein
|
||||||
server_error: "Error: {{message}}"
|
server_error: "Fehler: {{message}}"
|
||||||
importing: Importing wizards...
|
importing: Assistenten werden importiert...
|
||||||
destroying: Destroying wizards...
|
destroying: Zerstöre Assistenten...
|
||||||
import_complete: Import complete
|
import_complete: Import abgeschlossen
|
||||||
destroy_complete: Destruction complete
|
destroy_complete: Zerstörung abgeschlossen
|
||||||
editor:
|
editor:
|
||||||
show: "Show"
|
show: "Zeigen"
|
||||||
hide: "Hide"
|
hide: "Verstecken"
|
||||||
preview: "{{action}} Preview"
|
preview: "{{action}} Vorschau"
|
||||||
popover: "{{action}} Fields"
|
popover: "{{action}} Felder"
|
||||||
input:
|
input:
|
||||||
conditional:
|
conditional:
|
||||||
name: 'if'
|
name: 'wenn'
|
||||||
output: 'then'
|
output: 'dann'
|
||||||
assignment:
|
assignment:
|
||||||
name: 'set'
|
name: 'setzen'
|
||||||
association:
|
association:
|
||||||
name: 'map'
|
name: 'mappen'
|
||||||
validation:
|
validation:
|
||||||
name: 'ensure'
|
name: 'sicherstellen'
|
||||||
selector:
|
selector:
|
||||||
label:
|
label:
|
||||||
text: "text"
|
text: "Text"
|
||||||
wizard_field: "wizard field"
|
wizard_field: "Assistenten Feld"
|
||||||
wizard_action: "wizard action"
|
wizard_action: "Assistenten-Aktion"
|
||||||
user_field: "user field"
|
user_field: "Benutzerfeld"
|
||||||
user_field_options: "user field options"
|
user_field_options: "Benutzerfeld-Optionen"
|
||||||
user: "user"
|
user: "Benutzer"
|
||||||
category: "category"
|
category: "Kategorie"
|
||||||
tag: "tag"
|
tag: "Tag"
|
||||||
group: "group"
|
group: "Gruppe"
|
||||||
list: "list"
|
list: "Liste"
|
||||||
custom_field: "custom field"
|
custom_field: "benutzerdefiniertes Feld"
|
||||||
value: "value"
|
value: "Wert"
|
||||||
placeholder:
|
placeholder:
|
||||||
text: "Enter text"
|
text: "Text eingeben"
|
||||||
property: "Select property"
|
property: "Eigenschaft auswählen"
|
||||||
wizard_field: "Select field"
|
wizard_field: "Feld auswählen"
|
||||||
wizard_action: "Select action"
|
wizard_action: "Aktion auswählen"
|
||||||
user_field: "Select field"
|
user_field: "Feld auswählen"
|
||||||
user_field_options: "Select field"
|
user_field_options: "Feld auswählen"
|
||||||
user: "Select user"
|
user: "Benutzer auswählen"
|
||||||
category: "Select category"
|
category: "Kategorie auswählen"
|
||||||
tag: "Select tag"
|
tag: "Tag auswählen"
|
||||||
group: "Select group"
|
group: "Gruppe auswählen"
|
||||||
list: "Enter item"
|
list: "Element eingeben"
|
||||||
custom_field: "Select field"
|
custom_field: "Feld auswählen"
|
||||||
value: "Select value"
|
value: "Wert auswählen"
|
||||||
error:
|
error:
|
||||||
failed: "failed to save wizard"
|
failed: "konnte den Assistenten nicht speichern"
|
||||||
required: "{{type}} requires {{property}}"
|
required: "{{type}} benötigt {{property}}"
|
||||||
invalid: "{{property}} is invalid"
|
invalid: "{{property}} ist ungültig"
|
||||||
dependent: "{{property}} is dependent on {{dependent}}"
|
dependent: "{{property}} ist abhängig von {{dependent}}"
|
||||||
conflict: "{{type}} with {{property}} '{{value}}' already exists"
|
conflict: "{{type}} mit {{property}} '{{value}}' existiert bereits"
|
||||||
after_time: "After time invalid"
|
after_time: "Nach der Zeit ungültig"
|
||||||
step:
|
step:
|
||||||
header: "Steps"
|
header: "Schritte"
|
||||||
title: "Title"
|
title: "Titel"
|
||||||
banner: "Banner"
|
banner: "Banner"
|
||||||
description: "Description"
|
description: "Beschreibung"
|
||||||
required_data:
|
required_data:
|
||||||
label: "Required"
|
label: "Erforderlich"
|
||||||
not_permitted_message: "Message shown when required data not present"
|
not_permitted_message: "Nachricht wird angezeigt, wenn benötigte Daten nicht vorhanden sind"
|
||||||
permitted_params:
|
permitted_params:
|
||||||
label: "Params"
|
label: "Parameter"
|
||||||
force_final:
|
force_final:
|
||||||
label: "Conditional Final Step"
|
label: "Bedingter Schlussschritt"
|
||||||
description: "Display this step as the final step if conditions on later steps have not passed when the user reaches this step."
|
description: "Diesen Schritt als letzten Schritt anzeigen, wenn die Bedingungen für spätere Schritte nicht überschritten sind, wenn der Benutzer diesen Schritt erreicht."
|
||||||
field:
|
field:
|
||||||
header: "Fields"
|
header: "Felder"
|
||||||
label: "Label"
|
label: "Bezeichnung"
|
||||||
description: "Description"
|
description: "Beschreibung"
|
||||||
image: "Image"
|
image: "Bild"
|
||||||
image_placeholder: "Image url"
|
image_placeholder: "Bild-URL"
|
||||||
required: "Required"
|
required: "Erforderlich"
|
||||||
required_label: "Field is Required"
|
required_label: "Feld ist erforderlich"
|
||||||
min_length: "Min Length"
|
min_length: "Min. Länge"
|
||||||
min_length_placeholder: "Minimum length in characters"
|
min_length_placeholder: "Minimale Länge in Zeichen"
|
||||||
max_length: "Max Length"
|
max_length: "Max. Länge"
|
||||||
max_length_placeholder: "Maximum length in characters"
|
max_length_placeholder: "Maximale Länge in Zeichen"
|
||||||
char_counter: "Character Counter"
|
char_counter: "Zeichenzähler"
|
||||||
char_counter_placeholder: "Display Character Counter"
|
char_counter_placeholder: "Zeichenzähler anzeigen"
|
||||||
field_placeholder: "Field Placeholder"
|
field_placeholder: "Feld-Platzhalter"
|
||||||
file_types: "File Types"
|
file_types: "Dateitypen"
|
||||||
preview_template: "Template"
|
preview_template: "Vorlage"
|
||||||
limit: "Limit"
|
limit: "Limit"
|
||||||
property: "Property"
|
property: "Eigentum"
|
||||||
prefill: "Prefill"
|
prefill: "Vorausfüllen"
|
||||||
content: "Content"
|
content: "Inhalt"
|
||||||
|
tag_groups: "Tag-Gruppen"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
validations:
|
validations:
|
||||||
header: "Realtime Validations"
|
header: "Echtzeit-Überprüfungen"
|
||||||
enabled: "Enabled"
|
enabled: "Aktiviert"
|
||||||
similar_topics: "Similar Topics"
|
similar_topics: "Ähnliche Themen"
|
||||||
position: "Position"
|
position: "Position"
|
||||||
above: "Above"
|
above: "Oben"
|
||||||
below: "Below"
|
below: "Unten"
|
||||||
categories: "Categories"
|
categories: "Kategorien"
|
||||||
max_topic_age: "Max Topic Age"
|
max_topic_age: "Max. Themen-Alter"
|
||||||
time_units:
|
time_units:
|
||||||
days: "Days"
|
days: "Tage"
|
||||||
weeks: "Weeks"
|
weeks: "Wochen"
|
||||||
months: "Months"
|
months: "Monate"
|
||||||
years: "Years"
|
years: "Jahre"
|
||||||
type:
|
type:
|
||||||
text: "Text"
|
text: "Text"
|
||||||
textarea: Textarea
|
textarea: Textbereich
|
||||||
composer: Composer
|
composer: Editor
|
||||||
composer_preview: Composer Preview
|
composer_preview: Editor-Vorschau
|
||||||
text_only: Text Only
|
text_only: Nur Text
|
||||||
number: Number
|
number: Nummer
|
||||||
checkbox: Checkbox
|
checkbox: Checkbox
|
||||||
url: Url
|
url: Url
|
||||||
upload: Upload
|
upload: Hochladen
|
||||||
dropdown: Dropdown
|
dropdown: Dropdown
|
||||||
tag: Tag
|
tag: Tag
|
||||||
category: Category
|
category: Kategorie
|
||||||
group: Group
|
group: Gruppe
|
||||||
user_selector: User Selector
|
user_selector: Benutzer-Auswahl
|
||||||
date: Date
|
date: Datum
|
||||||
time: Time
|
time: Uhrzeit
|
||||||
date_time: Date & Time
|
date_time: Datum & Uhrzeit
|
||||||
connector:
|
connector:
|
||||||
and: "and"
|
and: "und"
|
||||||
or: "or"
|
or: "oder"
|
||||||
then: "then"
|
then: "dann"
|
||||||
set: "set"
|
set: "setzen"
|
||||||
equal: '='
|
equal: '='
|
||||||
greater: '>'
|
greater: '>'
|
||||||
less: '<'
|
less: '<'
|
||||||
|
@ -226,306 +293,235 @@ de:
|
||||||
less_or_equal: '<='
|
less_or_equal: '<='
|
||||||
regex: '=~'
|
regex: '=~'
|
||||||
association: '→'
|
association: '→'
|
||||||
is: 'is'
|
is: 'ist'
|
||||||
action:
|
action:
|
||||||
header: "Actions"
|
header: "Aktionen"
|
||||||
include: "Include Fields"
|
include: "Felder einschließen"
|
||||||
title: "Title"
|
title: "Titel"
|
||||||
post: "Post"
|
post: "Beitrag"
|
||||||
topic_attr: "Topic Attribute"
|
topic_attr: "Themen-Attribut"
|
||||||
interpolate_fields: "Insert wizard fields using the field_id in w{}. Insert user fields using field key in u{}."
|
interpolate_fields: "Füge Assistentenfelder mit der field_id in w{} ein. Füge Benutzerfelder mit dem Feldschlüssel in u{} ein."
|
||||||
run_after:
|
run_after:
|
||||||
label: "Run After"
|
label: "Starte nach"
|
||||||
wizard_completion: "Wizard Completion"
|
wizard_completion: "Assistenten-Fertigstellung"
|
||||||
custom_fields:
|
custom_fields:
|
||||||
label: "Custom"
|
label: "Benutzerdefiniert"
|
||||||
key: "field"
|
key: "Feld"
|
||||||
skip_redirect:
|
skip_redirect:
|
||||||
label: "Redirect"
|
label: "Weiterleitung"
|
||||||
description: "Don't redirect the user to this {{type}} after the wizard completes"
|
description: "Den Benutzer nach Abschluss des Assistenten nicht zu {{type}} weiterleiten"
|
||||||
suppress_notifications:
|
suppress_notifications:
|
||||||
label: "Suppress Notifications"
|
label: "Benachrichtigungen unterdrücken"
|
||||||
description: "Suppress normal notifications triggered by post creation"
|
description: "Normale Benachrichtigungen durch die Erstellung von Beiträgen unterdrücken"
|
||||||
send_message:
|
send_message:
|
||||||
label: "Send Message"
|
label: "Nachricht senden"
|
||||||
recipient: "Recipient"
|
recipient: "Empfänger"
|
||||||
create_topic:
|
create_topic:
|
||||||
label: "Create Topic"
|
label: "Thema erstellen"
|
||||||
category: "Category"
|
category: "Kategorie"
|
||||||
tags: "Tags"
|
tags: "Tags"
|
||||||
visible: "Visible"
|
visible: "Sichtbar"
|
||||||
open_composer:
|
open_composer:
|
||||||
label: "Open Composer"
|
label: "Editor öffnen"
|
||||||
update_profile:
|
update_profile:
|
||||||
label: "Update Profile"
|
label: "Profil aktualisieren"
|
||||||
setting: "Fields"
|
setting: "Felder"
|
||||||
key: "field"
|
key: "Feld"
|
||||||
watch_categories:
|
watch_categories:
|
||||||
label: "Watch Categories"
|
label: "Kategorien beobachten"
|
||||||
categories: "Categories"
|
categories: "Kategorien"
|
||||||
mute_remainder: "Mute Remainder"
|
mute_remainder: "Verbleibende Stummschalten"
|
||||||
notification_level:
|
notification_level:
|
||||||
label: "Notification Level"
|
label: "Benachrichtigungsebene"
|
||||||
regular: "Normal"
|
regular: "Normal"
|
||||||
watching: "Watching"
|
watching: "Beobachten"
|
||||||
tracking: "Tracking"
|
tracking: "Nachverfolgen"
|
||||||
watching_first_post: "Watching First Post"
|
watching_first_post: "Ersten Beitrag anschauen"
|
||||||
muted: "Muted"
|
muted: "Stumm"
|
||||||
select_a_notification_level: "Select level"
|
select_a_notification_level: "Ebene auswählen"
|
||||||
wizard_user: "Wizard User"
|
wizard_user: "Assistenten Benutzer"
|
||||||
usernames: "Users"
|
usernames: "Benutzer"
|
||||||
post_builder:
|
post_builder:
|
||||||
checkbox: "Post Builder"
|
checkbox: "Beitrags-Ersteller"
|
||||||
label: "Builder"
|
label: "Ersteller"
|
||||||
user_properties: "User Properties"
|
user_properties: "Benutzereinstellungen"
|
||||||
wizard_fields: "Wizard Fields"
|
wizard_fields: "Assistenten-Felder"
|
||||||
wizard_actions: "Wizard Actions"
|
wizard_actions: "Assistenten-Aktionen"
|
||||||
placeholder: "Insert wizard fields using the field_id in w{}. Insert user properties using property in u{}."
|
placeholder: "Füge Assistentenfelder mit der field_id in w{} ein. Füge Benutzereinstellungen mit der Eigenschaft in u{} ein."
|
||||||
add_to_group:
|
add_to_group:
|
||||||
label: "Add to Group"
|
label: "Zur Gruppe hinzufügen"
|
||||||
route_to:
|
route_to:
|
||||||
label: "Route To"
|
label: "Weiterleitung an"
|
||||||
url: "Url"
|
url: "Url"
|
||||||
code: "Code"
|
code: "Code"
|
||||||
send_to_api:
|
send_to_api:
|
||||||
label: "Send to API"
|
label: "An API senden"
|
||||||
api: "API"
|
api: "API"
|
||||||
endpoint: "Endpoint"
|
endpoint: "Endpunkt"
|
||||||
select_an_api: "Select an API"
|
select_an_api: "API auswählen"
|
||||||
select_an_endpoint: "Select an endpoint"
|
select_an_endpoint: "Endpunkt auswählen"
|
||||||
body: "Body"
|
body: "Body"
|
||||||
body_placeholder: "JSON"
|
body_placeholder: "JSON"
|
||||||
create_category:
|
create_category:
|
||||||
label: "Create Category"
|
label: "Kategorie erstellen"
|
||||||
name: Name
|
name: Name
|
||||||
slug: Slug
|
slug: Kürzel
|
||||||
color: Color
|
color: Farbe
|
||||||
text_color: Text color
|
text_color: Textfarbe
|
||||||
parent_category: Parent Category
|
parent_category: Übergeordnete Kategorie
|
||||||
permissions: Permissions
|
permissions: Berechtigungen
|
||||||
create_group:
|
create_group:
|
||||||
label: Create Group
|
label: Gruppe erstellen
|
||||||
name: Name
|
name: Name
|
||||||
full_name: Full Name
|
full_name: Vollständiger Name
|
||||||
title: Title
|
title: Titel
|
||||||
bio_raw: About
|
bio_raw: Über
|
||||||
owner_usernames: Owners
|
owner_usernames: Besitzer
|
||||||
usernames: Members
|
usernames: Mitglieder
|
||||||
grant_trust_level: Automatic Trust Level
|
grant_trust_level: Automatische Vertrauensstufe
|
||||||
mentionable_level: Mentionable Level
|
mentionable_level: Erwähnbare Ebene
|
||||||
messageable_level: Messageable Level
|
messageable_level: Nachrichtbare Ebene
|
||||||
visibility_level: Visibility Level
|
visibility_level: Sichtbarkeitsstufe
|
||||||
members_visibility_level: Members Visibility Level
|
members_visibility_level: Sichtbarkeitsstufe der Mitglieder
|
||||||
custom_field:
|
custom_field:
|
||||||
nav_label: "Custom Fields"
|
nav_label: "Benutzerdefinierte Felder"
|
||||||
add: "Add"
|
add: "Hinzufügen"
|
||||||
external:
|
external:
|
||||||
label: "from another plugin"
|
label: "von einem anderen Plugin"
|
||||||
title: "This custom field has been added by another plugin. You can use it in your wizards but you can't edit the field here."
|
title: "Dieses benutzerdefinierte Feld wurde von einem anderen Plugin hinzugefügt. Du kannt es in Deinem Assistenten verwenden, aber Du kannst es hier nicht bearbeiten."
|
||||||
name:
|
name:
|
||||||
label: "Name"
|
label: "Name"
|
||||||
select: "underscored_name"
|
select: "unterstrichener_Name"
|
||||||
type:
|
type:
|
||||||
label: "Type"
|
label: "Typ"
|
||||||
select: "Select a type"
|
select: "Wähle einen Typ"
|
||||||
string: "String"
|
string: "Zeichenkette"
|
||||||
integer: "Integer"
|
integer: "Ganze Zahl"
|
||||||
boolean: "Boolean"
|
boolean: "Boolean"
|
||||||
json: "JSON"
|
json: "JSON"
|
||||||
klass:
|
klass:
|
||||||
label: "Class"
|
label: "Klasse"
|
||||||
select: "Select a class"
|
select: "Klasse auswählen"
|
||||||
post: "Post"
|
post: "Beitrag"
|
||||||
category: "Category"
|
category: "Kategorie"
|
||||||
topic: "Topic"
|
topic: "Thema"
|
||||||
group: "Group"
|
group: "Gruppe"
|
||||||
user: "User"
|
user: "Benutzer"
|
||||||
serializers:
|
serializers:
|
||||||
label: "Serializers"
|
label: "Serialisierer"
|
||||||
select: "Select serializers"
|
select: "Wähle Serialisierer"
|
||||||
topic_view: "Topic View"
|
topic_view: "Themenansicht"
|
||||||
topic_list_item: "Topic List Item"
|
topic_list_item: "Themen-Listenelement"
|
||||||
basic_category: "Category"
|
basic_category: "Kategorie"
|
||||||
basic_group: "Group"
|
basic_group: "Gruppe"
|
||||||
post: "Post"
|
post: "Beitrag"
|
||||||
submissions:
|
submissions:
|
||||||
nav_label: "Submissions"
|
nav_label: "Einreichungen"
|
||||||
title: "{{name}} Submissions"
|
title: "{{name}} Einreichungen"
|
||||||
download: "Download"
|
download: "Herunterladen"
|
||||||
api:
|
api:
|
||||||
label: "API"
|
label: "API"
|
||||||
nav_label: 'APIs'
|
nav_label: 'APIs'
|
||||||
select: "Select API"
|
select: "API auswählen"
|
||||||
create: "Create API"
|
create: "API erstellen"
|
||||||
new: 'New API'
|
new: 'Neue API'
|
||||||
name: "Name (can't be changed)"
|
name: "Name (kann nicht geändert werden)"
|
||||||
name_placeholder: 'Underscored'
|
name_placeholder: 'Unterstrichen'
|
||||||
title: 'Title'
|
title: 'Titel'
|
||||||
title_placeholder: 'Display name'
|
title_placeholder: 'Anzeigename'
|
||||||
remove: 'Delete'
|
remove: 'Löschen'
|
||||||
save: "Save"
|
save: "Speichern"
|
||||||
auth:
|
auth:
|
||||||
label: "Authorization"
|
label: "Autorisierung"
|
||||||
btn: 'Authorize'
|
btn: 'Autorisieren'
|
||||||
settings: "Settings"
|
settings: "Einstellungen"
|
||||||
status: "Status"
|
status: "Status"
|
||||||
redirect_uri: "Redirect url"
|
redirect_uri: "Umleitungs-URL"
|
||||||
type: 'Type'
|
type: 'Typ'
|
||||||
type_none: 'Select a type'
|
type_none: 'Wähle einen Typ'
|
||||||
url: "Authorization url"
|
url: "Autorisierungs-URL"
|
||||||
token_url: "Token url"
|
token_url: "Token-URL"
|
||||||
client_id: 'Client id'
|
client_id: 'Client-ID'
|
||||||
client_secret: 'Client secret'
|
client_secret: 'Client-Geheimnis'
|
||||||
username: 'username'
|
username: 'Benutzername'
|
||||||
password: 'password'
|
password: 'Passwort'
|
||||||
params:
|
params:
|
||||||
label: 'Params'
|
label: 'Parameter'
|
||||||
new: 'New param'
|
new: 'Neue Parameter'
|
||||||
status:
|
status:
|
||||||
label: "Status"
|
label: "Status"
|
||||||
authorized: 'Authorized'
|
authorized: 'Authorisiert'
|
||||||
not_authorized: "Not authorized"
|
not_authorized: "Nicht authorisiert"
|
||||||
code: "Code"
|
code: "Code"
|
||||||
access_token: "Access token"
|
access_token: "Zugangs-Token"
|
||||||
refresh_token: "Refresh token"
|
refresh_token: "Token aktualisieren"
|
||||||
expires_at: "Expires at"
|
expires_at: "Ablauf am"
|
||||||
refresh_at: "Refresh at"
|
refresh_at: "Aktualisieren am"
|
||||||
endpoint:
|
endpoint:
|
||||||
label: "Endpoints"
|
label: "Endpunkte"
|
||||||
add: "Add endpoint"
|
add: "Endpunkt hinzufügen"
|
||||||
name: "Endpoint name"
|
name: "Endpunkt-Name"
|
||||||
method: "Select a method"
|
method: "Methode auswählen"
|
||||||
url: "Enter a url"
|
url: "Eine URL eingeben"
|
||||||
content_type: "Select a content type"
|
content_type: "Inhaltstyp auswählen"
|
||||||
success_codes: "Select success codes"
|
success_codes: "Erfolgscodes auswählen"
|
||||||
log:
|
log:
|
||||||
label: "Logs"
|
label: "Protokolle"
|
||||||
log:
|
log:
|
||||||
nav_label: "Logs"
|
nav_label: "Protokolle"
|
||||||
manager:
|
manager:
|
||||||
nav_label: Manager
|
nav_label: Manager
|
||||||
title: Manage Wizards
|
title: Assistenten verwalten
|
||||||
export: Export
|
export: Exportieren
|
||||||
import: Import
|
import: Importieren
|
||||||
imported: imported
|
imported: importiert
|
||||||
upload: Select wizards.json
|
upload: Wähle wizards.json aus
|
||||||
destroy: Destroy
|
destroy: Zerstören
|
||||||
destroyed: destroyed
|
destroyed: zerstört
|
||||||
wizard_js:
|
wizard_js:
|
||||||
group:
|
group:
|
||||||
select: "Select a group"
|
select: "Wähle eine Gruppe"
|
||||||
location:
|
location:
|
||||||
name:
|
name:
|
||||||
title: "Name (optional)"
|
title: "Name (optional)"
|
||||||
desc: "e.g. P. Sherman Dentist"
|
desc: "z.B. P. Sherman Zahnarzt"
|
||||||
street:
|
street:
|
||||||
title: "Number and Street"
|
title: "Nummer und Straße"
|
||||||
desc: "e.g. 42 Wallaby Way"
|
desc: "z.B. 42 Wallaby Way"
|
||||||
postalcode:
|
postalcode:
|
||||||
title: "Postal Code (Zip)"
|
title: "Postleitzahl"
|
||||||
desc: "e.g. 2090"
|
desc: "z.B. 2090"
|
||||||
neighbourhood:
|
neighbourhood:
|
||||||
title: "Neighbourhood"
|
title: "Nachbarschaft"
|
||||||
desc: "e.g. Cremorne Point"
|
desc: "z.B. Cremorne Point"
|
||||||
city:
|
city:
|
||||||
title: "City, Town or Village"
|
title: "Stadt oder Ortschaft"
|
||||||
desc: "e.g. Sydney"
|
desc: "z.B. Sydney"
|
||||||
coordinates: "Coordinates"
|
coordinates: "Koordinaten"
|
||||||
lat:
|
lat:
|
||||||
title: "Latitude"
|
title: "Breitengrad"
|
||||||
desc: "e.g. -31.9456702"
|
desc: "z.B. -31.9456702"
|
||||||
lon:
|
lon:
|
||||||
title: "Longitude"
|
title: "Längengrad"
|
||||||
desc: "e.g. 115.8626477"
|
desc: "z.B. 115.8626477"
|
||||||
country_code:
|
country_code:
|
||||||
title: "Country"
|
title: "Land"
|
||||||
placeholder: "Select a Country"
|
placeholder: "Wähle ein Land aus"
|
||||||
query:
|
query:
|
||||||
title: "Address"
|
title: "Adresse"
|
||||||
desc: "e.g. 42 Wallaby Way, Sydney."
|
desc: "z.B. 42 Wallaby Way, Sydney."
|
||||||
geo:
|
geo:
|
||||||
desc: "Locations provided by {{provider}}"
|
desc: "Standorte bereitgestellt von {{provider}}"
|
||||||
btn:
|
btn:
|
||||||
label: "Find Location"
|
label: "Standort finden"
|
||||||
results: "Locations"
|
results: "Standorte"
|
||||||
no_results: "No results. Please double check the spelling."
|
no_results: "Keine Ergebnisse. Bitte überprüfe die Rechtschreibung."
|
||||||
show_map: "Show Map"
|
show_map: "Karte anzeigen"
|
||||||
validation:
|
validation:
|
||||||
neighbourhood: "Please enter a neighbourhood."
|
neighbourhood: "Bitte gib eine Nachbarschaft ein."
|
||||||
city: "Please enter a city, town or village."
|
city: "Bitte gib eine Stadt,oder Ortschaft ein."
|
||||||
street: "Please enter a Number and Street."
|
street: "Bitte gib eine Hausnummer und Straße ein."
|
||||||
postalcode: "Please enter a Postal Code (Zip)."
|
postalcode: "Bitte gib eine Postleitzahl ein."
|
||||||
countrycode: "Please select a country."
|
countrycode: "Bitte wähle ein Land aus."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Bitte vervollständige das Koordinaten-Set."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Suche und wähle ein Ergebnis aus."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ el:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ el:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ el:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ eo:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ eo:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ eo:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ es:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ es:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ es:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ et:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ et:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ et:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ eu:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ eu:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ eu:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ fa:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ fa:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ fa:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ fi:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ fi:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ fi:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ fr:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Bienvenu·e sur %{site_name} ! Commençons avec <a href='%{wizard_url}' data-auto-route='true'>l'assistant %{wizard_name}</a> ✨"
|
complete_custom: "Bienvenu·e sur %{site_name} ! Commençons avec <a href='%{wizard_url}' data-auto-route='true'>l'assistant %{wizard_name}</a> ✨"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Retour vers {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continuer"
|
||||||
|
restart: "Recommencer"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Terminé"
|
||||||
|
back: "Précédent"
|
||||||
|
next: "Suivant"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Annuler"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -45,7 +111,7 @@ fr:
|
||||||
key: "Clé"
|
key: "Clé"
|
||||||
value: "Valeur"
|
value: "Valeur"
|
||||||
profile: "profile"
|
profile: "profile"
|
||||||
translation: "Translation"
|
translation: "Traduction"
|
||||||
translation_placeholder: "key"
|
translation_placeholder: "key"
|
||||||
type: "Type"
|
type: "Type"
|
||||||
none: "Faire une sélection"
|
none: "Faire une sélection"
|
||||||
|
@ -53,10 +119,10 @@ fr:
|
||||||
param_key: 'param'
|
param_key: 'param'
|
||||||
group: "Group"
|
group: "Group"
|
||||||
permitted: "Permitted"
|
permitted: "Permitted"
|
||||||
advanced: "Advanced"
|
advanced: "Avancés"
|
||||||
undo: "Undo"
|
undo: "Undo"
|
||||||
clear: "Clear"
|
clear: "Clear"
|
||||||
select_type: "Select a type"
|
select_type: "Sélectionnez un type"
|
||||||
condition: "Condition"
|
condition: "Condition"
|
||||||
index: "Index"
|
index: "Index"
|
||||||
category_settings:
|
category_settings:
|
||||||
|
@ -93,7 +159,7 @@ fr:
|
||||||
server_error: "Error: {{message}}"
|
server_error: "Error: {{message}}"
|
||||||
importing: Importing wizards...
|
importing: Importing wizards...
|
||||||
destroying: Destroying wizards...
|
destroying: Destroying wizards...
|
||||||
import_complete: Import complete
|
import_complete: Importation terminée
|
||||||
destroy_complete: Destruction complete
|
destroy_complete: Destruction complete
|
||||||
editor:
|
editor:
|
||||||
show: "Show"
|
show: "Show"
|
||||||
|
@ -123,7 +189,7 @@ fr:
|
||||||
group: "group"
|
group: "group"
|
||||||
list: "list"
|
list: "list"
|
||||||
custom_field: "custom field"
|
custom_field: "custom field"
|
||||||
value: "value"
|
value: "valeur"
|
||||||
placeholder:
|
placeholder:
|
||||||
text: "Enter text"
|
text: "Enter text"
|
||||||
property: "Select property"
|
property: "Select property"
|
||||||
|
@ -151,7 +217,7 @@ fr:
|
||||||
banner: "Bannière"
|
banner: "Bannière"
|
||||||
description: "Description"
|
description: "Description"
|
||||||
required_data:
|
required_data:
|
||||||
label: "Required"
|
label: "Requis"
|
||||||
not_permitted_message: "Message shown when required data not present"
|
not_permitted_message: "Message shown when required data not present"
|
||||||
permitted_params:
|
permitted_params:
|
||||||
label: "Params"
|
label: "Params"
|
||||||
|
@ -176,9 +242,10 @@ fr:
|
||||||
file_types: "File Types"
|
file_types: "File Types"
|
||||||
preview_template: "Template"
|
preview_template: "Template"
|
||||||
limit: "Limit"
|
limit: "Limit"
|
||||||
property: "Property"
|
property: "Propriété"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -192,9 +259,9 @@ fr:
|
||||||
categories: "Categories"
|
categories: "Categories"
|
||||||
max_topic_age: "Max Topic Age"
|
max_topic_age: "Max Topic Age"
|
||||||
time_units:
|
time_units:
|
||||||
days: "Days"
|
days: "Jours"
|
||||||
weeks: "Weeks"
|
weeks: "Semaines"
|
||||||
months: "Months"
|
months: "Mois"
|
||||||
years: "Years"
|
years: "Years"
|
||||||
type:
|
type:
|
||||||
text: "Text"
|
text: "Text"
|
||||||
|
@ -212,11 +279,11 @@ fr:
|
||||||
group: Group
|
group: Group
|
||||||
user_selector: User Selector
|
user_selector: User Selector
|
||||||
date: Date
|
date: Date
|
||||||
time: Time
|
time: Heure
|
||||||
date_time: Date & Time
|
date_time: Date & Heure
|
||||||
connector:
|
connector:
|
||||||
and: "and"
|
and: "et"
|
||||||
or: "or"
|
or: "ou"
|
||||||
then: "then"
|
then: "then"
|
||||||
set: "set"
|
set: "set"
|
||||||
equal: '='
|
equal: '='
|
||||||
|
@ -299,7 +366,7 @@ fr:
|
||||||
label: "Create Category"
|
label: "Create Category"
|
||||||
name: Name
|
name: Name
|
||||||
slug: Slug
|
slug: Slug
|
||||||
color: Color
|
color: Couleur
|
||||||
text_color: Text color
|
text_color: Text color
|
||||||
parent_category: Parent Category
|
parent_category: Parent Category
|
||||||
permissions: Permissions
|
permissions: Permissions
|
||||||
|
@ -307,10 +374,10 @@ fr:
|
||||||
label: Create Group
|
label: Create Group
|
||||||
name: Name
|
name: Name
|
||||||
full_name: Full Name
|
full_name: Full Name
|
||||||
title: Title
|
title: Titre
|
||||||
bio_raw: About
|
bio_raw: About
|
||||||
owner_usernames: Owners
|
owner_usernames: Owners
|
||||||
usernames: Members
|
usernames: Membres
|
||||||
grant_trust_level: Automatic Trust Level
|
grant_trust_level: Automatic Trust Level
|
||||||
mentionable_level: Mentionable Level
|
mentionable_level: Mentionable Level
|
||||||
messageable_level: Messageable Level
|
messageable_level: Messageable Level
|
||||||
|
@ -351,7 +418,7 @@ fr:
|
||||||
submissions:
|
submissions:
|
||||||
nav_label: "Submissions"
|
nav_label: "Submissions"
|
||||||
title: "{{name}} Submissions"
|
title: "{{name}} Submissions"
|
||||||
download: "Download"
|
download: "Télécharger"
|
||||||
api:
|
api:
|
||||||
label: "API"
|
label: "API"
|
||||||
nav_label: 'APIs'
|
nav_label: 'APIs'
|
||||||
|
@ -405,8 +472,8 @@ fr:
|
||||||
manager:
|
manager:
|
||||||
nav_label: Manager
|
nav_label: Manager
|
||||||
title: Manage Wizards
|
title: Manage Wizards
|
||||||
export: Export
|
export: Exporter
|
||||||
import: Import
|
import: Importer
|
||||||
imported: imported
|
imported: imported
|
||||||
upload: Select wizards.json
|
upload: Select wizards.json
|
||||||
destroy: Destroy
|
destroy: Destroy
|
||||||
|
@ -454,78 +521,7 @@ fr:
|
||||||
neighbourhood: "Merci de saisir un quartier."
|
neighbourhood: "Merci de saisir un quartier."
|
||||||
city: "Merci de saisir le nom d'une commune."
|
city: "Merci de saisir le nom d'une commune."
|
||||||
street: "Please enter a Number and Street."
|
street: "Please enter a Number and Street."
|
||||||
postalcode: "Please enter a Postal Code (Zip)."
|
postalcode: "Veuillez saisir un code postal (Zip)."
|
||||||
countrycode: "Merci de choisir un pays."
|
countrycode: "Merci de choisir un pays."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Chercher et sélectionner un résultat."
|
geo_location: "Chercher et sélectionner un résultat."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Chercher...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "Vous en avez terminé avec cet assistant."
|
|
||||||
not_permitted: "Vous devez obtenir un niveau de confiance à {{level}} ou plus pour accéder à cet assistant."
|
|
||||||
none: "Il n'y a pas d'assistant ici."
|
|
||||||
return_to_site: "Retourner à {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Prévisualiser le message"
|
|
||||||
hide_preview: "Modifier le message"
|
|
||||||
quote_post_title: "Citer l'ensemble du message"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Gras"
|
|
||||||
bold_text: "texte gras"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Italique"
|
|
||||||
italic_text: "texte en italique"
|
|
||||||
link_title: "Hyperlien"
|
|
||||||
link_description: "saisir la description du lien ici"
|
|
||||||
link_dialog_title: "Insérer un hyperlien"
|
|
||||||
link_optional_text: "titre optionnel"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Citation"
|
|
||||||
quote_text: "blockquote"
|
|
||||||
blockquote_text: "insérer un bloc de citation"
|
|
||||||
code_title: "Texte préformaté"
|
|
||||||
code_text: "indenter le texte préformaté de 4 espaces"
|
|
||||||
paste_code_text: "taper ou coller du code ici"
|
|
||||||
upload_title: "Joindre un fichier"
|
|
||||||
upload_description: "saisir la description du téléchargement ici"
|
|
||||||
olist_title: "Liste numérotée"
|
|
||||||
ulist_title: "Liste de points"
|
|
||||||
list_item: "Élément de la liste"
|
|
||||||
toggle_direction: "Changer de direction"
|
|
||||||
help: "Aide à l'édition en Markdown"
|
|
||||||
collapse: "réduire le panneau d'édition"
|
|
||||||
abandon: "fermer l'éditeur et abandonner le brouillon"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Annuler"
|
|
||||||
cant_send_pm: "Pardon, vous ne pouvez envoyer de message à %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Avez-vous oublié d'ajouter des destinataires ?"
|
|
||||||
body: "Pour l'instant ce message n'est envoyé qu'à vous !"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ gl:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ gl:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ gl:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ he:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
two: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ he:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ he:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
two: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
two: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
two: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ hi:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ hi:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ hi:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,73 @@ hr:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +246,7 @@ hr:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,77 +526,3 @@ hr:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ hu:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ hu:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ hu:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ hy:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ hy:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ hy:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ id:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ id:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ id:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ is:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ is:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ is:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ it:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ it:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ it:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ ja:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "キャンセル"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -47,7 +112,7 @@ ja:
|
||||||
profile: "profile"
|
profile: "profile"
|
||||||
translation: "Translation"
|
translation: "Translation"
|
||||||
translation_placeholder: "key"
|
translation_placeholder: "key"
|
||||||
type: "Type"
|
type: "タイプ"
|
||||||
none: "Make a selection"
|
none: "Make a selection"
|
||||||
submission_key: 'submission key'
|
submission_key: 'submission key'
|
||||||
param_key: 'param'
|
param_key: 'param'
|
||||||
|
@ -179,6 +244,7 @@ ja:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ ja:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ ka:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ ka:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ ka:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ kk:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ kk:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ kk:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ km:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ km:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ km:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ kn:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ kn:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ kn:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ ko:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ ko:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ ko:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ ku:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ ku:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ ku:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ lo:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ lo:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ lo:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ lt:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ lt:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ lt:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,73 @@ lv:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
zero: "%{count} Characters"
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +246,7 @@ lv:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,77 +526,3 @@ lv:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
zero: "You can only select {{count}} items."
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
zero: "Select at least {{count}} items."
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
zero: "%{count} Characters"
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ mk:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ mk:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ mk:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ ml:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ ml:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ ml:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ mn:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ mn:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ mn:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ ms:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ ms:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ ms:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ ne:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ ne:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ ne:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ nl:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ nl:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ nl:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ om:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ om:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ om:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ pa:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ pa:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ pa:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ pl:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ pl:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ pl:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ pt:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ pt:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ pt:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,73 @@ ro:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +246,7 @@ ro:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,77 +526,3 @@ ro:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ ru:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ ru:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ ru:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ sd:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ sd:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ sd:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ sk:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ sk:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ sk:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ sl:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
two: "%{count} Characters"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ sl:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ sl:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
two: "You can only select {{count}} items."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
two: "Select at least {{count}} items."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
two: "%{count} Characters"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ sq:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ sq:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ sq:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,73 @@ sr-Cyrl:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +246,7 @@ sr-Cyrl:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,77 +526,3 @@ sr-Cyrl:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ sv:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ sv:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ sv:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ sw:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ sw:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ sw:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ ta:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ ta:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ ta:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ te:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ te:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ te:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ th:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ th:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ th:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ tl:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ tl:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ tl:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ tr:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ tr:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ tr:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ tt:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ tt:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ tt:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,74 @@ uk:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
few: "%{count} Characters"
|
||||||
|
many: "%{count} Characters"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +247,7 @@ uk:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,80 +527,3 @@ uk:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
few: "You can only select {{count}} items."
|
|
||||||
many: "You can only select {{count}} items."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
few: "Select at least {{count}} items."
|
|
||||||
many: "Select at least {{count}} items."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
few: "%{count} Characters"
|
|
||||||
many: "%{count} Characters"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ ur:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ ur:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ ur:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ vi:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ vi:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ vi:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ yi:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ yi:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ yi:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,71 @@ zh-TW:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +244,7 @@ zh-TW:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,71 +524,3 @@ zh-TW:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,6 +2,72 @@ zu:
|
||||||
js:
|
js:
|
||||||
wizard:
|
wizard:
|
||||||
complete_custom: "Complete the {{name}}"
|
complete_custom: "Complete the {{name}}"
|
||||||
|
completed: "You have completed this wizard."
|
||||||
|
not_permitted: "You are not permitted to access this wizard."
|
||||||
|
none: "There is no wizard here."
|
||||||
|
return_to_site: "Return to {{siteName}}"
|
||||||
|
requires_login: "You need to be logged in to access this wizard."
|
||||||
|
reset: "Reset this wizard."
|
||||||
|
step_not_permitted: "You're not permitted to view this step."
|
||||||
|
incomplete_submission:
|
||||||
|
title: "Continue editing your draft submission from %{date}?"
|
||||||
|
resume: "Continue"
|
||||||
|
restart: "Start over"
|
||||||
|
x_characters:
|
||||||
|
one: "%{count} Character"
|
||||||
|
other: "%{count} Characters"
|
||||||
|
quit: "Maybe Later"
|
||||||
|
done_custom: "Done"
|
||||||
|
back: "Back"
|
||||||
|
next: "Next"
|
||||||
|
step: "%{current} of %{total}"
|
||||||
|
upload: "Upload"
|
||||||
|
uploading: "Uploading..."
|
||||||
|
upload_error: "Sorry, there was an error uploading that file. Please try again."
|
||||||
|
wizard_composer:
|
||||||
|
show_preview: "Preview Post"
|
||||||
|
hide_preview: "Edit Post"
|
||||||
|
quote_post_title: "Quote whole post"
|
||||||
|
bold_label: "B"
|
||||||
|
bold_title: "Strong"
|
||||||
|
bold_text: "strong text"
|
||||||
|
italic_label: "I"
|
||||||
|
italic_title: "Emphasis"
|
||||||
|
italic_text: "emphasized text"
|
||||||
|
link_title: "Hyperlink"
|
||||||
|
link_description: "enter link description here"
|
||||||
|
link_dialog_title: "Insert Hyperlink"
|
||||||
|
link_optional_text: "optional title"
|
||||||
|
link_url_placeholder: "http://example.com"
|
||||||
|
quote_title: "Blockquote"
|
||||||
|
quote_text: "Blockquote"
|
||||||
|
blockquote_text: "Blockquote"
|
||||||
|
code_title: "Preformatted text"
|
||||||
|
code_text: "indent preformatted text by 4 spaces"
|
||||||
|
paste_code_text: "type or paste code here"
|
||||||
|
upload_title: "Upload"
|
||||||
|
upload_description: "enter upload description here"
|
||||||
|
olist_title: "Numbered List"
|
||||||
|
ulist_title: "Bulleted List"
|
||||||
|
list_item: "List item"
|
||||||
|
toggle_direction: "Toggle Direction"
|
||||||
|
help: "Markdown Editing Help"
|
||||||
|
collapse: "minimize the composer panel"
|
||||||
|
abandon: "close composer and discard draft"
|
||||||
|
modal_ok: "OK"
|
||||||
|
modal_cancel: "Cancel"
|
||||||
|
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
||||||
|
yourself_confirm:
|
||||||
|
title: "Did you forget to add recipients?"
|
||||||
|
body: "Right now this message is only being sent to yourself!"
|
||||||
|
realtime_validations:
|
||||||
|
similar_topics:
|
||||||
|
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
||||||
|
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
||||||
|
results: "Your topic is similar to..."
|
||||||
|
no_results: "No similar topics."
|
||||||
|
loading: "Looking for similar topics..."
|
||||||
|
show: "show"
|
||||||
admin_js:
|
admin_js:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
|
@ -179,6 +245,7 @@ zu:
|
||||||
property: "Property"
|
property: "Property"
|
||||||
prefill: "Prefill"
|
prefill: "Prefill"
|
||||||
content: "Content"
|
content: "Content"
|
||||||
|
tag_groups: "Tag Groups"
|
||||||
date_time_format:
|
date_time_format:
|
||||||
label: "Format"
|
label: "Format"
|
||||||
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
instructions: "<a href='https://momentjs.com/docs/#/displaying/format/' target='_blank'>Moment.js format</a>"
|
||||||
|
@ -458,74 +525,3 @@ zu:
|
||||||
countrycode: "Please select a country."
|
countrycode: "Please select a country."
|
||||||
coordinates: "Please complete the set of coordinates."
|
coordinates: "Please complete the set of coordinates."
|
||||||
geo_location: "Search and select a result."
|
geo_location: "Search and select a result."
|
||||||
select_kit:
|
|
||||||
default_header_text: Select...
|
|
||||||
no_content: No matches found
|
|
||||||
filter_placeholder: Search...
|
|
||||||
filter_placeholder_with_any: Search or create...
|
|
||||||
create: "Create: '{{content}}'"
|
|
||||||
max_content_reached:
|
|
||||||
one: "You can only select {{count}} item."
|
|
||||||
other: "You can only select {{count}} items."
|
|
||||||
min_content_not_reached:
|
|
||||||
one: "Select at least {{count}} item."
|
|
||||||
other: "Select at least {{count}} items."
|
|
||||||
wizard:
|
|
||||||
completed: "You have completed this wizard."
|
|
||||||
not_permitted: "You are not permitted to access this wizard."
|
|
||||||
none: "There is no wizard here."
|
|
||||||
return_to_site: "Return to {{siteName}}"
|
|
||||||
requires_login: "You need to be logged in to access this wizard."
|
|
||||||
reset: "Reset this wizard."
|
|
||||||
step_not_permitted: "You're not permitted to view this step."
|
|
||||||
incomplete_submission:
|
|
||||||
title: "Continue editing your draft submission from %{date}?"
|
|
||||||
resume: "Continue"
|
|
||||||
restart: "Start over"
|
|
||||||
x_characters:
|
|
||||||
one: "%{count} Character"
|
|
||||||
other: "%{count} Characters"
|
|
||||||
wizard_composer:
|
|
||||||
show_preview: "Preview"
|
|
||||||
hide_preview: "Edit"
|
|
||||||
quote_post_title: "Quote whole post"
|
|
||||||
bold_label: "B"
|
|
||||||
bold_title: "Strong"
|
|
||||||
bold_text: "strong text"
|
|
||||||
italic_label: "I"
|
|
||||||
italic_title: "Emphasis"
|
|
||||||
italic_text: "emphasized text"
|
|
||||||
link_title: "Hyperlink"
|
|
||||||
link_description: "enter link description here"
|
|
||||||
link_dialog_title: "Insert Hyperlink"
|
|
||||||
link_optional_text: "optional title"
|
|
||||||
link_url_placeholder: "http://example.com"
|
|
||||||
quote_title: "Blockquote"
|
|
||||||
quote_text: "Blockquote"
|
|
||||||
blockquote_text: "Blockquote"
|
|
||||||
code_title: "Preformatted text"
|
|
||||||
code_text: "indent preformatted text by 4 spaces"
|
|
||||||
paste_code_text: "type or paste code here"
|
|
||||||
upload_title: "Upload"
|
|
||||||
upload_description: "enter upload description here"
|
|
||||||
olist_title: "Numbered List"
|
|
||||||
ulist_title: "Bulleted List"
|
|
||||||
list_item: "List item"
|
|
||||||
toggle_direction: "Toggle Direction"
|
|
||||||
help: "Markdown Editing Help"
|
|
||||||
collapse: "minimize the composer panel"
|
|
||||||
abandon: "close composer and discard draft"
|
|
||||||
modal_ok: "OK"
|
|
||||||
modal_cancel: "Cancel"
|
|
||||||
cant_send_pm: "Sorry, you can't send a message to %{username}."
|
|
||||||
yourself_confirm:
|
|
||||||
title: "Did you forget to add recipients?"
|
|
||||||
body: "Right now this message is only being sent to yourself!"
|
|
||||||
realtime_validations:
|
|
||||||
similar_topics:
|
|
||||||
insufficient_characters: "Type a minimum 5 characters to start looking for similar topics"
|
|
||||||
insufficient_characters_categories: "Type a minimum 5 characters to start looking for similar topics in %{catLinks}"
|
|
||||||
results: "Your topic is similar to..."
|
|
||||||
no_results: "No similar topics."
|
|
||||||
loading: "Looking for similar topics..."
|
|
||||||
show: "show"
|
|
||||||
|
|
|
@ -2,51 +2,51 @@ de:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
submission:
|
submission:
|
||||||
no_user: "deleted (user_id: %{user_id})"
|
no_user: "gelöscht (user_id: %{user_id})"
|
||||||
wizard:
|
wizard:
|
||||||
custom_title: "Wizard"
|
custom_title: "Assistent"
|
||||||
custom_field:
|
custom_field:
|
||||||
error:
|
error:
|
||||||
required_attribute: "'%{attr}' is a required attribute"
|
required_attribute: "'%{attr}' ist ein Pflicht-Attribut"
|
||||||
unsupported_class: "'%{class}' is not a supported class"
|
unsupported_class: "'%{class}' ist keine unterstützte Klasse"
|
||||||
unsupported_serializers: "'%{serializers}' are not supported serializers for '%{class}'"
|
unsupported_serializers: "'%{serializers}' sind keine unterstützten Serialisierer für '%{class} '"
|
||||||
unsupported_type: "%{type} is not a supported custom field type"
|
unsupported_type: "%{type} ist kein unterstützter benutzerdefinierter Feldtyp"
|
||||||
name_invalid: "'%{name}' is not a valid custom field name"
|
name_invalid: "'%{name}' ist kein gültiger benutzerdefinierter Feldname"
|
||||||
name_too_short: "'%{name}' is too short for a custom field name (min length is #{min_length})"
|
name_too_short: "'%{name}' ist zu kurz für einen benutzerdefinierten Feldnamen (min. Länge ist #{min_length})"
|
||||||
name_already_taken: "'%{name}' is already taken as a custom field name"
|
name_already_taken: "'%{name}' wird bereits als benutzerdefinierter Feldname benutzt"
|
||||||
save_default: "Failed to save custom field '%{name}'"
|
save_default: "Fehler beim Speichern des benutzerdefinierten Feldes '%{name}'"
|
||||||
field:
|
field:
|
||||||
too_short: "%{label} must be at least %{min} characters"
|
too_short: "%{label} muss mindestens %{min} Zeichen lang sein"
|
||||||
too_long: "%{label} must not be more than %{max} characters"
|
too_long: "%{label} darf nicht mehr als %{max} Zeichen lang sein"
|
||||||
required: "%{label} is required."
|
required: "%{label} ist erforderlich."
|
||||||
not_url: "%{label} must be a valid url"
|
not_url: "%{label} muss eine gültige URL sein"
|
||||||
invalid_file: "%{label} must be a %{types}"
|
invalid_file: "%{label} muss ein %{types} sein"
|
||||||
invalid_date: "Invalid date"
|
invalid_date: "Ungültiges Datum"
|
||||||
invalid_time: "Invalid time"
|
invalid_time: "Ungültige Uhrzeit"
|
||||||
none: "We couldn't find a wizard at that address."
|
none: "Wir konnten keinen Assistenten an dieser Adresse finden."
|
||||||
no_skip: "Wizard can't be skipped"
|
no_skip: "Assistent kann nicht übersprungen werden"
|
||||||
export:
|
export:
|
||||||
error:
|
error:
|
||||||
select_one: "Please select at least one valid wizard"
|
select_one: "Bitte wählen Sie mindestens einen gültigen Assistenten aus"
|
||||||
invalid_wizards: "No valid wizards selected"
|
invalid_wizards: "Keine gültigen Wizards ausgewählt"
|
||||||
import:
|
import:
|
||||||
error:
|
error:
|
||||||
no_file: "No file selected"
|
no_file: "Keine Datei ausgewählt"
|
||||||
file_large: "File too large"
|
file_large: "Datei ist zu groß"
|
||||||
invalid_json: "File is not a valid json file"
|
invalid_json: "Datei ist keine gültige json Datei"
|
||||||
destroy:
|
destroy:
|
||||||
error:
|
error:
|
||||||
no_template: No template found
|
no_template: Kein Template gefunden
|
||||||
default: Error destroying wizard
|
default: Fehler beim Löschen des Wizards
|
||||||
validation:
|
validation:
|
||||||
required: "%{property} is required"
|
required: "%{property} ist erforderlich"
|
||||||
conflict: "Wizard with id '%{wizard_id}' already exists"
|
conflict: "Wizard mit id '%{wizard_id}' existiert bereits"
|
||||||
after_signup: "You can only have one 'after signup' wizard at a time. %{wizard_id} has 'after signup' enabled."
|
after_signup: "Du kannst nur einen \"Nach der Anmeldung\" Assistenten gleichzeitig haben. %{wizard_id} hat \"nach der Anmeldung\" aktiviert."
|
||||||
after_signup_after_time: "You can't use 'after time' and 'after signup' on the same wizard."
|
after_signup_after_time: "Du kannst nicht 'nach Zeit und 'nach Anmeldung' bei dem gleichen Assistenten verwenden."
|
||||||
after_time: "After time setting is invalid."
|
after_time: "Nach Zeit Einstellung ist ungültig."
|
||||||
liquid_syntax_error: "Liquid syntax error in %{attribute}: %{message}"
|
liquid_syntax_error: "Liquid-Syntax-Fehler in %{attribute}: %{message}"
|
||||||
site_settings:
|
site_settings:
|
||||||
custom_wizard_enabled: "Enable custom wizards."
|
custom_wizard_enabled: "Benutzerdefinierte Assistenten aktivieren."
|
||||||
wizard_redirect_exclude_paths: "Routes excluded from wizard redirects."
|
wizard_redirect_exclude_paths: "Routen, die von Assistenten-Weiterleitungen ausgeschlossen sind."
|
||||||
wizard_recognised_image_upload_formats: "File types which will result in upload displaying an image preview"
|
wizard_recognised_image_upload_formats: "Dateitypen, die dazu führen, dass der Upload eine Vorschau anzeigen wird"
|
||||||
wizard_apis_enabled: "Enable API features (experimental)."
|
wizard_apis_enabled: "API-Funktionen aktivieren (experimentell)."
|
||||||
|
|
|
@ -2,51 +2,51 @@ pt:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
submission:
|
submission:
|
||||||
no_user: "deleted (user_id: %{user_id})"
|
no_user: "excluído (user_id: %{user_id})"
|
||||||
wizard:
|
wizard:
|
||||||
custom_title: "Wizard"
|
custom_title: "Assistente"
|
||||||
custom_field:
|
custom_field:
|
||||||
error:
|
error:
|
||||||
required_attribute: "'%{attr}' is a required attribute"
|
required_attribute: "'%{attr}' é um atributo obrigatório"
|
||||||
unsupported_class: "'%{class}' is not a supported class"
|
unsupported_class: "'%{class}' não é uma classe suportada"
|
||||||
unsupported_serializers: "'%{serializers}' are not supported serializers for '%{class}'"
|
unsupported_serializers: "'%{serializers}' não é suportado serializadores para '%{class}'"
|
||||||
unsupported_type: "%{type} is not a supported custom field type"
|
unsupported_type: "%{type} não é um tipo de campo personalizado suportado"
|
||||||
name_invalid: "'%{name}' is not a valid custom field name"
|
name_invalid: "'%{name}' não é um nome de campo personalizado válido"
|
||||||
name_too_short: "'%{name}' is too short for a custom field name (min length is #{min_length})"
|
name_too_short: "'%{name}' é muito curto para um nome de campo personalizado (comprimento mínimo é #{min_length})"
|
||||||
name_already_taken: "'%{name}' is already taken as a custom field name"
|
name_already_taken: "'%{name}' já está tomado como um nome de campo personalizado"
|
||||||
save_default: "Failed to save custom field '%{name}'"
|
save_default: "Falha ao salvar o campo personalizado '%{name}'"
|
||||||
field:
|
field:
|
||||||
too_short: "%{label} must be at least %{min} characters"
|
too_short: "%{label} deve ter pelo menos %{min} caracteres"
|
||||||
too_long: "%{label} must not be more than %{max} characters"
|
too_long: "%{label} deve ter pelo menos %{max} caracteres"
|
||||||
required: "%{label} is required."
|
required: "%{label} é obrigatório."
|
||||||
not_url: "%{label} must be a valid url"
|
not_url: "%{label} deve ser uma url válida"
|
||||||
invalid_file: "%{label} must be a %{types}"
|
invalid_file: "%{label} deve ser um %{types}"
|
||||||
invalid_date: "Invalid date"
|
invalid_date: "Data inválida"
|
||||||
invalid_time: "Invalid time"
|
invalid_time: "Tempo inválido"
|
||||||
none: "We couldn't find a wizard at that address."
|
none: "Nós não conseguimos encontrar um assistente nesse endereço."
|
||||||
no_skip: "Wizard can't be skipped"
|
no_skip: "Assistente não pode ser ignorado"
|
||||||
export:
|
export:
|
||||||
error:
|
error:
|
||||||
select_one: "Please select at least one valid wizard"
|
select_one: "Por favor, selecione pelo menos um assistente válido"
|
||||||
invalid_wizards: "No valid wizards selected"
|
invalid_wizards: "Nenhum assistente válido selecionado"
|
||||||
import:
|
import:
|
||||||
error:
|
error:
|
||||||
no_file: "No file selected"
|
no_file: "Nenhum arquivo selecionado"
|
||||||
file_large: "File too large"
|
file_large: "Arquivo muito grande"
|
||||||
invalid_json: "File is not a valid json file"
|
invalid_json: "O arquivo não é um arquivo json válido"
|
||||||
destroy:
|
destroy:
|
||||||
error:
|
error:
|
||||||
no_template: No template found
|
no_template: Nenhum modelo encontrado
|
||||||
default: Error destroying wizard
|
default: Erro ao destruir assistente
|
||||||
validation:
|
validation:
|
||||||
required: "%{property} is required"
|
required: "%{property} é obrigatório"
|
||||||
conflict: "Wizard with id '%{wizard_id}' already exists"
|
conflict: "Assistente com id '%{wizard_id}' já existe"
|
||||||
after_signup: "You can only have one 'after signup' wizard at a time. %{wizard_id} has 'after signup' enabled."
|
after_signup: "Você só pode ter um assistente 'após a inscrição' por vez. %{wizard_id} tem 'após a inscrição' habilitado."
|
||||||
after_signup_after_time: "You can't use 'after time' and 'after signup' on the same wizard."
|
after_signup_after_time: "Você não pode usar 'após tempo' e 'após a inscrição' no mesmo assistente."
|
||||||
after_time: "After time setting is invalid."
|
after_time: "Após a configuração do tempo é inválido."
|
||||||
liquid_syntax_error: "Liquid syntax error in %{attribute}: %{message}"
|
liquid_syntax_error: "Erro de sintaxe Liquid em %{attribute}: %{message}"
|
||||||
site_settings:
|
site_settings:
|
||||||
custom_wizard_enabled: "Enable custom wizards."
|
custom_wizard_enabled: "Ativar assistentes personalizados."
|
||||||
wizard_redirect_exclude_paths: "Routes excluded from wizard redirects."
|
wizard_redirect_exclude_paths: "Rotas excluídas dos redirecionamentos do assistente."
|
||||||
wizard_recognised_image_upload_formats: "File types which will result in upload displaying an image preview"
|
wizard_recognised_image_upload_formats: "Tipos de arquivo que resultarão no upload exibindo uma visualização da imagem"
|
||||||
wizard_apis_enabled: "Enable API features (experimental)."
|
wizard_apis_enabled: "Habilitar recursos API (experimental)."
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
zh-TW:
|
zh-CN:
|
||||||
admin:
|
admin:
|
||||||
wizard:
|
wizard:
|
||||||
submission:
|
submission:
|
||||||
|
@ -14,7 +14,7 @@ zh-TW:
|
||||||
name_invalid: "'%{name}' is not a valid custom field name"
|
name_invalid: "'%{name}' is not a valid custom field name"
|
||||||
name_too_short: "'%{name}' is too short for a custom field name (min length is #{min_length})"
|
name_too_short: "'%{name}' is too short for a custom field name (min length is #{min_length})"
|
||||||
name_already_taken: "'%{name}' is already taken as a custom field name"
|
name_already_taken: "'%{name}' is already taken as a custom field name"
|
||||||
save_default: "Failed to save custom field '%{name}'"
|
save_default: "保存自定义字段“%{name}”失败"
|
||||||
field:
|
field:
|
||||||
too_short: "%{label} must be at least %{min} characters"
|
too_short: "%{label} must be at least %{min} characters"
|
||||||
too_long: "%{label} must not be more than %{max} characters"
|
too_long: "%{label} must not be more than %{max} characters"
|
||||||
|
@ -27,26 +27,26 @@ zh-TW:
|
||||||
no_skip: "Wizard can't be skipped"
|
no_skip: "Wizard can't be skipped"
|
||||||
export:
|
export:
|
||||||
error:
|
error:
|
||||||
select_one: "Please select at least one valid wizard"
|
select_one: "请选择至少一个有效向导"
|
||||||
invalid_wizards: "No valid wizards selected"
|
invalid_wizards: "No valid wizards selected"
|
||||||
import:
|
import:
|
||||||
error:
|
error:
|
||||||
no_file: "No file selected"
|
no_file: "未选中任何文件"
|
||||||
file_large: "File too large"
|
file_large: "文件过大"
|
||||||
invalid_json: "File is not a valid json file"
|
invalid_json: "文件不是一个有效的 json 文件"
|
||||||
destroy:
|
destroy:
|
||||||
error:
|
error:
|
||||||
no_template: No template found
|
no_template: 没有找到模板
|
||||||
default: Error destroying wizard
|
default: 销毁向导时出错
|
||||||
validation:
|
validation:
|
||||||
required: "%{property} is required"
|
required: "%{property} is required"
|
||||||
conflict: "Wizard with id '%{wizard_id}' already exists"
|
conflict: "Id 为 %{wizard_id} 的向导已存在"
|
||||||
after_signup: "You can only have one 'after signup' wizard at a time. %{wizard_id} has 'after signup' enabled."
|
after_signup: "您只能有一个“注册即导向”型的向导。Id为 %{wizard_id} 的向导已启用该特性。"
|
||||||
after_signup_after_time: "You can't use 'after time' and 'after signup' on the same wizard."
|
after_signup_after_time: "You can't use 'after time' and 'after signup' on the same wizard."
|
||||||
after_time: "After time setting is invalid."
|
after_time: "After time setting is invalid."
|
||||||
liquid_syntax_error: "Liquid syntax error in %{attribute}: %{message}"
|
liquid_syntax_error: "Liquid syntax error in %{attribute}: %{message}"
|
||||||
site_settings:
|
site_settings:
|
||||||
custom_wizard_enabled: "Enable custom wizards."
|
custom_wizard_enabled: "启用自定义向导。"
|
||||||
wizard_redirect_exclude_paths: "Routes excluded from wizard redirects."
|
wizard_redirect_exclude_paths: "Routes excluded from wizard redirects."
|
||||||
wizard_recognised_image_upload_formats: "File types which will result in upload displaying an image preview"
|
wizard_recognised_image_upload_formats: "File types which will result in upload displaying an image preview"
|
||||||
wizard_apis_enabled: "Enable API features (experimental)."
|
wizard_apis_enabled: "Enable API features (experimental)."
|
||||||
|
|
|
@ -481,8 +481,8 @@ class CustomWizard::Action
|
||||||
|
|
||||||
registered = registered_fields.select { |f| f.name == name }.first
|
registered = registered_fields.select { |f| f.name == name }.first
|
||||||
if registered.present?
|
if registered.present?
|
||||||
klass = registered.klass
|
klass = registered.klass.to_sym
|
||||||
type = registered.type
|
type = registered.type.to_sym
|
||||||
end
|
end
|
||||||
|
|
||||||
next if type === :json && json_attr.blank?
|
next if type === :json && json_attr.blank?
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
# name: discourse-custom-wizard
|
# name: discourse-custom-wizard
|
||||||
# about: Create custom wizards for topic creation, onboarding, user surveys and much more.
|
# about: Forms for Discourse. Better onboarding, structured posting, data enrichment, automated actions and much more.
|
||||||
# version: 2.0.0-beta.1
|
# version: 2.0.0-beta.1
|
||||||
# authors: Angus McLeod, Faizaan Gagan, Robert Barrow, Keegan George
|
# authors: Angus McLeod, Faizaan Gagan, Robert Barrow, Keegan George
|
||||||
# contact_emails: support@thepavilion.io
|
|
||||||
# url: https://github.com/paviliondev/discourse-custom-wizard
|
# url: https://github.com/paviliondev/discourse-custom-wizard
|
||||||
|
# contact_emails: development@pavilion.tech
|
||||||
# subscription_url: https://coop.pavilion.tech
|
# subscription_url: https://coop.pavilion.tech
|
||||||
|
|
||||||
gem 'liquid', '5.0.1', require: true
|
gem 'liquid', '5.0.1', require: true
|
||||||
|
|
|
@ -22,6 +22,20 @@ describe CustomWizard::Action do
|
||||||
@template = CustomWizard::Template.find('super_mega_fun_wizard')
|
@template = CustomWizard::Template.find('super_mega_fun_wizard')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
let(:create_topic) {
|
||||||
|
JSON.parse(
|
||||||
|
File.open(
|
||||||
|
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/actions/create_topic.json"
|
||||||
|
).read
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
let(:custom_field_json) {
|
||||||
|
JSON.parse(File.open(
|
||||||
|
"#{Rails.root}/plugins/discourse-custom-wizard/spec/fixtures/custom_field/custom_fields.json"
|
||||||
|
).read)
|
||||||
|
}
|
||||||
|
|
||||||
before do
|
before do
|
||||||
Group.refresh_automatic_group!(:trust_level_2)
|
Group.refresh_automatic_group!(:trust_level_2)
|
||||||
update_template(wizard_template)
|
update_template(wizard_template)
|
||||||
|
@ -107,6 +121,40 @@ describe CustomWizard::Action do
|
||||||
expect(topic_json_custom_field.exists?).to eq(true)
|
expect(topic_json_custom_field.exists?).to eq(true)
|
||||||
expect(post_custom_field.exists?).to eq(true)
|
expect(post_custom_field.exists?).to eq(true)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "adds registered custom fields" do
|
||||||
|
custom_field = custom_field_json['custom_fields'][0]
|
||||||
|
custom_field_name = custom_field["name"]
|
||||||
|
custom_field_value = "Custom value"
|
||||||
|
|
||||||
|
CustomWizard::CustomField.new(nil, custom_field).save
|
||||||
|
create_topic["custom_fields"] = [
|
||||||
|
{
|
||||||
|
"type": "association",
|
||||||
|
"pairs": [
|
||||||
|
{
|
||||||
|
"index": 0,
|
||||||
|
"key": custom_field_name,
|
||||||
|
"key_type": "custom_field",
|
||||||
|
"value": custom_field_value,
|
||||||
|
"value_type": "text",
|
||||||
|
"connector": "association"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
wizard = CustomWizard::Wizard.new(@template, user)
|
||||||
|
action = CustomWizard::Action.new(
|
||||||
|
wizard: wizard,
|
||||||
|
action: create_topic.with_indifferent_access,
|
||||||
|
submission: wizard.current_submission
|
||||||
|
)
|
||||||
|
action.perform
|
||||||
|
|
||||||
|
expect(action.result.success?).to eq(true)
|
||||||
|
expect(TopicCustomField.exists?(name: custom_field_name, value: custom_field_value)).to eq(true)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'updates a profile' do
|
it 'updates a profile' do
|
||||||
|
|
14
spec/fixtures/actions/create_topic.json
gevendort
Normale Datei
14
spec/fixtures/actions/create_topic.json
gevendort
Normale Datei
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"id": "create_topic_1",
|
||||||
|
"type": "create_topic",
|
||||||
|
"post_builder": true,
|
||||||
|
"post_template": "First post in the topic!",
|
||||||
|
"title": [
|
||||||
|
{
|
||||||
|
"type": "assignment",
|
||||||
|
"output_type": "text",
|
||||||
|
"output_connector": "set",
|
||||||
|
"output": "My new topic"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Laden …
In neuem Issue referenzieren