Merge branch 'main' into chat-thread-panel-sketch
This commit is contained in:
commit
78dffe2c08
7
Gemfile
7
Gemfile
@ -229,10 +229,9 @@ gem "logstash-event", require: false
|
||||
gem "logstash-logger", require: false
|
||||
gem "logster"
|
||||
|
||||
# NOTE: later versions of sassc are causing a segfault, possibly dependent on processer architecture
|
||||
# and until resolved should be locked at 2.0.1
|
||||
gem "sassc", "2.0.1", require: false
|
||||
gem "sassc-rails"
|
||||
# These are forks of sassc and sassc-rails with dart-sass support
|
||||
gem "dartsass-ruby"
|
||||
gem "dartsass-sprockets"
|
||||
|
||||
gem "rotp", require: false
|
||||
|
||||
|
||||
33
Gemfile.lock
33
Gemfile.lock
@ -121,6 +121,14 @@ GEM
|
||||
crass (1.0.6)
|
||||
css_parser (1.14.0)
|
||||
addressable
|
||||
dartsass-ruby (3.0.1)
|
||||
sass-embedded (~> 1.54)
|
||||
dartsass-sprockets (3.0.0)
|
||||
dartsass-ruby (~> 3.0)
|
||||
railties (>= 4.0.0)
|
||||
sprockets (> 3.0)
|
||||
sprockets-rails
|
||||
tilt
|
||||
date (3.3.3)
|
||||
debug_inspector (1.1.0)
|
||||
diff-lcs (1.5.0)
|
||||
@ -159,6 +167,7 @@ GEM
|
||||
gc_tracer (1.5.1)
|
||||
globalid (1.1.0)
|
||||
activesupport (>= 5.0)
|
||||
google-protobuf (3.21.12)
|
||||
guess_html_encoding (0.0.11)
|
||||
hana (1.3.7)
|
||||
hashdiff (1.0.1)
|
||||
@ -429,15 +438,17 @@ GEM
|
||||
sanitize (6.0.1)
|
||||
crass (~> 1.0.2)
|
||||
nokogiri (>= 1.12.0)
|
||||
sassc (2.0.1)
|
||||
ffi (~> 1.9)
|
||||
rake
|
||||
sassc-rails (2.1.2)
|
||||
railties (>= 4.0.0)
|
||||
sassc (>= 2.0)
|
||||
sprockets (> 3.0)
|
||||
sprockets-rails
|
||||
tilt
|
||||
sass-embedded (1.58.0)
|
||||
google-protobuf (~> 3.21)
|
||||
rake (>= 10.0.0)
|
||||
sass-embedded (1.58.0-aarch64-linux-gnu)
|
||||
google-protobuf (~> 3.21)
|
||||
sass-embedded (1.58.0-arm64-darwin)
|
||||
google-protobuf (~> 3.21)
|
||||
sass-embedded (1.58.0-x86_64-darwin)
|
||||
google-protobuf (~> 3.21)
|
||||
sass-embedded (1.58.0-x86_64-linux-gnu)
|
||||
google-protobuf (~> 3.21)
|
||||
selenium-webdriver (4.8.0)
|
||||
rexml (~> 3.2, >= 3.2.5)
|
||||
rubyzip (>= 1.2.2, < 3.0)
|
||||
@ -540,6 +551,8 @@ DEPENDENCIES
|
||||
cose
|
||||
cppjieba_rb
|
||||
css_parser
|
||||
dartsass-ruby
|
||||
dartsass-sprockets
|
||||
diffy
|
||||
digest
|
||||
discourse-fonts
|
||||
@ -627,8 +640,6 @@ DEPENDENCIES
|
||||
ruby-readability
|
||||
rubyzip
|
||||
sanitize
|
||||
sassc (= 2.0.1)
|
||||
sassc-rails
|
||||
selenium-webdriver
|
||||
shoulda-matchers
|
||||
sidekiq
|
||||
|
||||
@ -67,7 +67,12 @@ const Theme = RestModel.extend({
|
||||
}
|
||||
|
||||
return {
|
||||
common: [...common, "embedded_scss", "color_definitions"],
|
||||
common: [
|
||||
...common,
|
||||
"color_definitions",
|
||||
"embedded_scss",
|
||||
"embedded_header",
|
||||
],
|
||||
desktop: common,
|
||||
mobile: common,
|
||||
settings: ["yaml"],
|
||||
|
||||
@ -5,6 +5,7 @@ import Ember from "ember";
|
||||
|
||||
export default class DiscourseTooltip extends Component {
|
||||
tagName = "";
|
||||
interactive = false;
|
||||
|
||||
didInsertElement() {
|
||||
this._super(...arguments);
|
||||
@ -24,7 +25,9 @@ export default class DiscourseTooltip extends Component {
|
||||
const viewBounds = Ember.ViewUtils.getViewBounds(this);
|
||||
const element = viewBounds.firstNode;
|
||||
const parent = viewBounds.parentElement;
|
||||
const interactive = this.interactive;
|
||||
this._tippyInstance = tippy(parent, {
|
||||
interactive,
|
||||
content: element,
|
||||
trigger: this.capabilities.touch ? "click" : "mouseenter",
|
||||
theme: "d-tooltip",
|
||||
|
||||
@ -78,19 +78,20 @@ export default class HorizontalOverflowNav extends Component {
|
||||
const mouseDragScroll = function (e) {
|
||||
let mouseChange = e.clientX - position.x;
|
||||
navPills.scrollLeft = position.left - mouseChange;
|
||||
|
||||
navPills.querySelectorAll("a").forEach((a) => {
|
||||
a.style.cursor = "grabbing";
|
||||
});
|
||||
};
|
||||
|
||||
navPills.querySelectorAll("a").forEach((a) => {
|
||||
a.style.cursor = "grabbing";
|
||||
});
|
||||
|
||||
const removeDragScroll = function () {
|
||||
document.removeEventListener("mousemove", mouseDragScroll);
|
||||
navPills.querySelectorAll("a").forEach((a) => {
|
||||
a.style.cursor = "pointer";
|
||||
});
|
||||
};
|
||||
|
||||
document.addEventListener("mousemove", mouseDragScroll, { once: true });
|
||||
document.addEventListener("mousemove", mouseDragScroll);
|
||||
document.addEventListener("mouseup", removeDragScroll, { once: true });
|
||||
}
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@ export default Component.extend({
|
||||
enable_array_copy: true,
|
||||
disable_edit_json: true,
|
||||
disable_properties: true,
|
||||
disable_collapse: true,
|
||||
disable_collapse: false,
|
||||
remove_button_labels: true,
|
||||
show_errors: "never",
|
||||
startval: this.model.value ? JSON.parse(this.model.value) : null,
|
||||
@ -77,6 +77,8 @@ class DiscourseJsonSchemaEditorIconlib {
|
||||
moveup: "arrow-up",
|
||||
movedown: "arrow-down",
|
||||
copy: "copy",
|
||||
collapse: "chevron-down",
|
||||
expand: "chevron-up",
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@ -2,9 +2,37 @@ import I18n from "I18n";
|
||||
import TextField from "discourse/components/text-field";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
|
||||
const ALLOWED_KEYS = [
|
||||
"Enter",
|
||||
"Backspace",
|
||||
"Tab",
|
||||
"Delete",
|
||||
"ArrowLeft",
|
||||
"ArrowUp",
|
||||
"ArrowRight",
|
||||
"ArrowDown",
|
||||
"0",
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
];
|
||||
|
||||
export default TextField.extend({
|
||||
classNameBindings: ["invalid"],
|
||||
|
||||
keyDown: function (e) {
|
||||
return (
|
||||
ALLOWED_KEYS.includes(e.key) ||
|
||||
(e.key === "-" && parseInt(this.get("min"), 10) < 0)
|
||||
);
|
||||
},
|
||||
|
||||
@discourseComputed("number")
|
||||
value: {
|
||||
get(number) {
|
||||
|
||||
@ -3,6 +3,13 @@
|
||||
<div class="sidebar-footer-actions">
|
||||
<PluginOutlet @name="sidebar-footer-actions" />
|
||||
|
||||
<DButton
|
||||
@icon="plus"
|
||||
@action={{action this.addSection}}
|
||||
@class="btn-flat add-section"
|
||||
@title="sidebar.sections.custom.add"
|
||||
/>
|
||||
|
||||
{{#if
|
||||
(or
|
||||
this.site.mobileView
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
import Component from "@glimmer/component";
|
||||
import { getOwner } from "discourse-common/lib/get-owner";
|
||||
import { inject as service } from "@ember/service";
|
||||
import { action } from "@ember/object";
|
||||
import showModal from "discourse/lib/show-modal";
|
||||
|
||||
export default class SidebarFooter extends Component {
|
||||
@service site;
|
||||
@ -9,4 +11,9 @@ export default class SidebarFooter extends Component {
|
||||
get capabilities() {
|
||||
return getOwner(this).lookup("capabilities:main");
|
||||
}
|
||||
|
||||
@action
|
||||
addSection() {
|
||||
showModal("sidebar-section-form");
|
||||
}
|
||||
}
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
<a
|
||||
href={{@href}}
|
||||
rel="noopener noreferrer"
|
||||
target={{or @target "_blank"}}
|
||||
target="_blank"
|
||||
class={{this.classNames}}
|
||||
title={{@title}}
|
||||
>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<div class="sidebar-custom-sections">
|
||||
{{#each this.currentUser.sidebarSections as |section|}}
|
||||
{{#each this.sections as |section|}}
|
||||
<Sidebar::Section
|
||||
@sectionName={{section.slug}}
|
||||
@headerLinkText={{section.title}}
|
||||
@ -15,19 +15,14 @@
|
||||
{{#each section.links as |link|}}
|
||||
<Sidebar::SectionLink
|
||||
@linkName={{link.name}}
|
||||
@href={{link.value}}
|
||||
@target="_self"
|
||||
@content={{link.name}}
|
||||
@class={{link.class}}
|
||||
@route={{link.route}}
|
||||
@models={{link.models}}
|
||||
@query={{link.query}}
|
||||
@content={{replace-emoji link.name}}
|
||||
@prefixType="icon"
|
||||
@prefixValue={{link.icon}}
|
||||
/>
|
||||
{{/each}}
|
||||
</Sidebar::Section>
|
||||
{{/each}}
|
||||
|
||||
<DButton
|
||||
@icon="plus"
|
||||
@action={{action this.addSection}}
|
||||
@class="btn-flat add-section"
|
||||
@title="sidebar.sections.custom.add"
|
||||
/>
|
||||
</div>
|
||||
@ -2,30 +2,26 @@ import Component from "@glimmer/component";
|
||||
import { action } from "@ember/object";
|
||||
import showModal from "discourse/lib/show-modal";
|
||||
import { inject as service } from "@ember/service";
|
||||
import RouteInfoHelper from "discourse/lib/sidebar/route-info-helper";
|
||||
|
||||
export default class SidebarUserCustomSections extends Component {
|
||||
@service currentUser;
|
||||
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
|
||||
this.sections.forEach((section) => {
|
||||
section.links.forEach((link) => {
|
||||
link.class = window.location.pathname === link.value ? "active" : "";
|
||||
});
|
||||
});
|
||||
}
|
||||
@service router;
|
||||
|
||||
get sections() {
|
||||
return this.currentUser.sidebar_sections || [];
|
||||
this.currentUser.sidebarSections.forEach((section) => {
|
||||
section.links.forEach((link) => {
|
||||
const routeInfoHelper = new RouteInfoHelper(this.router, link.value);
|
||||
link.route = routeInfoHelper.route;
|
||||
link.models = routeInfoHelper.models;
|
||||
link.query = routeInfoHelper.query;
|
||||
});
|
||||
});
|
||||
return this.currentUser.sidebarSections;
|
||||
}
|
||||
|
||||
@action
|
||||
editSection(section) {
|
||||
showModal("sidebar-section-form", { model: section });
|
||||
}
|
||||
|
||||
addSection() {
|
||||
showModal("sidebar-section-form");
|
||||
}
|
||||
}
|
||||
|
||||
@ -31,6 +31,10 @@ import { isTesting } from "discourse-common/config/environment";
|
||||
import { inject as service } from "@ember/service";
|
||||
import { shortDate } from "discourse/lib/formatter";
|
||||
import showModal from "discourse/lib/show-modal";
|
||||
import { categoryBadgeHTML } from "discourse/helpers/category-link";
|
||||
import renderTags from "discourse/lib/render-tags";
|
||||
import { htmlSafe } from "@ember/template";
|
||||
import { iconHTML } from "discourse-common/lib/icon-library";
|
||||
|
||||
async function loadDraft(store, opts = {}) {
|
||||
let { draft, draftKey, draftSequence } = opts;
|
||||
@ -929,12 +933,45 @@ export default Controller.extend({
|
||||
// --> pop the window up
|
||||
if (!force && composer.replyingToTopic) {
|
||||
const currentTopic = this.topicModel;
|
||||
const originalTopic = this.model.topic;
|
||||
|
||||
if (!currentTopic) {
|
||||
this.save(true);
|
||||
return;
|
||||
}
|
||||
|
||||
const topicLabelContent = function (topicOption) {
|
||||
const topicClosed = topicOption.closed
|
||||
? `<span class="topic-status">${iconHTML("lock")}</span>`
|
||||
: "";
|
||||
const topicPinned = topicOption.pinned
|
||||
? `<span class="topic-status">${iconHTML("thumbtack")}</span>`
|
||||
: "";
|
||||
const topicBookmarked = topicOption.bookmarked
|
||||
? `<span class="topic-status">${iconHTML("bookmark")}</span>`
|
||||
: "";
|
||||
const topicPM =
|
||||
topicOption.archetype === "private_message"
|
||||
? `<span class="topic-status">${iconHTML("envelope")}</span>`
|
||||
: "";
|
||||
|
||||
return `<div class='topic-title'>
|
||||
<div class="topic-title__top-line">
|
||||
<span class='topic-statuses'>
|
||||
${topicPM}${topicBookmarked}${topicClosed}${topicPinned}
|
||||
</span>
|
||||
<span class='fancy-title'>
|
||||
${topicOption.fancyTitle}
|
||||
</span>
|
||||
</div>
|
||||
<div class="topic-title__bottom-line">
|
||||
${categoryBadgeHTML(topicOption.category, {
|
||||
link: false,
|
||||
})}${htmlSafe(renderTags(topicOption))}
|
||||
</div>
|
||||
</div>`;
|
||||
};
|
||||
|
||||
if (
|
||||
currentTopic.id !== composer.get("topic.id") &&
|
||||
(this.isStaffUser || !currentTopic.closed)
|
||||
@ -943,21 +980,13 @@ export default Controller.extend({
|
||||
title: I18n.t("composer.posting_not_on_topic"),
|
||||
buttons: [
|
||||
{
|
||||
label:
|
||||
I18n.t("composer.reply_original") +
|
||||
"<br/><div class='topic-title overflow-ellipsis'>" +
|
||||
this.get("model.topic.fancyTitle") +
|
||||
"</div>",
|
||||
class: "btn-primary btn-reply-on-original",
|
||||
label: topicLabelContent(originalTopic),
|
||||
class: "btn-primary btn-reply-where btn-reply-on-original",
|
||||
action: () => this.save(true),
|
||||
},
|
||||
{
|
||||
label:
|
||||
I18n.t("composer.reply_here") +
|
||||
"<br/><div class='topic-title overflow-ellipsis'>" +
|
||||
currentTopic.get("fancyTitle") +
|
||||
"</div>",
|
||||
class: "btn-reply-here",
|
||||
label: topicLabelContent(currentTopic),
|
||||
class: "btn-reply-where btn-reply-here",
|
||||
action: () => {
|
||||
composer.setProperties({ topic: currentTopic, post: null });
|
||||
this.save(true);
|
||||
@ -965,7 +994,7 @@ export default Controller.extend({
|
||||
},
|
||||
{
|
||||
label: I18n.t("composer.cancel"),
|
||||
class: "btn-flat btn-text btn-reply-where-cancel",
|
||||
class: "btn-flat btn-text btn-reply-where__cancel",
|
||||
},
|
||||
],
|
||||
class: "reply-where-modal",
|
||||
|
||||
@ -26,7 +26,7 @@ class Section {
|
||||
}
|
||||
|
||||
get validTitle() {
|
||||
return !isEmpty(this.title);
|
||||
return !isEmpty(this.title) && this.title.length <= 30;
|
||||
}
|
||||
|
||||
get titleCssClass() {
|
||||
@ -35,12 +35,14 @@ class Section {
|
||||
}
|
||||
|
||||
class SectionLink {
|
||||
@tracked icon;
|
||||
@tracked name;
|
||||
@tracked value;
|
||||
@tracked _destroy;
|
||||
|
||||
constructor({ router, name, value, id }) {
|
||||
constructor({ router, icon, name, value, id }) {
|
||||
this.router = router;
|
||||
this.icon = icon || "link";
|
||||
this.name = name;
|
||||
this.value = value ? `${this.protocolAndHost}${value}` : value;
|
||||
this.id = id;
|
||||
@ -55,11 +57,19 @@ class SectionLink {
|
||||
}
|
||||
|
||||
get valid() {
|
||||
return this.validName && this.validValue;
|
||||
return this.validIcon && this.validName && this.validValue;
|
||||
}
|
||||
|
||||
get validIcon() {
|
||||
return !isEmpty(this.icon) && this.icon.length <= 40;
|
||||
}
|
||||
|
||||
get iconCssClass() {
|
||||
return this.icon === undefined || this.validIcon ? "" : "warning";
|
||||
}
|
||||
|
||||
get validName() {
|
||||
return !isEmpty(this.name);
|
||||
return !isEmpty(this.name) && this.name.length <= 80;
|
||||
}
|
||||
|
||||
get nameCssClass() {
|
||||
@ -71,6 +81,7 @@ class SectionLink {
|
||||
!isEmpty(this.value) &&
|
||||
(this.value.startsWith(this.protocolAndHost) ||
|
||||
this.value.startsWith("/")) &&
|
||||
this.value.length <= 200 &&
|
||||
this.path &&
|
||||
this.router.recognize(this.path).name !== "unknown"
|
||||
);
|
||||
@ -106,6 +117,7 @@ export default Controller.extend(ModalFunctionality, {
|
||||
(link) =>
|
||||
new SectionLink({
|
||||
router: this.router,
|
||||
icon: link.icon,
|
||||
name: link.name,
|
||||
value: link.value,
|
||||
id: link.id,
|
||||
@ -130,6 +142,7 @@ export default Controller.extend(ModalFunctionality, {
|
||||
title: this.model.title,
|
||||
links: this.model.links.map((link) => {
|
||||
return {
|
||||
icon: link.icon,
|
||||
name: link.name,
|
||||
value: link.path,
|
||||
};
|
||||
@ -158,6 +171,7 @@ export default Controller.extend(ModalFunctionality, {
|
||||
links: this.model.links.map((link) => {
|
||||
return {
|
||||
id: link.id,
|
||||
icon: link.icon,
|
||||
name: link.name,
|
||||
value: link.path,
|
||||
_destroy: link._destroy,
|
||||
|
||||
@ -1,45 +1,9 @@
|
||||
import BaseCommunitySectionLink from "discourse/lib/sidebar/base-community-section-link";
|
||||
import RouteInfoHelper from "discourse/lib/sidebar/route-info-helper";
|
||||
|
||||
export let customSectionLinks = [];
|
||||
export let secondaryCustomSectionLinks = [];
|
||||
|
||||
class RouteInfoHelper {
|
||||
constructor(router, url) {
|
||||
this.routeInfo = router.recognize(url);
|
||||
}
|
||||
|
||||
get route() {
|
||||
return this.routeInfo.name;
|
||||
}
|
||||
|
||||
get models() {
|
||||
return this.#getParameters;
|
||||
}
|
||||
|
||||
get query() {
|
||||
return this.routeInfo.queryParams;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extracted from https://github.com/emberjs/rfcs/issues/658
|
||||
* Retrieves all parameters for a `RouteInfo` object and its parents in
|
||||
* correct oder, so that you can pass them to e.g.
|
||||
* `transitionTo(routeName, ...params)`.
|
||||
*/
|
||||
get #getParameters() {
|
||||
let allParameters = [];
|
||||
let current = this.routeInfo;
|
||||
|
||||
do {
|
||||
const { params, paramNames } = current;
|
||||
const currentParameters = paramNames.map((n) => params[n]);
|
||||
allParameters = [...currentParameters, ...allParameters];
|
||||
} while ((current = current.parent));
|
||||
|
||||
return allParameters;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Appends an additional section link to the Community section under the "More..." links drawer.
|
||||
*
|
||||
|
||||
@ -0,0 +1,36 @@
|
||||
export default class RouteInfoHelper {
|
||||
constructor(router, url) {
|
||||
this.routeInfo = router.recognize(url);
|
||||
}
|
||||
|
||||
get route() {
|
||||
return this.routeInfo.name;
|
||||
}
|
||||
|
||||
get models() {
|
||||
return this.#getParameters;
|
||||
}
|
||||
|
||||
get query() {
|
||||
return this.routeInfo.queryParams;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extracted from https://github.com/emberjs/rfcs/issues/658
|
||||
* Retrieves all parameters for a `RouteInfo` object and its parents in
|
||||
* correct oder, so that you can pass them to e.g.
|
||||
* `transitionTo(routeName, ...params)`.
|
||||
*/
|
||||
get #getParameters() {
|
||||
let allParameters = [];
|
||||
let current = this.routeInfo;
|
||||
|
||||
do {
|
||||
const { params, paramNames } = current;
|
||||
const currentParameters = paramNames.map((n) => params[n]);
|
||||
allParameters = [...currentParameters, ...allParameters];
|
||||
} while ((current = current.parent));
|
||||
|
||||
return allParameters;
|
||||
}
|
||||
}
|
||||
@ -81,6 +81,7 @@ export default Mixin.create({
|
||||
post,
|
||||
});
|
||||
|
||||
document.querySelector(".card-cloak")?.classList.remove("hidden");
|
||||
this.appEvents.trigger("user-card:show", { username });
|
||||
this._showCallback(username, $(target)).then((user) => {
|
||||
this.appEvents.trigger("user-card:after-show", { user });
|
||||
@ -217,7 +218,6 @@ export default Mixin.create({
|
||||
],
|
||||
});
|
||||
} else {
|
||||
document.querySelector(".card-cloak")?.classList.remove("hidden");
|
||||
this._popperReference = createPopper(target[0], this.element, {
|
||||
modifiers: [
|
||||
{ name: "eventListeners", enabled: false },
|
||||
|
||||
@ -4,11 +4,12 @@
|
||||
<label for="category-position">
|
||||
{{i18n "category.position"}}
|
||||
</label>
|
||||
<TextField
|
||||
@value={{this.category.position}}
|
||||
<NumberField
|
||||
@number={{this.category.position}}
|
||||
@id="category-position"
|
||||
@class="position-input"
|
||||
@type="number"
|
||||
@min="0"
|
||||
/>
|
||||
</section>
|
||||
{{/if}}
|
||||
@ -34,10 +35,11 @@
|
||||
{{i18n "category.num_featured_topics"}}
|
||||
{{/if}}
|
||||
</label>
|
||||
<TextField
|
||||
@value={{this.category.num_featured_topics}}
|
||||
<NumberField
|
||||
@number={{this.category.num_featured_topics}}
|
||||
@id="category-number-featured-topics"
|
||||
@type="number"
|
||||
@min="1"
|
||||
/>
|
||||
</section>
|
||||
|
||||
@ -185,10 +187,11 @@
|
||||
<label for="category-number-daily-bump">
|
||||
{{i18n "category.num_auto_bump_daily"}}
|
||||
</label>
|
||||
<TextField
|
||||
@value={{this.category.custom_fields.num_auto_bump_daily}}
|
||||
<NumberField
|
||||
@number={{this.category.custom_fields.num_auto_bump_daily}}
|
||||
@id="category-number-daily-bump"
|
||||
@type="number"
|
||||
@min="0"
|
||||
/>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@ -38,13 +38,13 @@
|
||||
{{raw "list/post-count-or-badges" topic=topic postBadgesEnabled=showTopicPostBadges}}
|
||||
</div>
|
||||
<div class="topic-item-stats clearfix">
|
||||
{{#unless hideCategory}}
|
||||
{{~raw-plugin-outlet name="topic-list-before-category"}}
|
||||
<div class='category'>
|
||||
{{category-link topic.category}}
|
||||
</div>
|
||||
{{/unless}}
|
||||
{{discourse-tags topic mode="list"}}
|
||||
<span class="topic-item-stats__category-tags">
|
||||
{{#unless hideCategory}}
|
||||
{{~raw-plugin-outlet name="topic-list-before-category"}}
|
||||
{{category-link topic.category~}}
|
||||
{{~/unless}}
|
||||
{{~discourse-tags topic mode="list"}}
|
||||
</span>
|
||||
<div class='num activity last'>
|
||||
<span class="age activity" title="{{topic.bumpedAtTitle}}"><a
|
||||
href="{{topic.lastPostUrl}}">{{format-date topic.bumpedAt format="tiny" noTitle="true"}}</a>
|
||||
|
||||
@ -21,6 +21,7 @@
|
||||
<NumberField
|
||||
@number={{readonly cat.position}}
|
||||
@change={{action "change" cat}}
|
||||
@min="0"
|
||||
/>
|
||||
<DButton
|
||||
@class="btn-default no-text"
|
||||
|
||||
@ -17,6 +17,18 @@
|
||||
</div>
|
||||
{{#each this.activeLinks as |link|}}
|
||||
<div class="row-wrapper">
|
||||
<div class="input-group">
|
||||
<label for="link-name">{{i18n
|
||||
"sidebar.sections.custom.links.icon"
|
||||
}}</label>
|
||||
<IconPicker
|
||||
@name="icon"
|
||||
@value={{link.icon}}
|
||||
@options={{hash maximum=1}}
|
||||
class={{link.iconCssClass}}
|
||||
@onChange={{action (mut link.icon)}}
|
||||
/>
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label for="link-name">{{i18n
|
||||
"sidebar.sections.custom.links.name"
|
||||
@ -31,7 +43,7 @@
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<label for="link-url">{{i18n
|
||||
"sidebar.sections.custom.links.points_to"
|
||||
"sidebar.sections.custom.links.value"
|
||||
}}</label>
|
||||
<Input
|
||||
name="link-url"
|
||||
@ -42,7 +54,7 @@
|
||||
/>
|
||||
</div>
|
||||
<DButton
|
||||
@icon="times"
|
||||
@icon="trash-alt"
|
||||
@action={{action "deleteLink" link}}
|
||||
@class="btn-flat delete-link"
|
||||
@title="sidebar.sections.custom.links.delete"
|
||||
@ -53,6 +65,7 @@
|
||||
@action={{action "addLink"}}
|
||||
@class="btn-flat btn-text add-link"
|
||||
@title="sidebar.sections.custom.links.add"
|
||||
@icon="plus"
|
||||
@label="sidebar.sections.custom.links.add"
|
||||
/>
|
||||
</form>
|
||||
@ -63,7 +76,6 @@
|
||||
@id="save-section"
|
||||
@action={{action "save"}}
|
||||
@class="btn-primary"
|
||||
@icon="plus"
|
||||
@label="sidebar.sections.custom.save"
|
||||
@disabled={{not this.model.valid}}
|
||||
/>
|
||||
|
||||
@ -2,6 +2,7 @@ import templateOnly from "@ember/component/template-only";
|
||||
import { setComponentTemplate } from "@ember/component";
|
||||
import { tracked } from "@glimmer/tracking";
|
||||
import { assert } from "@ember/debug";
|
||||
import { createWidgetFrom } from "discourse/widgets/widget";
|
||||
|
||||
/*
|
||||
|
||||
@ -89,7 +90,9 @@ export default class RenderGlimmer {
|
||||
template.name === "factory"
|
||||
);
|
||||
this.renderInto = renderInto;
|
||||
this.widget = widget;
|
||||
if (widget) {
|
||||
this.widget = widget;
|
||||
}
|
||||
this.template = template;
|
||||
this.data = data;
|
||||
}
|
||||
@ -108,7 +111,9 @@ export default class RenderGlimmer {
|
||||
|
||||
destroy() {
|
||||
if (this._componentInfo) {
|
||||
this.widget._findView().unmountChildComponent(this._componentInfo);
|
||||
this.parentMountWidgetComponent.unmountChildComponent(
|
||||
this._componentInfo
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -132,7 +137,7 @@ export default class RenderGlimmer {
|
||||
}
|
||||
|
||||
connectComponent() {
|
||||
const { element, template, widget } = this;
|
||||
const { element, template } = this;
|
||||
|
||||
const component = templateOnly();
|
||||
component.name = "Widgets/RenderGlimmer";
|
||||
@ -143,9 +148,39 @@ export default class RenderGlimmer {
|
||||
component,
|
||||
@tracked data: this.data,
|
||||
};
|
||||
const parentMountWidgetComponent = widget._findView();
|
||||
parentMountWidgetComponent.mountChildComponent(this._componentInfo);
|
||||
|
||||
this.parentMountWidgetComponent.mountChildComponent(this._componentInfo);
|
||||
}
|
||||
|
||||
get parentMountWidgetComponent() {
|
||||
return this.widget?._findView() || this._emberView;
|
||||
}
|
||||
}
|
||||
|
||||
RenderGlimmer.prototype.type = "Widget";
|
||||
|
||||
/**
|
||||
* Define a widget shim which renders a Glimmer template. Designed for incrementally migrating
|
||||
* a widget-based UI to Glimmer. Widget attrs will be made available to your template at `@data`.
|
||||
* For more details, see documentation for the RenderGlimmer class.
|
||||
* @param name - the widget's name (which can then be used in `.attach` elsewhere)
|
||||
* @param tagName - a string describing a new wrapper element (e.g. `div.my-class`)
|
||||
* @param template - a glimmer template compiled via ember-cli-htmlbars
|
||||
*/
|
||||
export function registerWidgetShim(name, tagName, template) {
|
||||
const RenderGlimmerShim = class MyClass extends RenderGlimmer {
|
||||
constructor(attrs) {
|
||||
super(null, tagName, template, attrs);
|
||||
return this;
|
||||
}
|
||||
|
||||
get widget() {
|
||||
return this.parentWidget;
|
||||
}
|
||||
|
||||
didRenderWidget() {}
|
||||
willRerenderWidget() {}
|
||||
};
|
||||
|
||||
createWidgetFrom(RenderGlimmerShim, name, {});
|
||||
}
|
||||
|
||||
@ -30,6 +30,10 @@ export function queryRegistry(name) {
|
||||
return _registry[name];
|
||||
}
|
||||
|
||||
export function deleteFromRegistry(name) {
|
||||
return delete _registry[name];
|
||||
}
|
||||
|
||||
const _decorators = {};
|
||||
|
||||
export function decorateWidget(widgetName, cb) {
|
||||
|
||||
@ -22,6 +22,11 @@ module("Integration | Component | ace-editor", function (hooks) {
|
||||
assert.ok(exists(".ace_editor"), "it renders the ace editor");
|
||||
});
|
||||
|
||||
test("yaml editor", async function (assert) {
|
||||
await render(hbs`<AceEditor @mode="yaml" @content="test: true" />`);
|
||||
assert.ok(exists(".ace_editor"), "it renders the ace editor");
|
||||
});
|
||||
|
||||
test("disabled editor", async function (assert) {
|
||||
await render(hbs`
|
||||
<AceEditor @mode="sql" @content="SELECT * FROM users" @disabled=true />
|
||||
|
||||
@ -4,9 +4,11 @@ import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { click, fillIn, render } from "@ember/test-helpers";
|
||||
import { hbs } from "ember-cli-htmlbars";
|
||||
import widgetHbs from "discourse/widgets/hbs-compiler";
|
||||
import Widget from "discourse/widgets/widget";
|
||||
import Widget, { deleteFromRegistry } from "discourse/widgets/widget";
|
||||
import ClassicComponent from "@ember/component";
|
||||
import RenderGlimmer from "discourse/widgets/render-glimmer";
|
||||
import RenderGlimmer, {
|
||||
registerWidgetShim,
|
||||
} from "discourse/widgets/render-glimmer";
|
||||
import { bind } from "discourse-common/utils/decorators";
|
||||
|
||||
class DemoWidget extends Widget {
|
||||
@ -126,12 +128,18 @@ module("Integration | Component | Widget | render-glimmer", function (hooks) {
|
||||
this.registry.register("widget:demo-widget", DemoWidget);
|
||||
this.registry.register("widget:toggle-demo-widget", ToggleDemoWidget);
|
||||
this.registry.register("component:demo-component", DemoComponent);
|
||||
registerWidgetShim(
|
||||
"render-glimmer-test-shim",
|
||||
"div.my-wrapper",
|
||||
hbs`<span class='shim-content'>{{@data.attr1}}</span>`
|
||||
);
|
||||
});
|
||||
|
||||
hooks.afterEach(function () {
|
||||
this.registry.unregister("widget:demo-widget");
|
||||
this.registry.unregister("widget:toggle-demo-widget");
|
||||
this.registry.unregister("component:demo-component");
|
||||
deleteFromRegistry("render-glimmer-test-shim");
|
||||
});
|
||||
|
||||
test("argument handling", async function (assert) {
|
||||
@ -310,4 +318,13 @@ module("Integration | Component | Widget | render-glimmer", function (hooks) {
|
||||
await click(".toggleButton");
|
||||
assert.strictEqual(query("div.glimmer-wrapper").innerText, "One");
|
||||
});
|
||||
|
||||
test("registerWidgetShim can register a fake widget", async function (assert) {
|
||||
await render(
|
||||
hbs`<MountWidget @widget="render-glimmer-test-shim" @args={{hash attr1="val1"}} />`
|
||||
);
|
||||
|
||||
assert.dom("div.my-wrapper span.shim-content").exists();
|
||||
assert.dom("div.my-wrapper span.shim-content").hasText("val1");
|
||||
});
|
||||
});
|
||||
|
||||
@ -98,10 +98,25 @@
|
||||
.row div[data-schematype="array"] {
|
||||
padding: 0.5em;
|
||||
background-color: var(--primary-very-low);
|
||||
|
||||
> .card-title {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid var(--primary-low);
|
||||
> .json-editor-btn-collapse {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.desktop-view & .modal-inner-container {
|
||||
--modal-max-width: 75vw;
|
||||
min-width: 55vw;
|
||||
}
|
||||
|
||||
.card-title.level-1,
|
||||
.card-title.je-object__title {
|
||||
> .json-editor-btn-collapse {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,6 +2,8 @@
|
||||
// To style group content differently, use the existing classes with a .group parent class.
|
||||
// For example: .group .user-secondary-navigation
|
||||
|
||||
@use "sass:math";
|
||||
|
||||
.group-details-container {
|
||||
background: var(--primary-very-low);
|
||||
padding: 20px;
|
||||
@ -55,7 +57,7 @@
|
||||
}
|
||||
|
||||
$size: 50px;
|
||||
$icon-size: $size / 1.8;
|
||||
$icon-size: math.div($size, 1.8);
|
||||
|
||||
.avatar-flair-image {
|
||||
width: $size;
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
@use "sass:math";
|
||||
|
||||
.groups-header {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@ -114,7 +116,7 @@
|
||||
}
|
||||
|
||||
$size: 40px;
|
||||
$icon-size: $size / 1.8;
|
||||
$icon-size: math.div($size, 1.8);
|
||||
|
||||
.group-avatar-flair {
|
||||
display: inline-block;
|
||||
|
||||
@ -27,6 +27,8 @@
|
||||
// 1. Default Settings
|
||||
////////////////////////
|
||||
|
||||
@use "sass:math";
|
||||
|
||||
$overlay-color: #0b0b0b !default;
|
||||
$overlay-opacity: 0.8 !default;
|
||||
$shadow: 0 0 8px rgba(0, 0, 0, 0.6) !default; // shadow on image or iframe
|
||||
@ -46,7 +48,7 @@ $include-iframe-type: true !default;
|
||||
$iframe-padding-top: 40px !default;
|
||||
$iframe-background: #000 !default;
|
||||
$iframe-max-width: 900px !default;
|
||||
$iframe-ratio: 9/16 !default;
|
||||
$iframe-ratio: math.div(9, 16) !default;
|
||||
|
||||
// Image-type options
|
||||
$include-image-type: true !default;
|
||||
|
||||
@ -279,6 +279,12 @@
|
||||
}
|
||||
|
||||
.reply-where-modal {
|
||||
.dialog-content {
|
||||
width: 100%;
|
||||
min-width: unset;
|
||||
max-width: 30em;
|
||||
}
|
||||
|
||||
.dialog-footer {
|
||||
display: block;
|
||||
}
|
||||
@ -291,19 +297,69 @@
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
|
||||
&:first-of-type {
|
||||
margin-top: 0.25em;
|
||||
&.dialog-close {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&.btn-reply-on-original {
|
||||
--text-color: var(--secondary);
|
||||
}
|
||||
|
||||
&.btn-reply-where__cancel {
|
||||
padding-left: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
&.btn-reply-on-original,
|
||||
&.btn-reply-here {
|
||||
font-size: var(--font-up-1);
|
||||
line-height: var(--line-height-medium);
|
||||
font-weight: bold;
|
||||
--text-color: var(--primary);
|
||||
.discourse-no-touch & {
|
||||
&:hover {
|
||||
--text-color: var(--secondary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-reply-where {
|
||||
min-height: 3em; // for situations when there are no categories/tags
|
||||
}
|
||||
|
||||
.topic-title {
|
||||
font-weight: normal;
|
||||
.d-icon {
|
||||
color: var(--text-color);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.fancy-title {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
|
||||
@include ellipsis;
|
||||
}
|
||||
|
||||
.topic-title__top-line {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
color: var(--text-color);
|
||||
font-size: var(--font-up-1);
|
||||
}
|
||||
|
||||
.topic-statuses {
|
||||
display: flex;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.topic-title__bottom-line {
|
||||
margin-top: 0.15em;
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
.discourse-tags {
|
||||
font-size: var(--font-down-1);
|
||||
}
|
||||
.category-name,
|
||||
.discourse-tag {
|
||||
color: var(--text-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -704,3 +760,14 @@
|
||||
top: 21px;
|
||||
}
|
||||
}
|
||||
|
||||
.json-editor-btn-delete {
|
||||
@extend .btn-danger;
|
||||
@extend .no-text;
|
||||
}
|
||||
|
||||
.json-editor-btn-collapse {
|
||||
@extend .no-text;
|
||||
@extend .btn-flat;
|
||||
@extend .btn-small;
|
||||
}
|
||||
|
||||
@ -86,6 +86,17 @@
|
||||
transition-delay: 0s;
|
||||
}
|
||||
}
|
||||
.sidebar-footer-wrapper {
|
||||
.btn-flat.add-section {
|
||||
padding: 0.25em 0.4em;
|
||||
&:hover {
|
||||
background: var(--d-sidebar-highlight-color);
|
||||
svg {
|
||||
color: var(--primary-medium);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-hamburger-dropdown {
|
||||
@ -112,44 +123,17 @@
|
||||
}
|
||||
|
||||
.sidebar-custom-sections {
|
||||
.btn-flat.add-section {
|
||||
margin-left: calc(var(--d-sidebar-section-link-prefix-width) / 2);
|
||||
margin-right: calc(var(--d-sidebar-section-link-prefix-width) / 2);
|
||||
width: calc(100% - var(--d-sidebar-section-link-prefix-width));
|
||||
svg {
|
||||
height: 0.75em;
|
||||
width: 0.75em;
|
||||
padding-left: 0.5em;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
&:before,
|
||||
&:after {
|
||||
content: "";
|
||||
flex: 1 1;
|
||||
border-bottom: 1px solid var(--primary-low-mid);
|
||||
margin: auto;
|
||||
}
|
||||
&:hover {
|
||||
background: var(--d-sidebar-highlight-color);
|
||||
border-radius: 5px;
|
||||
&:before,
|
||||
&:after {
|
||||
border-bottom: 1px solid var(--primary-high);
|
||||
}
|
||||
}
|
||||
}
|
||||
a.sidebar-section-link {
|
||||
padding-left: calc(
|
||||
var(--d-sidebar-section-link-prefix-width) +
|
||||
var(--d-sidebar-section-link-prefix-margin-right) +
|
||||
var(--d-sidebar-row-horizontal-padding)
|
||||
);
|
||||
.sidebar-section-wrapper {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
.sidebar-section-form-modal {
|
||||
.modal-inner-container {
|
||||
width: var(--modal-max-width);
|
||||
}
|
||||
form {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
input {
|
||||
width: 100%;
|
||||
}
|
||||
@ -158,7 +142,7 @@
|
||||
}
|
||||
.row-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto 2em;
|
||||
grid-template-columns: auto auto auto 2em;
|
||||
gap: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
@ -169,13 +153,20 @@
|
||||
margin-right: 1em;
|
||||
}
|
||||
.btn-flat.add-link {
|
||||
float: right;
|
||||
margin-top: 1em;
|
||||
margin-right: -0.5em;
|
||||
margin-left: -0.65em;
|
||||
&:active,
|
||||
&:focus {
|
||||
background: none;
|
||||
}
|
||||
svg {
|
||||
color: var(--tertiary);
|
||||
width: 0.75em;
|
||||
height: 0.75em;
|
||||
}
|
||||
&:hover svg {
|
||||
color: var(--tertiary-hover);
|
||||
}
|
||||
}
|
||||
.modal-footer {
|
||||
display: flex;
|
||||
|
||||
@ -148,20 +148,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.mobile-view .topic-list-item .discourse-tags {
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
font-size: var(--font-down-1);
|
||||
margin-top: 0;
|
||||
.discourse-tag {
|
||||
margin-right: 0.2em;
|
||||
}
|
||||
.discourse-tag.box {
|
||||
position: relative;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
header .discourse-tag {
|
||||
color: var(--primary-medium);
|
||||
}
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
@use "sass:math";
|
||||
|
||||
$card_width: 580px;
|
||||
$avatar_width: 120px;
|
||||
$avatar_margin: -50px; // negative margin makes avatars extend above cards
|
||||
@ -265,7 +267,7 @@ $avatar_margin: -50px; // negative margin makes avatars extend above cards
|
||||
color: var(--primary);
|
||||
.d-icon {
|
||||
margin: auto;
|
||||
font-size: $avatar_width / 1.5;
|
||||
font-size: math.div($avatar_width, 1.5);
|
||||
}
|
||||
&.rounded {
|
||||
border-radius: 50%;
|
||||
|
||||
@ -4,6 +4,8 @@
|
||||
// https://github.com/terkel/mathsass
|
||||
|
||||
// Constants
|
||||
@use "sass:math";
|
||||
|
||||
$E: 2.718281828459045;
|
||||
$PI: 3.141592653589793;
|
||||
$LN2: 0.6931471805599453;
|
||||
@ -48,7 +50,7 @@ $SQRT2: 1.4142135623730951;
|
||||
}
|
||||
} @else if $x >= 1 {
|
||||
@while $x >= 1 {
|
||||
$x: $x / 2;
|
||||
$x: $x * 0.5;
|
||||
$exp: $exp + 1;
|
||||
}
|
||||
}
|
||||
@ -59,7 +61,7 @@ $SQRT2: 1.4142135623730951;
|
||||
// @param {Number} $x
|
||||
// @param {Number} $exp
|
||||
@function ldexp($x, $exp) {
|
||||
$b: if($exp >= 0, 2, 1 / 2);
|
||||
$b: if($exp >= 0, 2, 1 * 0.5);
|
||||
@if $exp < 0 {
|
||||
$exp: $exp * -1;
|
||||
}
|
||||
@ -80,11 +82,11 @@ $SQRT2: 1.4142135623730951;
|
||||
// log(10) // 2.30259
|
||||
@function log($x) {
|
||||
@if $x <= 0 {
|
||||
@return 0 / 0;
|
||||
@return math.div(0, 0);
|
||||
}
|
||||
$k: nth(frexp($x / $SQRT2), 2);
|
||||
$x: $x / ldexp(1, $k);
|
||||
$x: ($x - 1) / ($x + 1);
|
||||
$k: nth(frexp(math.div($x, $SQRT2)), 2);
|
||||
$x: math.div($x, ldexp(1, $k));
|
||||
$x: math.div($x - 1, $x + 1);
|
||||
$x2: $x * $x;
|
||||
$i: 1;
|
||||
$s: $x;
|
||||
@ -93,7 +95,7 @@ $SQRT2: 1.4142135623730951;
|
||||
$x: $x * $x2;
|
||||
$i: $i + 2;
|
||||
$sp: $s;
|
||||
$s: $s + $x / $i;
|
||||
$s: $s + math.div($x, $i);
|
||||
}
|
||||
@return $LN2 * $k + 2 * $s;
|
||||
}
|
||||
@ -115,7 +117,7 @@ $SQRT2: 1.4142135623730951;
|
||||
$exp: floor($exp * 0.5);
|
||||
$base: $base * $base;
|
||||
}
|
||||
@return if($s != 0, 1 / $r, $r);
|
||||
@return if($s != 0, math.div(1, $r), $r);
|
||||
}
|
||||
|
||||
// Returns E^x, where x is the argument, and E is Euler's constant, the base of the natural logarithms.
|
||||
@ -126,7 +128,7 @@ $SQRT2: 1.4142135623730951;
|
||||
@function exp($x) {
|
||||
$ret: 0;
|
||||
@for $n from 0 to 24 {
|
||||
$ret: $ret + ipow($x, $n) / fact($n);
|
||||
$ret: $ret + math.div(ipow($x, $n), fact($n));
|
||||
}
|
||||
@return $ret;
|
||||
}
|
||||
@ -158,7 +160,7 @@ $SQRT2: 1.4142135623730951;
|
||||
}
|
||||
$ret: 1;
|
||||
@for $i from 1 through 24 {
|
||||
$ret: $ret - (pow($ret, 2) - $x) / (2 * $ret);
|
||||
$ret: $ret - math.div(pow($ret, 2) - $x, 2 * $ret);
|
||||
}
|
||||
@return $ret;
|
||||
}
|
||||
|
||||
@ -5,6 +5,8 @@
|
||||
// Media queries
|
||||
// --------------------------------------------------
|
||||
|
||||
@use "sass:math";
|
||||
|
||||
$breakpoints: (
|
||||
mobile-small: 320px,
|
||||
mobile-medium: 350px,
|
||||
@ -162,7 +164,7 @@ $hpad: 0.65em;
|
||||
$encoded: "";
|
||||
$slice: 2000;
|
||||
$index: 0;
|
||||
$loops: ceil(str-length($svg) / $slice);
|
||||
$loops: ceil(math.div(str-length($svg), $slice));
|
||||
|
||||
@for $i from 1 through $loops {
|
||||
$chunk: str-slice($svg, $index, $index + $slice - 1);
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
// Layout dimensions
|
||||
// --------------------------------------------------
|
||||
|
||||
@use "sass:math";
|
||||
|
||||
$small-width: 800px !default;
|
||||
$medium-width: 995px !default;
|
||||
$large-width: 1110px !default;
|
||||
@ -165,7 +167,7 @@ $box-shadow: (
|
||||
|
||||
// Uses an approximation of sRGB blending, GAMMA=2 instead of GAMMA=2.2
|
||||
@function srgb-scale($foreground, $background, $percent) {
|
||||
$ratio: ($percent / 100%);
|
||||
$ratio: math.div($percent, 100%);
|
||||
$iratio: 1 - $ratio;
|
||||
$f_r2: red($foreground) * red($foreground);
|
||||
$f_g2: green($foreground) * green($foreground);
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
@use "sass:math";
|
||||
|
||||
$flair-size: 18px;
|
||||
|
||||
.select-kit.flair-chooser {
|
||||
@ -15,14 +17,14 @@ $flair-size: 18px;
|
||||
width: $flair-size;
|
||||
|
||||
&.rounded {
|
||||
background-size: ($flair-size / 1.4) ($flair-size / 1.4);
|
||||
background-size: math.div($flair-size, 1.4) math.div($flair-size, 1.4);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.d-icon {
|
||||
display: block;
|
||||
height: ($flair-size / 1.8);
|
||||
width: ($flair-size / 1.8);
|
||||
height: math.div($flair-size, 1.8);
|
||||
width: math.div($flair-size, 1.8);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -123,8 +123,3 @@
|
||||
max-width: 100vw; // prevent overflow if user font-size is enormous
|
||||
}
|
||||
}
|
||||
|
||||
.json-editor-btn-delete {
|
||||
@extend .btn-danger !optional;
|
||||
@extend .no-text !optional;
|
||||
}
|
||||
|
||||
@ -162,11 +162,6 @@
|
||||
}
|
||||
|
||||
.topic-item-stats {
|
||||
.category,
|
||||
.discourse-tags {
|
||||
// disabling clicks because these targets are too small on mobile
|
||||
pointer-events: none;
|
||||
}
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
@ -186,6 +181,47 @@
|
||||
}
|
||||
}
|
||||
|
||||
.topic-item-stats {
|
||||
span.relative-date {
|
||||
vertical-align: text-top;
|
||||
}
|
||||
}
|
||||
|
||||
.topic-item-stats__category-tags {
|
||||
margin-right: 0.5em;
|
||||
.category,
|
||||
.discourse-tags {
|
||||
display: inline;
|
||||
// disabling clicks because these targets are too small on mobile
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.discourse-tags .discourse-tag {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.badge-wrapper {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.badge-wrapper {
|
||||
&.bullet {
|
||||
+ .discourse-tags {
|
||||
.discourse-tag {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.box {
|
||||
+ .discourse-tags {
|
||||
.discourse-tag {
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.age {
|
||||
white-space: nowrap;
|
||||
a {
|
||||
|
||||
@ -84,7 +84,7 @@ class Admin::BackupsController < Admin::AdminController
|
||||
StaffActionLogger.new(current_user).log_backup_download(backup)
|
||||
|
||||
if store.remote?
|
||||
redirect_to backup.source
|
||||
redirect_to backup.source, allow_other_host: true
|
||||
else
|
||||
headers["Content-Length"] = File.size(backup.source).to_s
|
||||
send_file backup.source
|
||||
|
||||
@ -42,7 +42,7 @@ class SidebarSectionsController < ApplicationController
|
||||
end
|
||||
|
||||
def links_params
|
||||
params.permit(links: %i[name value id _destroy])["links"]
|
||||
params.permit(links: %i[icon name value id _destroy])["links"]
|
||||
end
|
||||
|
||||
def check_if_member_of_group
|
||||
|
||||
@ -73,6 +73,12 @@ class Category < ActiveRecord::Base
|
||||
validate :ensure_slug
|
||||
validate :permissions_compatibility_validator
|
||||
|
||||
validates :default_slow_mode_seconds,
|
||||
numericality: {
|
||||
only_integer: true,
|
||||
greater_than: 0,
|
||||
},
|
||||
allow_nil: true
|
||||
validates :auto_close_hours,
|
||||
numericality: {
|
||||
greater_than: 0,
|
||||
|
||||
@ -448,10 +448,11 @@ class ColorScheme < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def resolved_colors
|
||||
from_base = base_colors.except("hover", "selected")
|
||||
from_base = ColorScheme.base_colors
|
||||
from_custom_scheme = base_colors
|
||||
from_db = colors.map { |c| [c.name, c.hex] }.to_h
|
||||
|
||||
resolved = from_base.merge(from_db)
|
||||
resolved = from_base.merge(from_custom_scheme).except("hover", "selected").merge(from_db)
|
||||
|
||||
# Equivalent to primary-100 in light mode, or primary-low in dark mode
|
||||
resolved["hover"] ||= ColorMath.dark_light_diff(
|
||||
|
||||
@ -6,6 +6,7 @@ module Trashable
|
||||
included do
|
||||
default_scope { where(deleted_at: nil) }
|
||||
scope :with_deleted, -> { unscope(where: :deleted_at) }
|
||||
scope :only_deleted, -> { with_deleted.where.not(deleted_at: nil) }
|
||||
|
||||
belongs_to :deleted_by, class_name: "User"
|
||||
end
|
||||
|
||||
@ -13,7 +13,16 @@ class RemoteTheme < ActiveRecord::Base
|
||||
class ImportError < StandardError
|
||||
end
|
||||
|
||||
ALLOWED_FIELDS = %w[scss embedded_scss head_tag header after_header body_tag footer]
|
||||
ALLOWED_FIELDS = %w[
|
||||
scss
|
||||
embedded_scss
|
||||
embedded_header
|
||||
head_tag
|
||||
header
|
||||
after_header
|
||||
body_tag
|
||||
footer
|
||||
]
|
||||
|
||||
GITHUB_REGEXP = %r{\Ahttps?://github\.com/}
|
||||
GITHUB_SSH_REGEXP = %r{\Assh://git@github\.com:}
|
||||
|
||||
@ -32,7 +32,7 @@ class ReviewableQueuedPost < Reviewable
|
||||
end
|
||||
end
|
||||
|
||||
unless rejected?
|
||||
if pending?
|
||||
actions.add(:reject_post) do |a|
|
||||
a.icon = "times"
|
||||
a.label = "reviewables.actions.reject_post.title"
|
||||
@ -45,17 +45,19 @@ class ReviewableQueuedPost < Reviewable
|
||||
end
|
||||
|
||||
def build_editable_fields(fields, guardian, args)
|
||||
# We can edit category / title if it's a new topic
|
||||
if topic_id.blank?
|
||||
# Only staff can edit category for now, since in theory a category group reviewer could
|
||||
# post in a category they don't have access to.
|
||||
fields.add("category_id", :category) if guardian.is_staff?
|
||||
if pending?
|
||||
# We can edit category / title if it's a new topic
|
||||
if topic_id.blank?
|
||||
# Only staff can edit category for now, since in theory a category group reviewer could
|
||||
# post in a category they don't have access to.
|
||||
fields.add("category_id", :category) if guardian.is_staff?
|
||||
|
||||
fields.add("payload.title", :text)
|
||||
fields.add("payload.tags", :tags)
|
||||
fields.add("payload.title", :text)
|
||||
fields.add("payload.tags", :tags)
|
||||
end
|
||||
|
||||
fields.add("payload.raw", :editor)
|
||||
end
|
||||
|
||||
fields.add("payload.raw", :editor)
|
||||
end
|
||||
|
||||
def create_options
|
||||
|
||||
@ -10,7 +10,7 @@ class SidebarSection < ActiveRecord::Base
|
||||
|
||||
accepts_nested_attributes_for :sidebar_urls, allow_destroy: true
|
||||
|
||||
validates :title, presence: true, uniqueness: { scope: %i[user_id] }
|
||||
validates :title, presence: true, uniqueness: { scope: %i[user_id] }, length: { maximum: 30 }
|
||||
end
|
||||
|
||||
# == Schema Information
|
||||
@ -19,7 +19,7 @@ end
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# user_id :integer not null
|
||||
# title :string not null
|
||||
# title :string(30) not null
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class SidebarUrl < ActiveRecord::Base
|
||||
validates :name, presence: true
|
||||
validates :value, presence: true
|
||||
validates :icon, presence: true, length: { maximum: 40 }
|
||||
validates :name, presence: true, length: { maximum: 80 }
|
||||
validates :value, presence: true, length: { maximum: 200 }
|
||||
|
||||
validate :path_validator
|
||||
|
||||
def path_validator
|
||||
@ -20,8 +22,9 @@ end
|
||||
# Table name: sidebar_urls
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# name :string not null
|
||||
# value :string not null
|
||||
# name :string(80) not null
|
||||
# value :string(200) not null
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
# icon :string(40) not null
|
||||
#
|
||||
|
||||
@ -337,7 +337,7 @@ class ThemeField < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def self.html_fields
|
||||
@html_fields ||= %w[body_tag head_tag header footer after_header]
|
||||
@html_fields ||= %w[body_tag head_tag header footer after_header embedded_header]
|
||||
end
|
||||
|
||||
def self.scss_fields
|
||||
@ -460,7 +460,7 @@ class ThemeField < ActiveRecord::Base
|
||||
else
|
||||
self.error = nil unless error.nil?
|
||||
end
|
||||
rescue SassC::SyntaxError => e
|
||||
rescue SassC::SyntaxError, SassC::NotRenderedError => e
|
||||
self.error = e.message unless self.destroyed?
|
||||
end
|
||||
self.compiler_version = Theme.compiler_version
|
||||
|
||||
@ -1790,14 +1790,17 @@ class User < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def set_status!(description, emoji, ends_at = nil)
|
||||
status = { description: description, emoji: emoji, set_at: Time.zone.now, ends_at: ends_at }
|
||||
|
||||
if user_status
|
||||
user_status.update!(status)
|
||||
else
|
||||
self.user_status = UserStatus.create!(status)
|
||||
end
|
||||
status = {
|
||||
description: description,
|
||||
emoji: emoji,
|
||||
set_at: Time.zone.now,
|
||||
ends_at: ends_at,
|
||||
user_id: id,
|
||||
}
|
||||
validate_status!(status)
|
||||
UserStatus.upsert(status)
|
||||
|
||||
reload_user_status
|
||||
publish_user_status(user_status)
|
||||
end
|
||||
|
||||
@ -2175,6 +2178,10 @@ class User < ActiveRecord::Base
|
||||
)
|
||||
SQL
|
||||
end
|
||||
|
||||
def validate_status!(status)
|
||||
UserStatus.new(status).validate!
|
||||
end
|
||||
end
|
||||
|
||||
# == Schema Information
|
||||
|
||||
@ -19,6 +19,7 @@
|
||||
<%= yield :head %>
|
||||
</head>
|
||||
<body>
|
||||
<%= theme_lookup("embedded_header") %>
|
||||
<%= yield %>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -266,13 +266,13 @@ ar:
|
||||
user_left: "أزال %{who} نفسه من هذه الرسالة في %{when}"
|
||||
removed_user: "أزال %{who} في %{when}"
|
||||
removed_group: "أزال %{who} في %{when}"
|
||||
autobumped: "رُفِع تلقائيًا في %{when}"
|
||||
autobumped: "تم رفعه تلقائيًا في %{when}"
|
||||
autoclosed:
|
||||
enabled: "تم إغلاقه في %{when}"
|
||||
disabled: "فُتح %{when}"
|
||||
disabled: "تم فتحه في %{when}"
|
||||
closed:
|
||||
enabled: "تم إغلاقه في %{when}"
|
||||
disabled: "فُتح %{when}"
|
||||
disabled: "تم فتحه في %{when}"
|
||||
archived:
|
||||
enabled: "تمت أرشفته في %{when}"
|
||||
disabled: "تم إلغاء أرشفته في %{when}"
|
||||
@ -283,8 +283,8 @@ ar:
|
||||
enabled: "تم تثبيته بشكلٍ عام في %{when}"
|
||||
disabled: "تم إلغاء تثبيته في %{when}"
|
||||
visible:
|
||||
enabled: "تم الإدراج في %{when}"
|
||||
disabled: "تم إلغاء الإدراج في %{when}"
|
||||
enabled: "تم إدراجه في %{when}"
|
||||
disabled: "تم إلغاء إدراجه في %{when}"
|
||||
banner:
|
||||
enabled: "حوَّل هذا الموضوع إلى بانر في %{when}. سيظهر أعلى كل صفحة حتى يُزيله المستخدم."
|
||||
disabled: "أزال هذا البانر في %{when}. ولن يظهر بعد الآن في أعلى كل صفحة."
|
||||
@ -446,7 +446,7 @@ ar:
|
||||
confirm_delete: "هل تريد بالتأكيد حذف هذه الإشارة المرجعية؟ سيتم حذف التذكير أيضًا."
|
||||
confirm_clear: "هل تريد بالتأكيد مسح كل إشاراتك المرجعية من هذا الموضوع؟"
|
||||
save: "حفظ"
|
||||
no_timezone: 'لم تحدد منطقتك الزمنية بعد. ولن تتمكن من تعيين التذكيرات. حدِّد منطقة زمنية <a href="%{basePath}/my/preferences/profile">في ملفك الشخصي</a>.'
|
||||
no_timezone: 'لم تقم بتعيين منطقة زمنية بعد. ولن تتمكن من تعيين التذكيرات. قم بتعيين منطقة زمنية <a href="%{basePath}/my/preferences/profile">في ملفك الشخصي</a>.'
|
||||
invalid_custom_datetime: "التاريخ والوقت الذين أدخلتهما غير صالحين، يُرجى إعادة المحاولة."
|
||||
list_permission_denied: "ليس لديك إذن بعرض الإشارات المرجعية لهذا المستخدم."
|
||||
no_user_bookmarks: "ليس لديك منشورات موضوع عليها إشارة مرجعية. تتيح لك الإشارات المرجعية الرجوع إلى المنشورات التي تريدها بسرعة."
|
||||
@ -462,7 +462,7 @@ ar:
|
||||
today_with_time: "اليوم في الساعة %{time}"
|
||||
tomorrow_with_time: "غدًا في الساعة %{time}"
|
||||
at_time: "بتاريخ %{date_time}"
|
||||
existing_reminder: "لقد عيَّنت تذكيرًا لهذه الإشارة المرجعية، وسيتم إرساله إليك في %{at_date_time}"
|
||||
existing_reminder: "لديك تذكير معيَّن لهذه الإشارة المرجعية، وسيتم إرساله إليك في %{at_date_time}"
|
||||
copy_codeblock:
|
||||
copied: "تم النسخ!"
|
||||
copy: "نسخ الرمز إلى الحافظة"
|
||||
@ -1202,11 +1202,6 @@ ar:
|
||||
profile: "الملف الشخصي"
|
||||
mute: "كتم"
|
||||
edit: "تعديل التفضيلات"
|
||||
download_archive:
|
||||
button_text: "تنزيل الكل"
|
||||
confirm: "هل تريد بالتأكيد تنزيل منشوراتك؟"
|
||||
success: "لقد بدأ التنزيل، وسنُرسل إليك رسالة إشعار عند اكتمال العملية."
|
||||
rate_limit_error: "يمكن تنزيل المنشورات مرة واحدة يوميًا. يُرجى إعادة المحاولة غدًا."
|
||||
new_private_message: "رسالة جديدة"
|
||||
private_message: "رسالة"
|
||||
private_messages: "الرسائل"
|
||||
@ -1343,7 +1338,7 @@ ar:
|
||||
admin: "%{user} مسؤول في الموقع"
|
||||
moderator_tooltip: "هذا المستخدم مشرف في الموقع"
|
||||
admin_tooltip: "هذا المستخدم مسؤول في الموقع"
|
||||
silenced_tooltip: "تم إسكات هذا المستخدم"
|
||||
silenced_tooltip: "أُسكت هذا العضو"
|
||||
suspended_notice: "هذا المستخدم معلَّق حتى تاريخ %{date}."
|
||||
suspended_permanently: "هذا المستخدم معلَّق."
|
||||
suspended_reason: "السبب: "
|
||||
@ -2023,7 +2018,7 @@ ar:
|
||||
instructions: "يتم عرض الرمز بجوار صورة ملفك الشخصي"
|
||||
status:
|
||||
title: "حالة مخصَّصة"
|
||||
not_set: "غير محدَّد"
|
||||
not_set: "غير معيَّن"
|
||||
primary_group:
|
||||
title: "المجموعة الأساسية"
|
||||
none: "(لا يوجد)"
|
||||
@ -2548,8 +2543,6 @@ ar:
|
||||
topic_template_not_modified: "يُرجى إضافة التفاصيل والمواصفات المحدَّدة إلى موضوعك من خلال تعديل نموذج الموضوع."
|
||||
save_edit: "حفظ التعديل"
|
||||
overwrite_edit: "استبدال التعديل"
|
||||
reply_original: "كتابة رد على الموضوع الأصلي"
|
||||
reply_here: "الرد هنا"
|
||||
reply: "الرد"
|
||||
cancel: "إلغاء"
|
||||
create_topic: "إنشاء موضوع"
|
||||
@ -3265,8 +3258,6 @@ ar:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>استعرض كل الفئات</a> أو <a href='%{basePath}/latest'>شاهد آخر الموضوعات</a>، أو انظر أبرز:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>استعرض كل الوسوم</a> أو <a href='%{basePath}/latest'>شاهد آخر الموضوعات</a>."
|
||||
suggest_create_topic: هل أنت مستعد <a href>لبدء محادثة جديدة؟</a>
|
||||
jump_reply_up: الانتقال إلى الرد السابق
|
||||
jump_reply_down: الانتقال إلى الرد التالي
|
||||
deleted: "لقد تم حذف الموضوع"
|
||||
slow_mode_update:
|
||||
title: "الوضع البطيء"
|
||||
@ -3691,13 +3682,6 @@ ar:
|
||||
collapse: "طي"
|
||||
sr_collapse_replies: "طي الردود المضمَّنة"
|
||||
sr_date: "تاريخ المنشور"
|
||||
sr_expand_replies:
|
||||
zero: "هناك %{count} رد على هذا المنشور. انقر للتوسيع"
|
||||
one: "هناك رد واحد (%{count}) على هذا المنشور. انقر للتوسيع"
|
||||
two: "هناك ردَّان (%{count}) على هذا المنشور. انقر للتوسيع"
|
||||
few: "هناك %{count} ردود على هذا المنشور. انقر للتوسيع"
|
||||
many: "هناك %{count} ردًا على هذا المنشور. انقر للتوسيع"
|
||||
other: "هناك %{count} رد على هذا المنشور. انقر للتوسيع"
|
||||
expand_collapse: "توسيع/طي"
|
||||
sr_below_embedded_posts_description: "ردود المنشور #%{post_number}"
|
||||
sr_embedded_reply_description: "رد بواسطة @%{username} على المنشور #%{post_number}"
|
||||
@ -4096,7 +4080,7 @@ ar:
|
||||
description: "سنُرسل إليك إشعارًا بالموضوعات الجديدة في هذه الفئة، ولكن ليس الردود على الموضوعات."
|
||||
tracking:
|
||||
title: "التتبُّع"
|
||||
description: "ستتتبَّع تلقائيًا كل الموضوعات في هذه الفئة. وسيتم إرسال إشعار إليك إذا أشار إليك شخص ما @name أو ردَّ عليك، وسيتم عرض عدد الردود الجديدة."
|
||||
description: "ستتتبَّع تلقائيًا كل الموضوعات في هذه الفئة. وسيتم إرسال إشعار إليك إذا أشار شخص ما إلى @اسمك أو ردَّ عليك، وسيتم عرض عدد الردود الجديدة."
|
||||
regular:
|
||||
title: "عادية"
|
||||
description: "سنُرسل إليك إشعارًا إذا أشار أحد إلى @اسمك أو ردَّ عليك."
|
||||
@ -4737,14 +4721,12 @@ ar:
|
||||
pause_notifications:
|
||||
title: "إيقاف الإشعارات مؤقتًا لمدة..."
|
||||
label: "إيقاف الإشعارات مؤقتًا"
|
||||
remaining: "بقي %{remaining}..."
|
||||
options:
|
||||
half_hour: "30 دقيقة"
|
||||
one_hour: "ساعة واحدة"
|
||||
two_hours: "ساعتان"
|
||||
tomorrow: "حتى الغد"
|
||||
custom: "مخصَّصة"
|
||||
set_schedule: "تعيين جدول الإشعارات"
|
||||
set_schedule: "تعيين جدول للإشعارات"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "مستخدم جديد"
|
||||
@ -4801,6 +4783,9 @@ ar:
|
||||
all_categories: "كل الفئات"
|
||||
all_tags: "كل الوسوم"
|
||||
sections:
|
||||
custom:
|
||||
save: "حفظ"
|
||||
delete: "حذف"
|
||||
about:
|
||||
header_link_text: "نبذة"
|
||||
messages:
|
||||
@ -4823,7 +4808,7 @@ ar:
|
||||
click_to_get_started: "انقر هنا للبدء."
|
||||
header_link_text: "الوسوم"
|
||||
header_action_title: "تعديل وسوم الشريط الجانبي"
|
||||
configure_defaults: "تعيين الإعدادات الافتراضية"
|
||||
configure_defaults: "تكوين الإعدادات الافتراضية"
|
||||
categories:
|
||||
links:
|
||||
add_categories:
|
||||
@ -4833,7 +4818,7 @@ ar:
|
||||
click_to_get_started: "انقر هنا للبدء."
|
||||
header_link_text: "الفئات"
|
||||
header_action_title: "تعديل فئات الشريط الجانبي"
|
||||
configure_defaults: "تعيين الإعدادات الافتراضية"
|
||||
configure_defaults: "تكوين الإعدادات الافتراضية"
|
||||
community:
|
||||
header_link_text: "المجتمع"
|
||||
header_action_title: "إنشاء موضوع"
|
||||
@ -5562,7 +5547,7 @@ ar:
|
||||
delete_confirm: "هل تريد حذف لوحة الألوان هذه؟"
|
||||
undo: "تراجع"
|
||||
undo_title: "يمكنك التراجع عن التغييرات التي أجريتها على هذا اللون منذ آخر مرة تم حفظه."
|
||||
revert: "تراجع"
|
||||
revert: "عودة"
|
||||
revert_title: "إعادة تعيين هذا اللون إلى لوحة ألوان Discourse الافتراضية"
|
||||
primary:
|
||||
name: "الأساسي"
|
||||
@ -6024,7 +6009,6 @@ ar:
|
||||
show_admin_profile: "مسؤول"
|
||||
manage_user: "إدارة المستخدم"
|
||||
show_public_profile: "إظهار الملف الشخصي العام"
|
||||
impersonate: "انتحال"
|
||||
action_logs: "سجلات الإجراءات"
|
||||
ip_lookup: "البحث عن عنوان IP"
|
||||
log_out: "تسجيل الخروج"
|
||||
|
||||
@ -77,8 +77,6 @@ be:
|
||||
close: "схаваць"
|
||||
emails_are_disabled: "Адпраўка паведамленняў па электроннай пошце было глабальна адключана адміністратарам. Ні адно апавяшчэнне па электроннай пошце не будзе даслана."
|
||||
bootstrap_invite_button_title: "Адправіць запрашэнні"
|
||||
themes:
|
||||
default_description: "Default"
|
||||
s3:
|
||||
regions:
|
||||
ap_northeast_1: "Азія (Токіа)"
|
||||
@ -546,7 +544,6 @@ be:
|
||||
email:
|
||||
title: "Электронная пошта"
|
||||
primary_label: "асноўнай"
|
||||
resent_label: "Ліст адпраўлены"
|
||||
update_email: "Змяненне адрасы электроннай пошты"
|
||||
invalid: "Калі ласка, увядзіце верны email"
|
||||
associated_accounts:
|
||||
@ -812,8 +809,6 @@ be:
|
||||
title_missing: "Загаловак неабходна"
|
||||
category_missing: "Вы павінны выбраць катэгорыю"
|
||||
save_edit: "захаваць змены"
|
||||
reply_original: "Адказаць у пачатковай тэме"
|
||||
reply_here: "Адказаць тут"
|
||||
reply: "Адказаць"
|
||||
cancel: "Адмяніць"
|
||||
create_topic: "Стварыць Тэму"
|
||||
@ -932,7 +927,6 @@ be:
|
||||
close_topics: "Закрыць тэму"
|
||||
archive_topics: "Заархіваваныя тэмы"
|
||||
move_messages_to_inbox: "Перамясціць у тэчцы Уваходныя"
|
||||
notification_level: "Натыфікацыі..."
|
||||
none:
|
||||
unread: "У вас няма непрачытаных тэм."
|
||||
new: "У вас няма новых тэм."
|
||||
@ -975,8 +969,6 @@ be:
|
||||
back_to_list: "Вярнуцца да спісу тым"
|
||||
options: "Налады тэмы"
|
||||
show_links: "паказаць спасылкі ў гэтай тэме"
|
||||
jump_reply_up: перайсці да больш ранняй адказы
|
||||
jump_reply_down: перайсці да больш позняй адказы
|
||||
deleted: "Тэма была выдаленая"
|
||||
slow_mode_update:
|
||||
enable: "Уключыць"
|
||||
@ -1083,7 +1075,6 @@ be:
|
||||
like: "упадабаць гэты пост"
|
||||
edit_action: "Рэдагаваць"
|
||||
more: "Болей"
|
||||
grant_badge: "даць Значок..."
|
||||
delete_topic: "выдаліць тэму"
|
||||
actions:
|
||||
people:
|
||||
@ -1177,7 +1168,6 @@ be:
|
||||
email: "Электронная пошта"
|
||||
flagging:
|
||||
action: "Пазначыць запіс"
|
||||
take_action: "прыняць меры..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "прыняць меры"
|
||||
@ -1348,6 +1338,9 @@ be:
|
||||
more: "Больш"
|
||||
all_categories: "Усе катэгорыі"
|
||||
sections:
|
||||
custom:
|
||||
save: "захаваць"
|
||||
delete: "выдаляць"
|
||||
about:
|
||||
header_link_text: "Аб тэме"
|
||||
messages:
|
||||
@ -1464,7 +1457,6 @@ be:
|
||||
user: "Карыстальнік"
|
||||
title: "API"
|
||||
created: створаны
|
||||
never_used: (ніколі)
|
||||
generate: "згенераваць"
|
||||
revoke: "Адклікнуць"
|
||||
all_users: "Усе карыстальнікі"
|
||||
@ -1661,9 +1653,6 @@ be:
|
||||
user_placeholder: "username"
|
||||
address_placeholder: "name@example.com"
|
||||
type_placeholder: "digest, signup ..."
|
||||
moderation_history:
|
||||
actions:
|
||||
delete_topic: "Тэма выдаленая"
|
||||
logs:
|
||||
title: "Логі"
|
||||
action: "дзеянне"
|
||||
@ -1788,7 +1777,6 @@ be:
|
||||
suspended: "Прыпынена?"
|
||||
show_admin_profile: "Адміністратар"
|
||||
show_public_profile: "Паказаць публічны профіль"
|
||||
impersonate: "ўвасобіцца"
|
||||
ip_lookup: "пошук IP"
|
||||
log_out: "Выйсці"
|
||||
logged_out: "Карыстальнік выйшаў з сістэмы на ўсіх прыладах"
|
||||
|
||||
@ -225,9 +225,6 @@ bg:
|
||||
now: "преди малко"
|
||||
read_more: "прочетете повече"
|
||||
more: "Повече"
|
||||
x_more:
|
||||
one: "Още %{count}"
|
||||
other: "Още %{count}"
|
||||
never: "никога"
|
||||
every_30_minutes: "на всеки 30 минути"
|
||||
every_hour: "на всеки час"
|
||||
@ -911,11 +908,6 @@ bg:
|
||||
profile: "Профил"
|
||||
mute: "Заглуши"
|
||||
edit: "Редактирай настройките"
|
||||
download_archive:
|
||||
button_text: "Изтегли всичко"
|
||||
confirm: "Сигурни ли сте, че искате да свалите своите публикации?"
|
||||
success: "Свалянето е инициирано, ще бъдете уведомени чрез съобщение когато процесът е завършен."
|
||||
rate_limit_error: "Публикации могат да бъдат сваляни веднъж дневно, моля опитайте отново утре."
|
||||
new_private_message: "Ново Съобщение"
|
||||
private_message: "Съобщение"
|
||||
private_messages: "Съобщения"
|
||||
@ -1819,8 +1811,6 @@ bg:
|
||||
topic_template_not_modified: "Моля, добавете подробности към вашата тема, като редактирате шаблона на темата."
|
||||
save_edit: "Запази редакцията"
|
||||
overwrite_edit: "Презаписване Редактиране"
|
||||
reply_original: "Отговори на Оригинална Тема"
|
||||
reply_here: "Отговори тук"
|
||||
reply: "Отговорете"
|
||||
cancel: "Прекрати"
|
||||
create_topic: "Създай тема"
|
||||
@ -1906,7 +1896,6 @@ bg:
|
||||
desc: Шепотът се вижда само от служителите
|
||||
create_topic:
|
||||
label: "Нова тема"
|
||||
ignore: "Игнорирай"
|
||||
notifications:
|
||||
title: "уведомления за @name споменавания, отговори на вашите публикации и теми, лични съобщения, и т.н."
|
||||
none: "В момента не могат да бъдат заредени уведомленията."
|
||||
@ -2073,7 +2062,6 @@ bg:
|
||||
close_topics: "Затвори темите"
|
||||
archive_topics: "Архивирай темите"
|
||||
move_messages_to_inbox: "Премести във входящи"
|
||||
notification_level: "Известия..."
|
||||
choose_new_category: "Избери нова категория за тези теми:"
|
||||
selected:
|
||||
one: "Вие сте избрали <b>%{count}</b> тема."
|
||||
@ -2143,8 +2131,6 @@ bg:
|
||||
back_to_list: "Назад към Списъка с теми"
|
||||
options: "Настройки на темата"
|
||||
show_links: "покажи връзките в тази тема"
|
||||
jump_reply_up: към по ранен отговор
|
||||
jump_reply_down: към по-късен отговор
|
||||
deleted: "Темата беше изтрита"
|
||||
slow_mode_update:
|
||||
title: "Бавен режим"
|
||||
@ -2217,7 +2203,6 @@ bg:
|
||||
title: прогрес на темата
|
||||
jump_prompt: "отиди на..."
|
||||
jump_prompt_long: "Отиди на..."
|
||||
jump_prompt_to_date: "до дата"
|
||||
jump_prompt_or: "или"
|
||||
notifications:
|
||||
reasons:
|
||||
@ -2269,7 +2254,6 @@ bg:
|
||||
unarchive: "Разархивирай темата"
|
||||
archive: "Архивирай темата"
|
||||
reset_read: "Изчисти прочетените данни "
|
||||
make_public: "Направи темата публична..."
|
||||
feature:
|
||||
pin: "Закови темата"
|
||||
unpin: "Отгови темата"
|
||||
@ -2520,8 +2504,6 @@ bg:
|
||||
rebake: "Прегенерирай HTML "
|
||||
publish_page: "Публикуване на страници"
|
||||
unhide: "Покажи "
|
||||
change_owner: "Смени Правомощията..."
|
||||
grant_badge: "Присъдени значка..."
|
||||
lock_post: "Заключване на публикацията"
|
||||
lock_post_description: "не позволявайте на публикувалия да редактира тази публикация"
|
||||
unlock_post: "Отключи публикацията"
|
||||
@ -2659,8 +2641,6 @@ bg:
|
||||
search_priority:
|
||||
options:
|
||||
normal: "Нормален"
|
||||
ignore: "Игнорирай"
|
||||
low: "Ниска"
|
||||
high: "Висок"
|
||||
sort_options:
|
||||
default: "по подразбиране"
|
||||
@ -2718,10 +2698,6 @@ bg:
|
||||
clicks:
|
||||
one: "%{count} кликване"
|
||||
other: "%{count} кликвания"
|
||||
post_links:
|
||||
title:
|
||||
one: "още %{count}"
|
||||
other: "още %{count}"
|
||||
topic_statuses:
|
||||
warning:
|
||||
help: "Това е официално предупреждение."
|
||||
@ -2793,9 +2769,6 @@ bg:
|
||||
lower_title_with_count:
|
||||
one: "%{count} непрочетен"
|
||||
other: "%{count} непрочетени"
|
||||
unseen:
|
||||
title: "Непрегледани"
|
||||
lower_title: "непрегледани"
|
||||
new:
|
||||
lower_title_with_count:
|
||||
one: "%{count} нов"
|
||||
@ -2905,9 +2878,6 @@ bg:
|
||||
others_count: "Други са такава значка (%{count})"
|
||||
title: Значки
|
||||
allow_title: "Може да използвате тази значка като титла."
|
||||
more_badges:
|
||||
one: "+Още %{count}"
|
||||
other: "+Още %{count}"
|
||||
select_badge_for_title: Изберете значка за титла?
|
||||
none: "(никой)"
|
||||
successfully_granted: "Успешно дадохте %{badge}на %{username}"
|
||||
@ -2962,7 +2932,6 @@ bg:
|
||||
save: "Запази"
|
||||
delete: "Изтрий"
|
||||
everyone_can_use: "Етикетите могат да се използват от всички"
|
||||
parent_tag_placeholder: "По избор"
|
||||
topics:
|
||||
none:
|
||||
unread: "Нямате непрочетени теми."
|
||||
@ -2984,7 +2953,6 @@ bg:
|
||||
half_hour: "30 минути"
|
||||
one_hour: "1 час"
|
||||
two_hours: "2 часа"
|
||||
custom: "По избор"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "нов потребител"
|
||||
@ -3002,6 +2970,9 @@ bg:
|
||||
more: "Повече"
|
||||
all_categories: "Всички категории"
|
||||
sections:
|
||||
custom:
|
||||
save: "Запази "
|
||||
delete: "Изтрий"
|
||||
about:
|
||||
header_link_text: "Относно"
|
||||
messages:
|
||||
@ -3027,8 +2998,6 @@ bg:
|
||||
content: "Администратор"
|
||||
badges:
|
||||
content: "Значки"
|
||||
everything:
|
||||
content: "Всичко"
|
||||
faq:
|
||||
content: "FAQ"
|
||||
groups:
|
||||
@ -3062,7 +3031,6 @@ bg:
|
||||
latest_version: "Последни"
|
||||
new_features:
|
||||
dismiss: "Отмени"
|
||||
learn_more: "Научете повече"
|
||||
last_checked: "Последна проверка"
|
||||
refresh_problems: "Обнови"
|
||||
no_problems: "Не бяха открити проблеми."
|
||||
@ -3078,8 +3046,6 @@ bg:
|
||||
show_traffic_report: "Покажи детайлен репорт на трафика"
|
||||
general_tab: "Основни"
|
||||
security_tab: "Сигурност"
|
||||
report_filter_any: "всеки"
|
||||
disabled: Деактивирани
|
||||
reports:
|
||||
today: "Днес"
|
||||
yesterday: "Вчера"
|
||||
@ -3137,7 +3103,6 @@ bg:
|
||||
user: "Потребител"
|
||||
title: "API"
|
||||
created: Създадени
|
||||
never_used: (никога)
|
||||
generate: "Генраирай"
|
||||
revoke: "Анулирай"
|
||||
all_users: "Всички потребители"
|
||||
@ -3155,7 +3120,6 @@ bg:
|
||||
details: "Когато има нов отговор, редакция, изтриване или възстановяване."
|
||||
delivery_status:
|
||||
failed: "Провалени"
|
||||
disabled: "Деактивирани"
|
||||
events:
|
||||
request: "Заявка"
|
||||
headers: "Хедъри"
|
||||
@ -3247,9 +3211,6 @@ bg:
|
||||
delete: "Изтрий"
|
||||
color: "Цвят"
|
||||
opacity: "Прозрачност"
|
||||
copy_to_clipboard: "Копиране в клипборда"
|
||||
copied_to_clipboard: "Копирано в клипборда"
|
||||
copy_to_clipboard_error: "Грешка при копирането на данни в клипборда"
|
||||
email_templates:
|
||||
title: "Имейл"
|
||||
subject: "Тема"
|
||||
@ -3258,7 +3219,6 @@ bg:
|
||||
revert: "Върни промените"
|
||||
revert_confirm: "Сигурен ли си, че искаш да върнеш промените?"
|
||||
theme:
|
||||
theme: "Тема"
|
||||
customize_desc: "Персонализация:"
|
||||
create_type: "Тип"
|
||||
create_name: "Име"
|
||||
@ -3267,7 +3227,6 @@ bg:
|
||||
settings: "Настройки"
|
||||
collapse: Намали
|
||||
upload: "Качване"
|
||||
discard: "Отхвърляне"
|
||||
installed: "Инсталирани"
|
||||
install_popular: "Популярни"
|
||||
about_theme: "Относно"
|
||||
@ -3325,7 +3284,6 @@ bg:
|
||||
name: "избрани"
|
||||
email_style:
|
||||
css: "CSS"
|
||||
reset: "Обновявам до първоначалното"
|
||||
email:
|
||||
title: "Имейли"
|
||||
settings: "Настройки"
|
||||
@ -3385,9 +3343,6 @@ bg:
|
||||
address_placeholder: "name@example.com"
|
||||
type_placeholder: "дайджест, регистрация"
|
||||
reply_key_placeholder: "reply key "
|
||||
moderation_history:
|
||||
actions:
|
||||
delete_topic: "Тема е изтрита"
|
||||
logs:
|
||||
title: "Логове"
|
||||
action: "Действия"
|
||||
@ -3511,8 +3466,6 @@ bg:
|
||||
flag: "Сигнализиране"
|
||||
form:
|
||||
add: "Добави"
|
||||
test:
|
||||
no_matches: "Няма намерени съвпадения"
|
||||
impersonate:
|
||||
title: "Представи"
|
||||
help: "Използвайте този инструмент, за да предоставите потребителски профили за отстраняване на грешките. Трябва да излезете когато приключите."
|
||||
@ -3564,7 +3517,6 @@ bg:
|
||||
staged: "Поставен?"
|
||||
show_admin_profile: "Админ"
|
||||
show_public_profile: "Покажи публичния профил "
|
||||
impersonate: "Представени "
|
||||
ip_lookup: "IP търсене "
|
||||
log_out: "Изход "
|
||||
logged_out: "Потребителя беше разлогнат от всички устройства "
|
||||
@ -3628,8 +3580,6 @@ bg:
|
||||
activate_failed: "Възникна проблем с активирането на потребителя. "
|
||||
deactivate_account: "Деактивирай профила"
|
||||
deactivate_failed: "Възникна проблем при деактивирането на потребителя. "
|
||||
reset_bounce_score:
|
||||
label: "Нулиране"
|
||||
deactivate_explanation: "Деактивирания потребител трябва повторно да валидира неговия имейл. "
|
||||
suspended_explanation: "Отстраненитят потребител не може да се логва . "
|
||||
staged_explanation: "Поставените потребители могат да пишат теми само чрез писма."
|
||||
@ -3763,9 +3713,7 @@ bg:
|
||||
dashboard: "Работен плот"
|
||||
navigation: "Навигация"
|
||||
default_categories:
|
||||
modal_description: "Искате ли да приложите тази промяна исторически? Това ще промени предпочитанията за %{count} съществуващи потребители."
|
||||
modal_yes: "Да"
|
||||
modal_no: "Не, промяната се прилага само занапред"
|
||||
badges:
|
||||
title: Значки
|
||||
new_badge: Нова значка
|
||||
|
||||
@ -856,11 +856,6 @@ bs_BA:
|
||||
profile: "Profil"
|
||||
mute: "Mutiraj"
|
||||
edit: "Uredi Postavke"
|
||||
download_archive:
|
||||
button_text: "Preuzmi sve"
|
||||
confirm: "Da li ste sigurni da želite preuzeti svoju objavu?"
|
||||
success: "Preuzimanje je započeto, bit će te obavješteni porukom kada proces bude završen."
|
||||
rate_limit_error: "Objava može biti preuzeta samo jedanput na dan, molimo vas da pokušate sutra ponovo."
|
||||
new_private_message: "Nova poruka"
|
||||
private_message: "Poruka"
|
||||
private_messages: "Poruke"
|
||||
@ -1670,8 +1665,6 @@ bs_BA:
|
||||
topic_template_not_modified: "Molimo da dodate detalje i specifikacije za vašu temu tako što ćete izmijeniti template teme."
|
||||
save_edit: "Sačuvaj izmjene"
|
||||
overwrite_edit: "Overwrite Edit"
|
||||
reply_original: "Odgovori na Originalnu temu"
|
||||
reply_here: "Odgovori Ovdje"
|
||||
reply: "Odgovori"
|
||||
cancel: "Odustani"
|
||||
create_topic: "Pokreni temu"
|
||||
@ -1956,11 +1949,9 @@ bs_BA:
|
||||
dismiss_new: "Odpusti Nove"
|
||||
toggle: "preklopi masovno označavanje tema"
|
||||
actions: "Masovno odrađene akcije"
|
||||
change_category: "Postavi kategoriju..."
|
||||
close_topics: "Zatvori teme"
|
||||
archive_topics: "Arhiviraj teme"
|
||||
move_messages_to_inbox: "Idi u inbox"
|
||||
notification_level: "Obavijest..."
|
||||
choose_new_category: "Izaberi novu kategoriju za temu:"
|
||||
selected:
|
||||
one: "Označili ste <b>%{count}</b> temu."
|
||||
@ -2040,8 +2031,6 @@ bs_BA:
|
||||
back_to_list: "Vrati se na Listu Tema"
|
||||
options: "Opcije Teme"
|
||||
show_links: "pokaži linkove unutar ove teme"
|
||||
jump_reply_up: jump to earlier reply
|
||||
jump_reply_down: jump to later reply
|
||||
deleted: "Ova tema je obrisana"
|
||||
slow_mode_update:
|
||||
enable: "Omogući"
|
||||
@ -2150,7 +2139,6 @@ bs_BA:
|
||||
unarchive: "Vrati temu iz arhiva"
|
||||
archive: "Arhiviraj temu"
|
||||
reset_read: "Reset Read Data"
|
||||
make_public: "Napiši temu javno..."
|
||||
make_private: "Pretvori u privatnu poruku"
|
||||
reset_bump_date: "Resetuj datum bumpa"
|
||||
feature:
|
||||
@ -2407,8 +2395,6 @@ bs_BA:
|
||||
revert_to_regular: "Ukloni boje osoblja"
|
||||
rebake: "Popravi HTML"
|
||||
unhide: "Unhide"
|
||||
change_owner: "Izmijeni vlasništvo..."
|
||||
grant_badge: "Grant Badge..."
|
||||
lock_post: "Zaključaj objavu"
|
||||
lock_post_description: "spriječi objavljivača ove objave da izmijeni objavu"
|
||||
unlock_post: "Odključaj objavu"
|
||||
@ -2416,7 +2402,6 @@ bs_BA:
|
||||
delete_topic_disallowed_modal: "Nemate dozvolu za brisanje ove teme. Ako zaista želite da bude obrisan, pošaljite kaznu za pažnju moderatora zajedno s obrazloženjem."
|
||||
delete_topic_disallowed: "nemate dozvolu za brisanje ove teme"
|
||||
delete_topic: "obriši temu"
|
||||
add_post_notice: "Dodaj obavještenje moderatora..."
|
||||
remove_timer: "ukloni tajmer"
|
||||
actions:
|
||||
people:
|
||||
@ -2608,7 +2593,6 @@ bs_BA:
|
||||
flagging:
|
||||
title: "Zašto prijavljujete ovaj post?"
|
||||
action: "Prijavi objavu"
|
||||
take_action: "Poduzmi Akciju..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Poduzmi Akciju"
|
||||
@ -3019,7 +3003,6 @@ bs_BA:
|
||||
delete: "Delete"
|
||||
confirm_delete: "Jeste li sigurni da želite izbrisati ovu grupu oznaka?"
|
||||
everyone_can_use: "Oznake mogu koristiti svi"
|
||||
parent_tag_placeholder: "Opciono"
|
||||
topics:
|
||||
none:
|
||||
unread: "Nemate više nepročitanih tema."
|
||||
@ -3043,10 +3026,6 @@ bs_BA:
|
||||
safe_mode:
|
||||
enabled: "Bezbedan režim je omogućen, da biste izašli iz bezbednog režima, zatvorite ovaj prozor pregledača"
|
||||
image_removed: "(slika uklonjena)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} preostalo"
|
||||
options:
|
||||
custom: "Custom"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "novi korisnik"
|
||||
@ -3066,6 +3045,9 @@ bs_BA:
|
||||
more: "Još"
|
||||
all_categories: "Sve kategorije"
|
||||
sections:
|
||||
custom:
|
||||
save: "Save"
|
||||
delete: "Delete"
|
||||
about:
|
||||
header_link_text: "O nama"
|
||||
messages:
|
||||
@ -3091,8 +3073,6 @@ bs_BA:
|
||||
content: "Admin"
|
||||
badges:
|
||||
content: "Bedž"
|
||||
everything:
|
||||
content: "Sve"
|
||||
faq:
|
||||
content: "Česta pitanja"
|
||||
groups:
|
||||
@ -3103,7 +3083,6 @@ bs_BA:
|
||||
content: "Moje objave"
|
||||
review:
|
||||
content: "Pregled"
|
||||
until: "Sve do:"
|
||||
admin_js:
|
||||
type_to_filter: "kucaj da sortiraš..."
|
||||
admin:
|
||||
@ -3133,7 +3112,6 @@ bs_BA:
|
||||
problems_found: "Neki saveti na osnovu vaših trenutnih postavki sajta"
|
||||
new_features:
|
||||
dismiss: "Odpusti"
|
||||
learn_more: "Saznaj više"
|
||||
last_checked: "Zadnje pogledani"
|
||||
refresh_problems: "Osvježi"
|
||||
no_problems: "No problems were found."
|
||||
@ -4002,7 +3980,6 @@ bs_BA:
|
||||
staged: "Staged?"
|
||||
show_admin_profile: "Admin"
|
||||
show_public_profile: "Show Public Profile"
|
||||
impersonate: "Impersonate"
|
||||
action_logs: "Logovi akcija"
|
||||
ip_lookup: "IP Lookup"
|
||||
log_out: "Log Out"
|
||||
|
||||
@ -836,11 +836,6 @@ ca:
|
||||
profile: "Perfil"
|
||||
mute: "Silencia"
|
||||
edit: "Edita preferències"
|
||||
download_archive:
|
||||
button_text: "Descarrega-ho tot"
|
||||
confirm: "Esteu segur que voleu descarregar les vostres publicacions?"
|
||||
success: "Descàrrega iniciada. Quan el procés s'acabi, us ho notificarem amb un missatge."
|
||||
rate_limit_error: "Les publicacions es poden descarregar una vegada al dia. Torneu a provar-ho demà."
|
||||
new_private_message: "Missatge nou"
|
||||
private_message: "Missatge"
|
||||
private_messages: "Missatges"
|
||||
@ -1608,8 +1603,6 @@ ca:
|
||||
topic_template_not_modified: "Afegiu detalls i especificacions al tema editant la plantilla."
|
||||
save_edit: "Desa l'edició"
|
||||
overwrite_edit: "Sobreescriu l'edició"
|
||||
reply_original: "Respon en el tema original"
|
||||
reply_here: "Respon aquí"
|
||||
reply: "Respon"
|
||||
cancel: "Cancel·la"
|
||||
create_topic: "Crea un tema"
|
||||
@ -1888,11 +1881,9 @@ ca:
|
||||
dismiss_new: "Descarta'n els nous"
|
||||
toggle: "commuta la selecció massiva de temes"
|
||||
actions: "Accions massives"
|
||||
change_category: "Defineix categoria..."
|
||||
close_topics: "Tanca temes"
|
||||
archive_topics: "Arxiva temes"
|
||||
move_messages_to_inbox: "Mou a la safata d'entrada"
|
||||
notification_level: "Notificacions..."
|
||||
choose_new_category: "Seleccioneu la categoria nova per als temes:"
|
||||
selected:
|
||||
one: "He seleccionat <b>%{count}</b> tema."
|
||||
@ -1967,8 +1958,6 @@ ca:
|
||||
options: "Opcions del tema"
|
||||
show_links: "mostra enllaços dins d'aquest tema"
|
||||
unread_indicator: "Cap membre encara no ha llegit la darrera publicació d'aquest tema."
|
||||
jump_reply_up: salta a la resposta anterior
|
||||
jump_reply_down: salta a la resposta posterior
|
||||
deleted: "El tema ha estat suprimit"
|
||||
slow_mode_update:
|
||||
enable: "Activa"
|
||||
@ -2076,7 +2065,6 @@ ca:
|
||||
unarchive: "Desarxiva tema"
|
||||
archive: "Arxiva tema"
|
||||
reset_read: "Restableix data de lectura"
|
||||
make_public: "Fes públic el tema..."
|
||||
make_private: "Converteix en missatge personal"
|
||||
reset_bump_date: "Restableix la data d'elevació"
|
||||
feature:
|
||||
@ -2319,8 +2307,6 @@ ca:
|
||||
revert_to_regular: "Elimina el color de l'equip responsable"
|
||||
rebake: "Refés HTML"
|
||||
unhide: "Desfés amagar"
|
||||
change_owner: "Canvia la propietat..."
|
||||
grant_badge: "Atorga insígnia..."
|
||||
lock_post: "Bloca la publicació"
|
||||
lock_post_description: "impedeix que l'autor editi aquesta publicació"
|
||||
unlock_post: "Desbloca la publicació"
|
||||
@ -2328,7 +2314,6 @@ ca:
|
||||
delete_topic_disallowed_modal: "No teniu permís per a suprimir aquest tema. Si realment voleu que se suprimeixi, envieu una bandera perquè un moderador hi pari atenció juntament amb una argumentació."
|
||||
delete_topic_disallowed: "no teniu permís per a suprimir aquest tema"
|
||||
delete_topic: "suprimeix el tema"
|
||||
add_post_notice: "Afegeix un avís a l'equip responsable..."
|
||||
remove_timer: "elimina el temporitzador"
|
||||
actions:
|
||||
people:
|
||||
@ -2381,14 +2366,9 @@ ca:
|
||||
title: "Mostra la part HTML del correu electrònic"
|
||||
button: "HTML"
|
||||
bookmarks:
|
||||
create: "Crea un marcador"
|
||||
edit: "Edita el marcador"
|
||||
updated: "Actualitzat"
|
||||
name: "Nom"
|
||||
options: "Opcions"
|
||||
actions:
|
||||
edit_bookmark:
|
||||
name: "Edita el marcador"
|
||||
category:
|
||||
none: "(sense categoria)"
|
||||
all: "Totes les categories"
|
||||
@ -2514,7 +2494,6 @@ ca:
|
||||
flagging:
|
||||
title: "Gràcies per ajudar a mantenir endreçada la comunitat!"
|
||||
action: "Marca la publicació amb bandera "
|
||||
take_action: "Actua..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Actua"
|
||||
@ -2859,7 +2838,6 @@ ca:
|
||||
delete: "Suprimeix"
|
||||
confirm_delete: "Esteu segur que voleu suprimir aquest grup d'etiquetes?"
|
||||
everyone_can_use: "Etiquetes que poden ser utilitzades per tothom"
|
||||
parent_tag_placeholder: "Opcional"
|
||||
topics:
|
||||
none:
|
||||
unread: "No teniu temes no llegits."
|
||||
@ -2881,10 +2859,6 @@ ca:
|
||||
dismiss: "Descarta-ho"
|
||||
safe_mode:
|
||||
enabled: "El mode segur està activat. Per a sortir-ne tanqueu aquesta finestra del navegador."
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} restant"
|
||||
options:
|
||||
custom: "Personalitzat"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "usuari nou"
|
||||
@ -2902,6 +2876,9 @@ ca:
|
||||
more: "Més"
|
||||
all_categories: "Totes les categories"
|
||||
sections:
|
||||
custom:
|
||||
save: "Desa"
|
||||
delete: "Suprimeix"
|
||||
about:
|
||||
header_link_text: "Quant a"
|
||||
messages:
|
||||
@ -2927,8 +2904,6 @@ ca:
|
||||
content: "Administració"
|
||||
badges:
|
||||
content: "Insígnies"
|
||||
everything:
|
||||
content: "Qualsevol cosa"
|
||||
faq:
|
||||
content: "PMF"
|
||||
groups:
|
||||
@ -2939,7 +2914,6 @@ ca:
|
||||
content: "Les meves publicacions"
|
||||
review:
|
||||
content: "Revisa"
|
||||
until: "Fins a:"
|
||||
admin_js:
|
||||
type_to_filter: "escriu per a filtrar..."
|
||||
admin:
|
||||
@ -2969,7 +2943,6 @@ ca:
|
||||
problems_found: "Uns quants consells basats en la configuració actual del lloc web."
|
||||
new_features:
|
||||
dismiss: "Descarta-ho"
|
||||
learn_more: "Per a saber-ne més"
|
||||
last_checked: "Comprovat per darrera vegada"
|
||||
refresh_problems: "Actualitza"
|
||||
no_problems: "No s'han trobat problemes."
|
||||
@ -3842,7 +3815,6 @@ ca:
|
||||
staged: "Fictici?"
|
||||
show_admin_profile: "Administració"
|
||||
show_public_profile: "Mostra el perfil públic"
|
||||
impersonate: "Suplanta"
|
||||
action_logs: "Registres d'accions (logs)"
|
||||
ip_lookup: "Cerca IP"
|
||||
log_out: "Tanca la sessió"
|
||||
|
||||
@ -563,31 +563,11 @@ cs:
|
||||
title: "Proč odmítáte tohoto uživatele?"
|
||||
send_email: "Odeslat e-mail o odmítnutí"
|
||||
relative_time_picker:
|
||||
minutes:
|
||||
one: "minuta"
|
||||
few: "minut"
|
||||
many: "minut"
|
||||
other: "minut"
|
||||
hours:
|
||||
one: "hodina"
|
||||
few: "hodin"
|
||||
many: "hodin"
|
||||
other: "hodin"
|
||||
days:
|
||||
one: "den"
|
||||
few: "dní"
|
||||
many: "dní"
|
||||
other: "dnů"
|
||||
months:
|
||||
one: "měsíc"
|
||||
few: "měsíců"
|
||||
many: "měsíců"
|
||||
other: "měsíců"
|
||||
years:
|
||||
one: "rok"
|
||||
few: "let"
|
||||
many: "let"
|
||||
other: "let"
|
||||
relative: "Relativní"
|
||||
time_shortcut:
|
||||
later_today: "Později dnes"
|
||||
@ -859,19 +839,9 @@ cs:
|
||||
few: "%{count} témata"
|
||||
many: "%{count} témat"
|
||||
other: "%{count} témat"
|
||||
topic_stat:
|
||||
one: "%{number} / %{unit}"
|
||||
few: "%{number} / %{unit}"
|
||||
many: "%{number} / %{unit}"
|
||||
other: "%{number} / %{unit}"
|
||||
topic_stat_unit:
|
||||
week: "týden"
|
||||
month: "měsíc"
|
||||
topic_stat_all_time:
|
||||
one: "Celkem %{number}"
|
||||
few: "Celkem %{number}"
|
||||
many: "Celkem %{number}"
|
||||
other: "Celkem %{number}"
|
||||
n_more: "Kategorie (%{count} dalších)..."
|
||||
ip_lookup:
|
||||
title: Vyhledávání podle IP adresy
|
||||
@ -898,11 +868,6 @@ cs:
|
||||
profile: "Profil"
|
||||
mute: "Ignorovat"
|
||||
edit: "Upravit nastavení"
|
||||
download_archive:
|
||||
button_text: "Stáhnout vše"
|
||||
confirm: "Jste si jistí, že chcete stáhnout všechny své příspěvky?"
|
||||
success: "Stahování zahájeno, až bude dokončeno, přijde ti zpráva."
|
||||
rate_limit_error: "Příspěvky mohou být staženy jen jednou za den. Zkus to, prosím, zítra."
|
||||
new_private_message: "Nová zpráva"
|
||||
private_message: "Zpráva"
|
||||
private_messages: "Zprávy"
|
||||
@ -944,7 +909,6 @@ cs:
|
||||
collapse_profile: "Sbalit"
|
||||
bookmarks: "Záložky"
|
||||
bio: "O mně"
|
||||
timezone: "Časové pásmo"
|
||||
invited_by: "Pozvánka od"
|
||||
trust_level: "Důvěryhodnost"
|
||||
notifications: "Oznámení"
|
||||
@ -1049,11 +1013,6 @@ cs:
|
||||
many: "Nepřečtená (%{count})"
|
||||
other: "Nepřečtená (%{count})"
|
||||
new: "Nová"
|
||||
new_with_count:
|
||||
one: "Nové"
|
||||
few: "Nová (%{count})"
|
||||
many: "Nové"
|
||||
other: "Nové"
|
||||
archive: "Archív"
|
||||
groups: "Moje skupiny"
|
||||
move_to_inbox: "Přesunout do doručených"
|
||||
@ -1653,8 +1612,6 @@ cs:
|
||||
category_missing: "Musíte vybrat kategorii"
|
||||
save_edit: "Uložit změnu"
|
||||
overwrite_edit: "Přepsat úpravu"
|
||||
reply_original: "Odpovědět na původní téma"
|
||||
reply_here: "Odpovědět sem"
|
||||
reply: "Odpovědět"
|
||||
cancel: "Zrušit"
|
||||
create_topic: "Vytvořit téma"
|
||||
@ -1912,11 +1869,9 @@ cs:
|
||||
dismiss_new: "Označit jako přečtené vše nové"
|
||||
toggle: "hromadný výběr témat"
|
||||
actions: "Hromadné akce"
|
||||
change_category: "Nastavit kategorii..."
|
||||
close_topics: "Zavřít téma"
|
||||
archive_topics: "Archivovat témata"
|
||||
move_messages_to_inbox: "Přesunout do doručených"
|
||||
notification_level: "Upozornění..."
|
||||
choose_new_category: "Zvolte novou kategorii pro témata:"
|
||||
selected:
|
||||
one: "Vybrali jste <b>%{count}</b> téma."
|
||||
@ -2001,8 +1956,6 @@ cs:
|
||||
back_to_list: "Zpátky na seznam témat"
|
||||
options: "Možnosti"
|
||||
show_links: "zobrazit odkazy v tomto tématu"
|
||||
jump_reply_up: přejít na předchozí odpověď
|
||||
jump_reply_down: přejít na následující odpověď
|
||||
deleted: "Téma bylo smazáno"
|
||||
slow_mode_update:
|
||||
enable: "Zapnout"
|
||||
@ -2109,7 +2062,6 @@ cs:
|
||||
unarchive: "Navrátit z archivu"
|
||||
archive: "Archivovat téma"
|
||||
reset_read: "Vynulovat počet čtení"
|
||||
make_public: "Vytvořit Veřejné Téma..."
|
||||
make_private: "Vytvořit soukromou zprávu "
|
||||
reset_bump_date: "Resetovat datum zvýraznění"
|
||||
feature:
|
||||
@ -2346,8 +2298,6 @@ cs:
|
||||
revert_to_regular: "Zrušit zvýraznění"
|
||||
rebake: "Obnovit HTML"
|
||||
unhide: "Odkrýt"
|
||||
change_owner: "Změnit autora..."
|
||||
grant_badge: "Udělit odznak..."
|
||||
lock_post: "Uzamknout příspěvek "
|
||||
lock_post_description: "Zabránit přispěvatelům v úpravách tohoto příspěvku"
|
||||
unlock_post: "Odemknout příspěvek"
|
||||
@ -2411,15 +2361,8 @@ cs:
|
||||
title: "Zobrazit html část emailu"
|
||||
button: "HTML"
|
||||
bookmarks:
|
||||
create: "Vytvořit záložku"
|
||||
edit: "Upravit záložku"
|
||||
name: "Jméno"
|
||||
options: "Možnosti"
|
||||
actions:
|
||||
delete_bookmark:
|
||||
name: "Smazat záložku"
|
||||
edit_bookmark:
|
||||
name: "Upravit záložku"
|
||||
category:
|
||||
none: "(bez kategorie)"
|
||||
all: "Všechny kategorie"
|
||||
@ -2530,7 +2473,6 @@ cs:
|
||||
flagging:
|
||||
title: "Děkujeme, že pomáháte udržovat komunitu zdvořilou!"
|
||||
action: "Nahlásit příspěvek"
|
||||
take_action: "Zakročit..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Zakročit"
|
||||
@ -2890,7 +2832,6 @@ cs:
|
||||
delete: "Smazat"
|
||||
confirm_delete: "Jste si jistí, že chcete smazat tuto skupinu štítků?"
|
||||
everyone_can_use: "Tagy mohou být použity kýmkoliv"
|
||||
parent_tag_placeholder: "Volitelné"
|
||||
topics:
|
||||
none:
|
||||
unread: "Nemáte žádná nepřečtená témata."
|
||||
@ -2912,10 +2853,6 @@ cs:
|
||||
dismiss: "Označit jako přečtené"
|
||||
safe_mode:
|
||||
enabled: "Bezpečný režim je povolený, k jeho zakázání zavři toto okno prohlížeče"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} zbývá"
|
||||
options:
|
||||
custom: "Přizpůsobené"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "nový uživatel"
|
||||
@ -2937,6 +2874,9 @@ cs:
|
||||
more: "Více"
|
||||
all_categories: "Všechny kategorie"
|
||||
sections:
|
||||
custom:
|
||||
save: "Uložit"
|
||||
delete: "Smazat"
|
||||
about:
|
||||
header_link_text: "O fóru"
|
||||
messages:
|
||||
@ -2961,8 +2901,6 @@ cs:
|
||||
content: "Administrace"
|
||||
badges:
|
||||
content: "Odznaky"
|
||||
everything:
|
||||
content: "Vše"
|
||||
faq:
|
||||
content: "FAQ"
|
||||
groups:
|
||||
@ -2971,7 +2909,6 @@ cs:
|
||||
content: "Uživatelé"
|
||||
my_posts:
|
||||
content: "Mé příspěvky"
|
||||
until: "dokud:"
|
||||
admin_js:
|
||||
type_to_filter: "text pro filtrování..."
|
||||
admin:
|
||||
@ -2997,7 +2934,6 @@ cs:
|
||||
latest_version: "Poslední verze"
|
||||
new_features:
|
||||
dismiss: "Označit jako přečtené"
|
||||
learn_more: "Více informací"
|
||||
last_checked: "Naposledy zkontrolováno"
|
||||
refresh_problems: "Obnovit"
|
||||
no_problems: "Nenalezeny žádné problémy."
|
||||
@ -3091,7 +3027,6 @@ cs:
|
||||
user: "Uživatel"
|
||||
title: "API"
|
||||
created: Vytvořený
|
||||
never_used: (nikdy)
|
||||
generate: "Vygenerovat API klíč"
|
||||
revoke: "zrušit"
|
||||
all_users: "Všichni uživatelé"
|
||||
@ -3670,7 +3605,6 @@ cs:
|
||||
staged: "Staged?"
|
||||
show_admin_profile: "Administrace"
|
||||
show_public_profile: "Zobrazit veřejný profil"
|
||||
impersonate: "Vydávat se za uživatele"
|
||||
action_logs: "Logy akcí"
|
||||
ip_lookup: "Vyhledávání IP adresy"
|
||||
log_out: "Odhlásit se"
|
||||
|
||||
@ -936,11 +936,6 @@ da:
|
||||
profile: "Profil"
|
||||
mute: "Ignorer"
|
||||
edit: "Redigér indstillinger"
|
||||
download_archive:
|
||||
button_text: "Hent alle"
|
||||
confirm: "Er du sikker på, at du vil hente dine indlæg?"
|
||||
success: "Hentningen er startet. Du vil blive notificeret via en besked, når processen er færdig."
|
||||
rate_limit_error: "Indlæg kan hentes én gang om dagen, prøv igen i morgen."
|
||||
new_private_message: "Ny Besked"
|
||||
private_message: "Besked"
|
||||
private_messages: "Beskeder"
|
||||
@ -1942,8 +1937,6 @@ da:
|
||||
topic_template_not_modified: "Tilføj venligst detaljer og specifikationer til dit emne ved at redigere emneskabelonen."
|
||||
save_edit: "Gem ændringer"
|
||||
overwrite_edit: "Overskriv redigering"
|
||||
reply_original: "Svar på det oprindelige emne"
|
||||
reply_here: "Svar her"
|
||||
reply: "Svar"
|
||||
cancel: "Annuller"
|
||||
create_topic: "Opret emne"
|
||||
@ -2390,8 +2383,6 @@ da:
|
||||
show_links: "vis links i dette emne"
|
||||
unread_indicator: "Intet medlem har læst det sidste indlæg i dette emne endnu."
|
||||
suggest_create_topic: Klar til <a href>at starte en ny samtale?</a>
|
||||
jump_reply_up: hop til tidligere svar
|
||||
jump_reply_down: hop til senere svar
|
||||
deleted: "Emnet er blevet slettet"
|
||||
slow_mode_update:
|
||||
title: "Langsom Tilstand"
|
||||
@ -2530,7 +2521,6 @@ da:
|
||||
open: "Åbn emne"
|
||||
close: "Luk emne"
|
||||
multi_select: "Vælg indlæg..."
|
||||
slow_mode: "Indstil langsom tilstand..."
|
||||
timed_update: "Indstil timerfunktion for emne..."
|
||||
pin: "Fastgør Emne..."
|
||||
unpin: "Fjern fastgøring af Emne..."
|
||||
@ -2847,8 +2837,6 @@ da:
|
||||
delete_topic_confirm_modal_no: "Nej, behold dette emne"
|
||||
delete_topic_error: "Der opstod en fejl under sletning af dette emne"
|
||||
delete_topic: "slet emne"
|
||||
add_post_notice: "Tilføj Hjælperteam Notits..."
|
||||
change_post_notice: "Ændre Personale Meddelelse..."
|
||||
delete_post_notice: "Slet Personale Meddelelse"
|
||||
remove_timer: "fjern timer"
|
||||
edit_timer: "rediger timer"
|
||||
@ -3551,13 +3539,11 @@ da:
|
||||
enabled: "Sikker tilstand er slået til - for at forlade sikker tilstand, så luk dette browservindue"
|
||||
image_removed: "(billede fjernet)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} tilbage"
|
||||
options:
|
||||
half_hour: "30 minutter"
|
||||
one_hour: "1 time"
|
||||
two_hours: "2 timer"
|
||||
tomorrow: "Indtil i morgen"
|
||||
custom: "Tilpasset"
|
||||
set_schedule: "Indstil en Tidsplan for notifikation"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3598,6 +3584,9 @@ da:
|
||||
all_categories: "Alle kategorier"
|
||||
all_tags: "Alle mærker"
|
||||
sections:
|
||||
custom:
|
||||
save: "Gem"
|
||||
delete: "Slet"
|
||||
about:
|
||||
header_link_text: "Om"
|
||||
messages:
|
||||
@ -3618,9 +3607,7 @@ da:
|
||||
header_link_text: "Tags"
|
||||
configure_defaults: "Konfigurer standardindstillinger"
|
||||
categories:
|
||||
click_to_get_started: "Klik her for at komme i gang."
|
||||
header_link_text: "Kategorier"
|
||||
configure_defaults: "Konfigurer standardindstillinger"
|
||||
community:
|
||||
header_link_text: "Fællesskab"
|
||||
links:
|
||||
@ -3630,8 +3617,6 @@ da:
|
||||
content: "Admin"
|
||||
badges:
|
||||
content: "Emblemer"
|
||||
everything:
|
||||
content: "Alting"
|
||||
faq:
|
||||
content: "OSS"
|
||||
groups:
|
||||
@ -4708,7 +4693,6 @@ da:
|
||||
show_admin_profile: "Admin"
|
||||
manage_user: "Administrer bruger"
|
||||
show_public_profile: "Vis offentlig profil"
|
||||
impersonate: "Impersonate"
|
||||
action_logs: "Aktivitetslog"
|
||||
ip_lookup: "IP opslag"
|
||||
log_out: "Log ud"
|
||||
|
||||
@ -974,11 +974,6 @@ de:
|
||||
profile: "Profil"
|
||||
mute: "Stummschalten"
|
||||
edit: "Einstellungen bearbeiten"
|
||||
download_archive:
|
||||
button_text: "Alle herunterladen"
|
||||
confirm: "Möchtest du wirklich deine Beiträge herunterladen?"
|
||||
success: "Der Export wurde gestartet. Du erhältst eine Nachricht, sobald der Vorgang abgeschlossen ist."
|
||||
rate_limit_error: "Beiträge können pro Tag nur einmal heruntergeladen werden. Bitte versuch es morgen wieder."
|
||||
new_private_message: "Neue Nachricht"
|
||||
private_message: "Nachricht"
|
||||
private_messages: "Nachrichten"
|
||||
@ -2152,8 +2147,6 @@ de:
|
||||
topic_template_not_modified: "Bitte füge Details und Spezifikationen zu deinem Thema hinzu, indem du die Themenvorlage anpasst."
|
||||
save_edit: "Bearbeitung speichern"
|
||||
overwrite_edit: "Bearbeitung überschreiben"
|
||||
reply_original: "Auf das ursprüngliche Thema antworten"
|
||||
reply_here: "Hier antworten"
|
||||
reply: "Antworten"
|
||||
cancel: "Abbrechen"
|
||||
create_topic: "Thema erstellen"
|
||||
@ -2396,7 +2389,7 @@ de:
|
||||
other: "<span>%{count}%{plus} Ergebnisse für </span><span class='term'>%{term}</span>"
|
||||
title: "Suche"
|
||||
full_page_title: "Suche"
|
||||
results: "ergebnisse"
|
||||
results: "Ergebnisse"
|
||||
no_results: "Keine Ergebnisse gefunden."
|
||||
no_more_results: "Es wurden keine weiteren Ergebnisse gefunden."
|
||||
post_format: "#%{post_number} von %{username}"
|
||||
@ -2725,8 +2718,6 @@ de:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Durchstöbere alle Kategorien</a>, <a href='%{basePath}/latest'>sieh dir die aktuellen Themen</a> oder die Top-Themen an:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Durchstöbere alle Schlagwörter</a> oder <a href='%{basePath}/latest'>sieh dir die aktuellen Themen an</a>."
|
||||
suggest_create_topic: Bereit, <a href>eine neue Unterhaltung zu beginnen?</a>
|
||||
jump_reply_up: zur vorherigen Antwort springen
|
||||
jump_reply_down: zur nachfolgenden Antwort springen
|
||||
deleted: "Das Thema wurde gelöscht"
|
||||
slow_mode_update:
|
||||
title: "Langsamer Modus"
|
||||
@ -3091,9 +3082,6 @@ de:
|
||||
collapse: "zuklappen"
|
||||
sr_collapse_replies: "Eingebettete Antworten einklappen"
|
||||
sr_date: "Beitragsdatum"
|
||||
sr_expand_replies:
|
||||
one: "Dieser Beitrag hat %{count} Antwort. Zum Erweitern klicken"
|
||||
other: "Dieser Beitrag hat %{count} Antworten. Zum Erweitern klicken"
|
||||
expand_collapse: "erweitern/zuklappen"
|
||||
sr_below_embedded_posts_description: "Beitrag #%{post_number} Antworten"
|
||||
sr_embedded_reply_description: "Antwort von @%{username} auf Beitrag #%{post_number}"
|
||||
@ -3947,15 +3935,13 @@ de:
|
||||
enabled: "Der abgesicherte Modus ist aktiviert. Schließe das Browserfenster, um ihn zu verlassen."
|
||||
image_removed: "(Bild entfernt)"
|
||||
pause_notifications:
|
||||
title: "Benachrichtigungen pausieren für..."
|
||||
title: "Benachrichtigungen pausieren für …"
|
||||
label: "Benachrichtigungen pausieren"
|
||||
remaining: "%{remaining} verbleibend"
|
||||
options:
|
||||
half_hour: "30 Minuten"
|
||||
one_hour: "1 Stunde"
|
||||
two_hours: "2 Stunden"
|
||||
tomorrow: "Bis morgen"
|
||||
custom: "Benutzerdefiniert"
|
||||
set_schedule: "Zeitplan für Benachrichtigungen festlegen"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4005,6 +3991,9 @@ de:
|
||||
all_categories: "Alle Kategorien"
|
||||
all_tags: "Alle Schlagwörter"
|
||||
sections:
|
||||
custom:
|
||||
save: "Speichern"
|
||||
delete: "Löschen"
|
||||
about:
|
||||
header_link_text: "Über uns"
|
||||
messages:
|
||||
@ -4836,7 +4825,7 @@ de:
|
||||
last_seen_user: "Zuletzt gesehener Benutzer:"
|
||||
no_result: "Für diese Zusammenfassung wurden keine Ergebnisse gefunden."
|
||||
reply_key: "Antwort-Schlüssel"
|
||||
post_link_with_smtp: "Beitrag & SMTP-Details"
|
||||
post_link_with_smtp: "Beitrag und SMTP-Details"
|
||||
skipped_reason: "Grund des Überspringens"
|
||||
incoming_emails:
|
||||
from_address: "Von"
|
||||
@ -5195,7 +5184,6 @@ de:
|
||||
show_admin_profile: "Administration"
|
||||
manage_user: "Benutzer verwalten"
|
||||
show_public_profile: "Zeige öffentliches Profil"
|
||||
impersonate: "Nutzersicht"
|
||||
action_logs: "Aktionsprotokolle"
|
||||
ip_lookup: "IP-Abfrage"
|
||||
log_out: "Abmelden"
|
||||
|
||||
@ -817,11 +817,6 @@ el:
|
||||
profile: "Προφίλ"
|
||||
mute: "Σίγαση"
|
||||
edit: "Επεξεργασία Ρυθμίσεων"
|
||||
download_archive:
|
||||
button_text: "Λήψη Όλων"
|
||||
confirm: "Είσαι σίγουρος πως θέλεις να κάνεις λήψη των αναρτήσεών σου;"
|
||||
success: "Ξεκίνησε η διαδικασία λήψης. Θα ειδοποιηθείτε μόλις ολοκληρωθεί η διαδικασία."
|
||||
rate_limit_error: "Μπορείς να κάνεις λήψη των αναρτήσεών σου μια φορά την ημέρα, προσπάθησε ξανά αύριο."
|
||||
new_private_message: "Νέο Μήνυμα"
|
||||
private_message: "Μήνυμα"
|
||||
private_messages: "Μηνύματα"
|
||||
@ -1644,8 +1639,6 @@ el:
|
||||
topic_template_not_modified: "Παρακαλώ προσθέστε λεπτομέρειες στο θέμα σας με την επεξεργασία του προτύπου θέματος."
|
||||
save_edit: "Αποθήκευση Επεξεργασίας"
|
||||
overwrite_edit: "Αντικατάσταση επεξεργασίας"
|
||||
reply_original: "Απάντηση στο αρχικό νήμα"
|
||||
reply_here: "Απάντησε Εδώ"
|
||||
reply: "Απάντηση"
|
||||
cancel: "Ακύρωση"
|
||||
create_topic: "Δημιουργία Νήματος"
|
||||
@ -1940,11 +1933,9 @@ el:
|
||||
dismiss_new: "Αγνόησε τα νέα"
|
||||
toggle: "εναλλαγή μαζικής επιλογής νημάτων"
|
||||
actions: "Μαζικές Ενέργειες"
|
||||
change_category: "Θέσε Κατηγορία..."
|
||||
close_topics: "Κλείσιμο Νημάτων"
|
||||
archive_topics: "Αρχειοθέτηση Νημάτων"
|
||||
move_messages_to_inbox: "Μετακίνηση στα Εισερχόμενα"
|
||||
notification_level: "Ειδοποιήσεις..."
|
||||
choose_new_category: "Διάλεξε νέα κατηγορία για τα νήματα:"
|
||||
selected:
|
||||
one: "Έχεις διαλέξει <b>%{count}</b> νήμα."
|
||||
@ -2019,14 +2010,11 @@ el:
|
||||
options: "Ρυθμίσεις Νήματος"
|
||||
show_links: "εμφάνιση συνδέσμων εντός του νήματος"
|
||||
unread_indicator: "Κανένα μέλος δεν έχει διαβάσει ακόμη την τελευταία ανάρτηση αυτού του θέματος."
|
||||
jump_reply_up: μετάβαση στην απάντηση που προηγείται
|
||||
jump_reply_down: μετάβαση στην απάντηση που ακολουθεί
|
||||
deleted: "Το νήμα έχει διαγραφεί "
|
||||
slow_mode_update:
|
||||
enable: "Ενεργοποίηση"
|
||||
remove: "Απενεργοποίηση"
|
||||
hours: "ώρες:"
|
||||
minutes: "Λεπτά:"
|
||||
durations:
|
||||
10_minutes: "10 Λεπτά"
|
||||
15_minutes: "15 Λεπτά"
|
||||
@ -2145,7 +2133,6 @@ el:
|
||||
unarchive: "Επαναφορά Νήματος από Αρχείο"
|
||||
archive: "Αρχειοθέτηση Νήματος"
|
||||
reset_read: "Μηδενισμός Διαβασμένων"
|
||||
make_public: "Κάνε Δημόσιο το Νήμα..."
|
||||
make_private: "Κάνε προσωπικό μήνυμα"
|
||||
reset_bump_date: "Επαναφορά ημερομηνίας ώθησης"
|
||||
feature:
|
||||
@ -2406,8 +2393,6 @@ el:
|
||||
rebake: "Ανανέωση HTML"
|
||||
publish_page: "Δημοσίευση σελίδας"
|
||||
unhide: "Επανεμφάνιση"
|
||||
change_owner: "Αλλαγή Ιδιοκτησίας..."
|
||||
grant_badge: "Απονομή Παράσημου..."
|
||||
lock_post: "Κλείδωμα ανάρτησης"
|
||||
lock_post_description: "αποτρέψτε τον συντάκτη από την επεξεργασία αυτής της ανάρτησης"
|
||||
unlock_post: "Ξεκλείδωμα ανάρτησης"
|
||||
@ -2415,7 +2400,6 @@ el:
|
||||
delete_topic_disallowed_modal: "Δεν έχετε άδεια διαγραφής αυτού του θέματος. Εάν θέλετε πραγματικά να διαγραφεί, υποβάλετε μια επισήμανση για προσοχή από συντονιστή μαζί με το σκεπτικό."
|
||||
delete_topic_disallowed: "δεν έχετε άδεια να διαγράψετε αυτό το θέμα"
|
||||
delete_topic: "διαγραφή νήματος"
|
||||
add_post_notice: "Προσθήκη ειδοποίησης προσωπικού..."
|
||||
remove_timer: "αφαίρεση χρονοδιακόπτη"
|
||||
actions:
|
||||
people:
|
||||
@ -2620,7 +2604,6 @@ el:
|
||||
flagging:
|
||||
title: "Ευχαριστούμε για τη συνεισφορά σου!"
|
||||
action: "Επισήμανση Ανάρτησης"
|
||||
take_action: "Λάβε Δράση..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Λάβε Δράση"
|
||||
@ -3007,7 +2990,6 @@ el:
|
||||
delete: "Διαγραφή"
|
||||
confirm_delete: "Είσαι βέβαιος πως θέλεις να διαγράψεις αυτή την ομάδα ετικετών;"
|
||||
everyone_can_use: "Οι ετικέτες μπορούν να χρησιμοποιηθούν από όλους"
|
||||
parent_tag_placeholder: "Προεραιτικό"
|
||||
topics:
|
||||
none:
|
||||
unread: "Δεν έχεις αδιάβαστα νήματα."
|
||||
@ -3032,13 +3014,11 @@ el:
|
||||
enabled: "Η λειτουργία ασφαλείας είναι ενεργοποιημένη, για να εξέλθεις από τη λειτουργία ασφαλείας κλείσε το παράθυρο περιήγησης"
|
||||
image_removed: "(η εικόνα αφαιρέθηκε)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} απομένει"
|
||||
options:
|
||||
half_hour: "30 λεπτά"
|
||||
one_hour: "1 ώρα"
|
||||
two_hours: "2 ώρες"
|
||||
tomorrow: "Μέχρι αύριο"
|
||||
custom: "Προσαρμοσμένο"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "νέος χρήστης"
|
||||
@ -3056,6 +3036,9 @@ el:
|
||||
more: "Περισσότερα"
|
||||
all_categories: "Όλες οι κατηγορίες"
|
||||
sections:
|
||||
custom:
|
||||
save: "Αποθήκευση"
|
||||
delete: "Σβήσιμο"
|
||||
about:
|
||||
header_link_text: "Σχετικά"
|
||||
messages:
|
||||
@ -3081,8 +3064,6 @@ el:
|
||||
content: "Διαχείριση"
|
||||
badges:
|
||||
content: "Παράσημα"
|
||||
everything:
|
||||
content: "Τα πάνΤα"
|
||||
faq:
|
||||
content: "Συχνές ερωτήσεις"
|
||||
groups:
|
||||
@ -3093,7 +3074,6 @@ el:
|
||||
content: "Οι αναρτήσεις μου"
|
||||
review:
|
||||
content: "Ανασκόπηση"
|
||||
until: "Μέχρι:"
|
||||
admin_js:
|
||||
type_to_filter: "γράψε εδώ για φιλτράρισμα..."
|
||||
admin:
|
||||
@ -3123,7 +3103,6 @@ el:
|
||||
problems_found: "Μερικές συμβουλές με βάση τις τρέχουσες ρυθμίσεις του ιστότοπού σας"
|
||||
new_features:
|
||||
dismiss: "Απόρριψη"
|
||||
learn_more: "Μάθε περισσότερα"
|
||||
last_checked: "Τελευταίος έλεγχος"
|
||||
refresh_problems: "Ανανέωση"
|
||||
no_problems: "Δεν βρέθηκε κανένα πρόβλημα."
|
||||
@ -4055,7 +4034,6 @@ el:
|
||||
staged: "Στάδιο Μετάβασης;"
|
||||
show_admin_profile: "Διαχείριση"
|
||||
show_public_profile: "Εμφάνισε το Δημόσιο Προφίλ"
|
||||
impersonate: "Υποδυθείτε"
|
||||
action_logs: "Καταγραφές Ενεργειών"
|
||||
ip_lookup: "Αναζήτηση διεύθυνσης IP"
|
||||
log_out: "Αποσύνδεση"
|
||||
|
||||
@ -2375,8 +2375,6 @@ en:
|
||||
|
||||
save_edit: "Save Edit"
|
||||
overwrite_edit: "Overwrite Edit"
|
||||
reply_original: "Reply on Original Topic"
|
||||
reply_here: "Reply Here"
|
||||
reply: "Reply"
|
||||
cancel: "Cancel"
|
||||
create_topic: "Create Topic"
|
||||
@ -4370,9 +4368,10 @@ en:
|
||||
delete: "Delete"
|
||||
delete_confirm: "Are you sure you want to delete this section?"
|
||||
links:
|
||||
name: "Link name"
|
||||
points_to: "Points to"
|
||||
add: "Add link"
|
||||
icon: "Icon"
|
||||
name: "Name"
|
||||
value: "Link"
|
||||
add: "Add another link"
|
||||
delete: "Delete link"
|
||||
about:
|
||||
header_link_text: "About"
|
||||
@ -5097,6 +5096,9 @@ en:
|
||||
embedded_scss:
|
||||
text: "Embedded CSS"
|
||||
title: "Enter custom CSS to deliver with embedded version of comments"
|
||||
embedded_header:
|
||||
text: "Embedded Header"
|
||||
title: "Enter HTML to display above the embedded version of comments"
|
||||
color_definitions:
|
||||
text: "Color Definitions"
|
||||
title: "Enter custom color definitions (advanced users only)"
|
||||
|
||||
@ -93,8 +93,6 @@ en_GB:
|
||||
admin:
|
||||
dashboard:
|
||||
exception_error: Sorry, an error occurred whilst executing the query
|
||||
reports:
|
||||
no_data: "No data to display."
|
||||
api:
|
||||
scopes:
|
||||
descriptions:
|
||||
|
||||
@ -974,11 +974,6 @@ es:
|
||||
profile: "Perfil"
|
||||
mute: "Silenciar"
|
||||
edit: "Editar preferencias"
|
||||
download_archive:
|
||||
button_text: "Descargar todo"
|
||||
confirm: "¿Seguro de que quieres descargar tus publicaciones?"
|
||||
success: "Descarga iniciada, se te notificará por mensaje cuando el proceso se haya completado."
|
||||
rate_limit_error: "Solo se pueden descargar las publicaciones una vez al día. Inténtalo de nuevo mañana."
|
||||
new_private_message: "Nuevo mensaje"
|
||||
private_message: "Mensaje"
|
||||
private_messages: "Mensajes"
|
||||
@ -2139,8 +2134,6 @@ es:
|
||||
topic_template_not_modified: "Añade detalles y especificaciones a tu tema editando la plantilla de tema."
|
||||
save_edit: "Guardar edición"
|
||||
overwrite_edit: "Sobrescribir edición"
|
||||
reply_original: "Responder en el tema original"
|
||||
reply_here: "Responder aquí"
|
||||
reply: "Responder"
|
||||
cancel: "Cancelar"
|
||||
create_topic: "Crear tema"
|
||||
@ -2712,8 +2705,6 @@ es:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Explorar todas las categorías</a>, <a href='%{basePath}/latest'>ver los temas más recientes</a> o ver la parte superior:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Explorar todas las etiquetas</a> o <a href='%{basePath}/latest'>ver los temas más recientes</a>."
|
||||
suggest_create_topic: '¿Listo para <a href>iniciar una nueva conversación?</a>'
|
||||
jump_reply_up: saltar a la primera respuesta
|
||||
jump_reply_down: saltar a la última respuesta
|
||||
deleted: "El tema ha sido eliminado"
|
||||
slow_mode_update:
|
||||
title: "Modo lento"
|
||||
@ -3078,9 +3069,6 @@ es:
|
||||
collapse: "contraer"
|
||||
sr_collapse_replies: "Contraer respuestas inscrustadas"
|
||||
sr_date: "Fecha de publicación"
|
||||
sr_expand_replies:
|
||||
one: "Esta publicación tiene %{count} respuesta. Haz clic para expandir"
|
||||
other: "Esta publicación tiene %{count} respuestas. Haz clic para expandir"
|
||||
expand_collapse: "expandir/contraer"
|
||||
sr_below_embedded_posts_description: "respuestas de la publicación n.º %{post_number}"
|
||||
sr_embedded_reply_description: "respuesta de @%{username} a la publicación n.º %{post_number}"
|
||||
@ -3936,13 +3924,11 @@ es:
|
||||
pause_notifications:
|
||||
title: "Pausar notificaciones para..."
|
||||
label: "Pausar notificaciones"
|
||||
remaining: "%{remaining} restante"
|
||||
options:
|
||||
half_hour: "30 minutos"
|
||||
one_hour: "1 hora"
|
||||
two_hours: "2 horas"
|
||||
tomorrow: "Hasta mañana"
|
||||
custom: "Personalizado"
|
||||
set_schedule: "Establecer un horario de notificaciones"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3992,6 +3978,9 @@ es:
|
||||
all_categories: "Todas las categorías"
|
||||
all_tags: "Todas las etiquetas"
|
||||
sections:
|
||||
custom:
|
||||
save: "Guardar"
|
||||
delete: "Eliminar"
|
||||
about:
|
||||
header_link_text: "Acerca de"
|
||||
messages:
|
||||
@ -5181,7 +5170,6 @@ es:
|
||||
show_admin_profile: "Administrador"
|
||||
manage_user: "Administrar usuario"
|
||||
show_public_profile: "Ver perfil público"
|
||||
impersonate: "Suplantar"
|
||||
action_logs: "Registros de acciones"
|
||||
ip_lookup: "Búsqueda de IP"
|
||||
log_out: "Cerrar sesión"
|
||||
|
||||
@ -711,11 +711,6 @@ et:
|
||||
profile: "Profiil"
|
||||
mute: "Vaigista"
|
||||
edit: "Muuda Eelistusi"
|
||||
download_archive:
|
||||
button_text: "Laadi kõik alla"
|
||||
confirm: "Oled kindel, et soovid enda postitused alla laadida?"
|
||||
success: "Allalaadimine käivitatud. Protsessi lõppemisel saadetakse Sulle teade."
|
||||
rate_limit_error: "Postitusi saab alla laadida üks kord ööpäevas. Palun proovi homme uuesti."
|
||||
new_private_message: "Uus sõnum"
|
||||
private_message: "Sõnum"
|
||||
private_messages: "Sõnumid"
|
||||
@ -948,7 +943,6 @@ et:
|
||||
primary: "Peamine e-post"
|
||||
secondary: "Teine e-post"
|
||||
primary_label: "primaarne"
|
||||
resent_label: "meil saadetud"
|
||||
update_email: "Muuda meiliaadressi"
|
||||
no_secondary: "Teist e-posti pole"
|
||||
instructions: "Ei näidata avalikult."
|
||||
@ -1359,8 +1353,6 @@ et:
|
||||
category_missing: "Pead valima foorumi"
|
||||
save_edit: "Salvesta muudatused"
|
||||
overwrite_edit: "Kirjuta muutmine üle"
|
||||
reply_original: "Vasta algsesse teemasse"
|
||||
reply_here: "Vasta siin"
|
||||
reply: "Vasta"
|
||||
cancel: "Tühista"
|
||||
create_topic: "Loo teema"
|
||||
@ -1572,11 +1564,9 @@ et:
|
||||
dismiss_new: "Ignoreeri uusi"
|
||||
toggle: "lülita teemade massiline ära märkimine ümber"
|
||||
actions: "Masstoimingud"
|
||||
change_category: "Määra kategooria..."
|
||||
close_topics: "Sulge Teemad"
|
||||
archive_topics: "Arhiveeri Teemad"
|
||||
move_messages_to_inbox: "Liiguta sisendkausta"
|
||||
notification_level: "Teavitus..."
|
||||
change_notification_level: "Muuda teavituste taset"
|
||||
choose_new_category: "Vali teemadele uus foorum:"
|
||||
selected:
|
||||
@ -1660,8 +1650,6 @@ et:
|
||||
options: "Teema Suvandid"
|
||||
show_links: "näita viiteid selles teemas"
|
||||
unread_indicator: "Ükski liige pole veel selle teema viimast postitust lugenud."
|
||||
jump_reply_up: hüppa varasema vastuse juurde
|
||||
jump_reply_down: hüppa hilisema vastuse juurde
|
||||
deleted: "See teema on kustutatud"
|
||||
slow_mode_update:
|
||||
title: "Aeglane režiim"
|
||||
@ -1774,7 +1762,6 @@ et:
|
||||
unarchive: "Taasta teema arhiivist"
|
||||
archive: "Arhiveeri teema"
|
||||
reset_read: "Nulli andmed teema lugemise kohta"
|
||||
make_public: "Loo avalik teema..."
|
||||
make_private: "Loo isiklik sõnum"
|
||||
feature:
|
||||
pin: "Tõsta teema esile"
|
||||
@ -2013,8 +2000,6 @@ et:
|
||||
revert_to_regular: "Eemalda meeskonna värv"
|
||||
rebake: "Rekonstrueeri HTML"
|
||||
unhide: "Too nähtavale"
|
||||
change_owner: "Omanikuvahetus..."
|
||||
grant_badge: "Anna märgis..."
|
||||
lock_post: "Lukusta postitus"
|
||||
delete_topic: "kustuta teema"
|
||||
actions:
|
||||
@ -2191,7 +2176,6 @@ et:
|
||||
flagging:
|
||||
title: "Täname, et aitad meie kogukonna viisakust säilitada!"
|
||||
action: "Tähista postitus"
|
||||
take_action: "Tegutse..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Tegutse"
|
||||
@ -2491,7 +2475,6 @@ et:
|
||||
save: "Salvesta"
|
||||
delete: "Kustuta"
|
||||
confirm_delete: "Oled kindel, et soovid selle siltide grupi kustutada?"
|
||||
parent_tag_placeholder: "Valikuline"
|
||||
topics:
|
||||
none:
|
||||
unread: "Sul ei ole lugemata teemasid."
|
||||
@ -2512,12 +2495,10 @@ et:
|
||||
safe_mode:
|
||||
enabled: "Kaitstud režiim on aktiivne, väljumiseks sulge see brauseri aken."
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} jäänud"
|
||||
options:
|
||||
half_hour: "30 minutit"
|
||||
one_hour: "1 tund"
|
||||
two_hours: "2 tundi"
|
||||
custom: "Individuaalne"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "uus kasutaja"
|
||||
@ -2535,6 +2516,9 @@ et:
|
||||
more: "Veel"
|
||||
all_categories: "Kõik foorumid"
|
||||
sections:
|
||||
custom:
|
||||
save: "Salvesta"
|
||||
delete: "Kustuta"
|
||||
about:
|
||||
header_link_text: "Teave"
|
||||
messages:
|
||||
@ -2594,7 +2578,6 @@ et:
|
||||
latest_version: "Viimased"
|
||||
new_features:
|
||||
dismiss: "Ignoreeri"
|
||||
learn_more: "Uuri veel"
|
||||
last_checked: "Viimati kontrollitud"
|
||||
refresh_problems: "Värskenda"
|
||||
no_problems: "Probleeme ei tuvastatud."
|
||||
@ -2691,7 +2674,6 @@ et:
|
||||
user: "Kasutaja"
|
||||
title: "API"
|
||||
created: Loodud
|
||||
never_used: (mitte kunagi)
|
||||
generate: "Genereeri"
|
||||
revoke: "Tühista "
|
||||
all_users: "Kõik kasutajad"
|
||||
@ -3213,7 +3195,6 @@ et:
|
||||
staged: "Ettevalmistamisel?"
|
||||
show_admin_profile: "Admin"
|
||||
show_public_profile: "Näita avalikku profiili"
|
||||
impersonate: "Kehasta"
|
||||
action_logs: "Toimingute logi"
|
||||
ip_lookup: "IP otsimine"
|
||||
log_out: "Logi välja"
|
||||
|
||||
@ -912,11 +912,6 @@ fa_IR:
|
||||
profile: "نمایه"
|
||||
mute: "بیصدا"
|
||||
edit: "ویرایش تنظیمات"
|
||||
download_archive:
|
||||
button_text: "دانلود همه"
|
||||
confirm: "آیا مطمئنید که میخواهید نوشتههایتان را دانلود کنید؟"
|
||||
success: "شروع فرایند دانلود، وقتی این فرایند تکمیل شود به شما از طریق پیام، اطلاع رسانی خواهد شد."
|
||||
rate_limit_error: "نوشتهها را می توانید فقط یک بار در روز میتوانید دانلود کنید. لطفا فردا دوباره امتحان کنید."
|
||||
new_private_message: "پیام جدید"
|
||||
private_message: "پیام"
|
||||
private_messages: "پیامها"
|
||||
@ -1430,7 +1425,6 @@ fa_IR:
|
||||
edit_title: "ویرایش دعوتنامه"
|
||||
instructions: "این لینک را برای ارائه دسترسی فوری به سایت٬ به اشتراک بگذارید:"
|
||||
copy_link: "کپی پیوند"
|
||||
expires_in_time: "در %{time} منقضی می شود"
|
||||
expired_at_time: "منقضی شده در %{time}"
|
||||
show_advanced: "نمایش تنظیمات پیشرفته"
|
||||
hide_advanced: "پنهان کردن تنظیمات پیشرفته"
|
||||
@ -1893,8 +1887,6 @@ fa_IR:
|
||||
category_missing: "باید یک دستهبندی انتخاب کنید"
|
||||
save_edit: "ذخیره ویرایش"
|
||||
overwrite_edit: "بازنویسی ویرایش"
|
||||
reply_original: "پاسخ دادن در موضوع اصلی"
|
||||
reply_here: "در اینجا پاسخ دهید"
|
||||
reply: "پاسخ"
|
||||
cancel: "لغو کردن"
|
||||
create_topic: "ایجاد موضوع"
|
||||
@ -2253,7 +2245,6 @@ fa_IR:
|
||||
dismiss_new: "بستن جدید"
|
||||
toggle: "تغییر وضعیت انتخاب گروهی موضوعات"
|
||||
actions: "عملیات گروهی"
|
||||
change_category: "تنظیم دستهبندی..."
|
||||
close_topics: "بستن موضوعات"
|
||||
archive_topics: "بایگانی موضوعات"
|
||||
move_messages_to_inbox: "انتقال به صندوق دریافت"
|
||||
@ -2344,8 +2335,6 @@ fa_IR:
|
||||
read_more: "میخواهید بیشتر بخوانید؟ <a href='%{categoryLink}'>همه دستهبندیها را مرور کنید</a> یا <a href='%{latestLink}'>آخرین موضوعات را مشاهده کنید</a>."
|
||||
unread_indicator: "هیچ کاربری آخرین فرستهٔ این مبحث را نخوانده است."
|
||||
suggest_create_topic: برای <a href>شروع یک موضوع جدید آمادهاید؟</a>
|
||||
jump_reply_up: رفتن به جدید ترین پاسخ
|
||||
jump_reply_down: رفتن به پاسخ بعدی
|
||||
deleted: "موضوع پاک شده است"
|
||||
slow_mode_update:
|
||||
title: "حالت آهسته"
|
||||
@ -2476,7 +2465,6 @@ fa_IR:
|
||||
unarchive: "موضوع بایگانی نشده"
|
||||
archive: "بایگانی کردن موضوع"
|
||||
reset_read: "تنظیم مجدد خواندن داده ها"
|
||||
make_public: "ایجاد موضوع عمومی..."
|
||||
make_private: "به پیام تبدیل کن"
|
||||
reset_bump_date: "تنظیم مجدد خواندن داده ها"
|
||||
feature:
|
||||
@ -2642,6 +2630,7 @@ fa_IR:
|
||||
ignored: "محتوای نادیده گرفتهشد"
|
||||
wiki_last_edited_on: "آخرین ویرایش ویکی در %{dateTime} انجام شده"
|
||||
last_edited_on: "آخرین ویرایش نوشته در %{dateTime} انجام شده"
|
||||
edit_history: "تاریخچه ویرایش نوشته"
|
||||
reply_as_new_topic: "پاسخگویی به عنوان یک موضوع لینک شده"
|
||||
reply_as_new_private_message: "پاسخ به عنوان پیام جدید به همین دریافت کنندگان"
|
||||
continue_discussion: "ادامه دادن بحث از %{postLink}:"
|
||||
@ -2650,6 +2639,9 @@ fa_IR:
|
||||
show_hidden: "دیدن محتوای نادیده گرفتهشد"
|
||||
collapse: "جمع کردن"
|
||||
sr_date: "تاریخ ارسال"
|
||||
sr_expand_replies:
|
||||
one: "این نوشته %{count} پاسخ دارد"
|
||||
other: "این نوشته %{count} پاسخ دارد"
|
||||
expand_collapse: "باز کردن/بستن"
|
||||
locked: "یکی از دستاندرکاران انجمن این پست را جهت جلوگیری از ویرایش قفل کرده است"
|
||||
gap:
|
||||
@ -2715,8 +2707,6 @@ fa_IR:
|
||||
revert_to_regular: "حذف رنگ همکاران"
|
||||
rebake: "ساخت مجدد HTML"
|
||||
unhide: "آشکار کردن"
|
||||
change_owner: "تغییر مالکیت..."
|
||||
grant_badge: "اعطای نشان..."
|
||||
lock_post: "قفل کردن پست"
|
||||
lock_post_description: "ممانعت از ویرایش پست توسط فرستنده"
|
||||
unlock_post: "بازکردن پست"
|
||||
@ -2727,8 +2717,6 @@ fa_IR:
|
||||
delete_topic_confirm_modal_no: "خیر، این موضوع را نگه دار"
|
||||
delete_topic_error: "خطایی در هنگام حذف این موضوع رخ داده است."
|
||||
delete_topic: "حذف موضوع"
|
||||
add_post_notice: "اطلاعیه کارکنان را اضافه کنید..."
|
||||
change_post_notice: "تغییر اطلاعیه همکاران..."
|
||||
delete_post_notice: "حذف اطلاعیه همکاران"
|
||||
remove_timer: "حذف زمانسنج"
|
||||
actions:
|
||||
@ -2928,12 +2916,9 @@ fa_IR:
|
||||
moderation: "معتدل"
|
||||
appearance: "ظاهر"
|
||||
email: "ایمیل"
|
||||
list_filters:
|
||||
all: "همه موضوعات"
|
||||
flagging:
|
||||
title: "تشکر برای کمک به نگه داشتن جامعه ما بصورت مدنی !"
|
||||
action: "پرچمگذاری نوشته"
|
||||
take_action: "اقدام..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "اقدام"
|
||||
@ -3060,9 +3045,6 @@ fa_IR:
|
||||
lower_title_with_count:
|
||||
one: "%{count} خوانده نشده"
|
||||
other: "%{count} خوانده نشده"
|
||||
unseen:
|
||||
title: "دیده نشده"
|
||||
lower_title: "دیده نشده"
|
||||
new:
|
||||
lower_title_with_count:
|
||||
one: "%{count} تازه"
|
||||
@ -3304,11 +3286,9 @@ fa_IR:
|
||||
everyone_can_use: "برچسبها میتوانندتوسط همه استفاده شوند"
|
||||
usable_only_by_groups: "برچسب ها برای همه قابل مشاهده است، اما فقط گروه های زیر می توانند از آنها استفاده کنند"
|
||||
visible_only_to_groups: "برچسب ها فقط برای گروه های زیر قابل مشاهده است"
|
||||
parent_tag_placeholder: "اختیاری"
|
||||
topics:
|
||||
none:
|
||||
unread: "شما موضوع خوانده نشدهای ندارید."
|
||||
unseen: "شما هیچ موضوع دیده نشدهای ندارید."
|
||||
new: "شما موضوع جدیدی ندارید."
|
||||
read: "شما هیچ موضوعی را نخواندهاید."
|
||||
posted: "شما هیچ نوشتهای در موضوعات ندارید."
|
||||
@ -3328,13 +3308,11 @@ fa_IR:
|
||||
pause_notifications:
|
||||
title: "مکث آگاهسازیها برای..."
|
||||
label: "مکث کردن آگاهسازیها"
|
||||
remaining: "%{remaining} باقیمانده"
|
||||
options:
|
||||
half_hour: "۳۰ دقیقه"
|
||||
one_hour: "۱ ساعت"
|
||||
two_hours: "۲ ساعت"
|
||||
tomorrow: "تا فردا"
|
||||
custom: "سفارشی"
|
||||
set_schedule: "تنظیم زمانبندی آگاهسازی"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3363,6 +3341,17 @@ fa_IR:
|
||||
all_categories: "همهی دستهبندیها"
|
||||
all_tags: "همه برچسبها"
|
||||
sections:
|
||||
custom:
|
||||
add: "افزودن بخش سفارشی"
|
||||
edit: "ویرایش بخش سفارشی"
|
||||
name: "عنوان بخش"
|
||||
save: "ذخیره"
|
||||
delete: "حذف"
|
||||
delete_confirm: "آیا مطمئن هستید که میخواهید این بخش را حذف کنید؟"
|
||||
links:
|
||||
name: "نام پیوند"
|
||||
add: "افزودن پیوند"
|
||||
delete: "حذف پیوند"
|
||||
about:
|
||||
header_link_text: "درباره"
|
||||
messages:
|
||||
@ -3449,7 +3438,6 @@ fa_IR:
|
||||
problems_found: "چند توصیه براثاث تنظیمات فعلی سایت شما"
|
||||
new_features:
|
||||
dismiss: "نخواستیم"
|
||||
learn_more: "بیشتر بدانید"
|
||||
last_checked: " آخرین بررسی"
|
||||
refresh_problems: "تازه کردن"
|
||||
no_problems: "هیچ مشکلات پیدا نشد."
|
||||
@ -3568,7 +3556,6 @@ fa_IR:
|
||||
title: "API"
|
||||
created: ساخته شده
|
||||
updated: به روز شده
|
||||
never_used: (هرگز)
|
||||
generate: "تولید کردن"
|
||||
revoke: "ابطال"
|
||||
all_users: "همه کاربران"
|
||||
@ -3994,9 +3981,6 @@ fa_IR:
|
||||
address_placeholder: "name@example.com"
|
||||
type_placeholder: "خلاصه، ثبت نام..."
|
||||
reply_key_placeholder: "کلید پاسخ"
|
||||
moderation_history:
|
||||
actions:
|
||||
delete_topic: "مبحث حذف شده"
|
||||
logs:
|
||||
title: "گزارشها"
|
||||
action: "عمل"
|
||||
@ -4193,7 +4177,6 @@ fa_IR:
|
||||
show_admin_profile: "مدیر ارشد"
|
||||
manage_user: "مدیریت کاربر"
|
||||
show_public_profile: "نمایش نمایه عمومی"
|
||||
impersonate: "جعل هویت کردن"
|
||||
action_logs: "گزارش گار"
|
||||
ip_lookup: "بررسی IP"
|
||||
log_out: "خروج"
|
||||
|
||||
@ -171,8 +171,8 @@ fi:
|
||||
enabled: "Kiinnitetty sivuston laajuisesti %{when}"
|
||||
disabled: "Kiinnitys poistettu %{when}"
|
||||
visible:
|
||||
enabled: "Lisätty näkyville %{when}"
|
||||
disabled: "Poistettu näkyvistä %{when}"
|
||||
enabled: "Listattu %{when}"
|
||||
disabled: "Listaus peruttu %{when}"
|
||||
banner:
|
||||
enabled: "Asetettu banneriksi %{when}. Se näytetään jokaisen sivun ylälaidassa, kunnes käyttäjä kuittaa sen nähdyksi."
|
||||
disabled: "Poistettu banneri näkyvistä %{when}. Sitä ei enää näytetä jokaisen sivun ylälaidassa."
|
||||
@ -321,7 +321,7 @@ fi:
|
||||
no_timezone: 'Et ole valinnut aikavyöhykettä, joten et voi asettaa muistutuksia. Aseta se <a href="%{basePath}/my/preferences/profile">profiilisivullasi</a>.'
|
||||
invalid_custom_datetime: "Antamasi päivämäärä ja kellonaika ei kelpaa, yritä uudelleen."
|
||||
list_permission_denied: "Et voi nähdä tämän käyttäjän kirjanmerkkejä."
|
||||
no_user_bookmarks: "Kirjanmerkeissäsi ei ole mitään. Kirjanmerkitsemällä viestejä löydät ne myöhemmin helposti."
|
||||
no_user_bookmarks: "Kirjanmerkeissäsi ei ole mitään. Kirjanmerkitsemällä viestin löydät sen myöhemmin helposti."
|
||||
auto_delete_preference:
|
||||
label: "Kun sinulle on ilmoitettu"
|
||||
never: "Säilytä kirjanmerkki"
|
||||
@ -454,7 +454,7 @@ fi:
|
||||
topic: "Ketju:"
|
||||
filtered_topic: "Olet suodattanut käsiteltävän sisällön yhdestä ketjusta."
|
||||
filtered_user: "Käyttäjä"
|
||||
filtered_reviewed_by: "Käsittelijä"
|
||||
filtered_reviewed_by: "Käsittelijä:"
|
||||
show_all_topics: "näytä kaikki ketjut"
|
||||
deleted_post: "(viesti poistettu)"
|
||||
deleted_user: "(käyttäjä poistettu)"
|
||||
@ -974,11 +974,6 @@ fi:
|
||||
profile: "Profiili"
|
||||
mute: "Vaimenna"
|
||||
edit: "Muokkaa asetuksia"
|
||||
download_archive:
|
||||
button_text: "Lataa kaikki"
|
||||
confirm: "Haluatko varmasti ladata viestisi?"
|
||||
success: "Lataus aloitettu. Saat ilmoituksen yksityisviestinä, kun prosessi on valmis."
|
||||
rate_limit_error: "Viestit voi ladata kerran vuorokaudessa. Yritä huomenna uudelleen."
|
||||
new_private_message: "Uusi viesti"
|
||||
private_message: "Viesti"
|
||||
private_messages: "Viestit"
|
||||
@ -2152,8 +2147,6 @@ fi:
|
||||
topic_template_not_modified: "Lisää ketjuun tietoja ja yksityiskohtia muokkaamalla ketjun mallipohjaa."
|
||||
save_edit: "Tallenna muokkaus"
|
||||
overwrite_edit: "Korvaa muokkaus"
|
||||
reply_original: "Vastaa alkuperäiseen ketjuun"
|
||||
reply_here: "Vastaa tänne"
|
||||
reply: "Vastaa"
|
||||
cancel: "Peruuta"
|
||||
create_topic: "Aloita ketju"
|
||||
@ -2725,8 +2718,6 @@ fi:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Selaa kaikkia alueita</a>, <a href='%{basePath}/latest'>katso viimeisimmät ketjut</a> tai katso suosituimmat:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Selaa kaikkia tunnisteita</a> tai <a href='%{basePath}/latest'>katso viimeisimmät ketjut</a>."
|
||||
suggest_create_topic: Valmiina <a href>aloittamaan uuden keskustelun?</a>
|
||||
jump_reply_up: siirry aiempaan vastaukseen
|
||||
jump_reply_down: siirry myöhempään vastaukseen
|
||||
deleted: "Tämä ketju on poistettu"
|
||||
slow_mode_update:
|
||||
title: "Hidas tila"
|
||||
@ -3091,9 +3082,6 @@ fi:
|
||||
collapse: "kutista"
|
||||
sr_collapse_replies: "Kutista upotetut vastaukset"
|
||||
sr_date: "Viestin päivämäärä"
|
||||
sr_expand_replies:
|
||||
one: "Tällä viestillä on %{count} vastaus. Laajenna klikkaamalla."
|
||||
other: "Tällä viestillä on %{count} vastausta. Laajenna klikkaamalla."
|
||||
expand_collapse: "laajenna/kutista"
|
||||
sr_below_embedded_posts_description: "viestin %{post_number} vastaukset"
|
||||
sr_embedded_reply_description: "käyttäjän %{username} vastaus viestiin %{post_number}"
|
||||
@ -3949,13 +3937,11 @@ fi:
|
||||
pause_notifications:
|
||||
title: "Keskeytä ilmoitukset..."
|
||||
label: "Keskeytä ilmoitukset"
|
||||
remaining: "%{remaining} jäljellä"
|
||||
options:
|
||||
half_hour: "30 minuuttiin"
|
||||
one_hour: "1 tuntiin"
|
||||
two_hours: "2 tuntiin"
|
||||
tomorrow: "Ennen huomista"
|
||||
custom: "Mukautettu"
|
||||
set_schedule: "Aseta ilmoitusten aikataulu"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4005,6 +3991,9 @@ fi:
|
||||
all_categories: "Kaikki alueet"
|
||||
all_tags: "Kaikki tunnisteet"
|
||||
sections:
|
||||
custom:
|
||||
save: "Tallenna"
|
||||
delete: "Poista"
|
||||
about:
|
||||
header_link_text: "Tietoa"
|
||||
messages:
|
||||
@ -4912,7 +4901,7 @@ fi:
|
||||
actions:
|
||||
delete_user: "poista käyttäjä"
|
||||
change_trust_level: "muuta luottamustasoa"
|
||||
change_username: "vaihda käyttäjätunnus"
|
||||
change_username: "muuta käyttäjätunnusta"
|
||||
change_site_setting: "muuta sivuston asetusta"
|
||||
change_theme: "vaihda teema"
|
||||
delete_theme: "poista teema"
|
||||
@ -5194,7 +5183,6 @@ fi:
|
||||
show_admin_profile: "Ylläpito"
|
||||
manage_user: "Hallitse käyttäjää"
|
||||
show_public_profile: "Näytä julkinen profiili"
|
||||
impersonate: "Esiinny käyttäjänä"
|
||||
action_logs: "Toimintaloki"
|
||||
ip_lookup: "IP-haku"
|
||||
log_out: "Kirjaa ulos"
|
||||
|
||||
@ -145,37 +145,37 @@ fr:
|
||||
email: "Envoyer par e-mail"
|
||||
url: "Copier et partager l'URL"
|
||||
action_codes:
|
||||
public_topic: "A rendu ce sujet public %{when}"
|
||||
open_topic: "A converti ceci en sujet %{when}"
|
||||
private_topic: "A fAit de ce sujet un messAge direct %{when}"
|
||||
split_topic: "A scindé ce sujet %{when}"
|
||||
invited_user: "A invité %{who} %{when}"
|
||||
invited_group: "A invité %{who} %{when}"
|
||||
public_topic: "A rendu ce sujet public (%{when})"
|
||||
open_topic: "A converti ceci en sujet (%{when})"
|
||||
private_topic: "A fait de ce sujet un message direct (%{when})"
|
||||
split_topic: "A scindé ce sujet (%{when})"
|
||||
invited_user: "A invité %{who} (%{when})"
|
||||
invited_group: "A invité %{who} (%{when})"
|
||||
user_left: "%{who} a quitté cette conversation %{when}"
|
||||
removed_user: "A retiré %{who} %{when}"
|
||||
removed_group: "A retiré %{who} %{when}"
|
||||
autobumped: "Remonté automatiquement dans la liste %{when}"
|
||||
removed_user: "A retiré %{who} (%{when})"
|
||||
removed_group: "A retiré %{who} (%{when})"
|
||||
autobumped: "Remonté automatiquement dans la liste (%{when})"
|
||||
autoclosed:
|
||||
enabled: "A fermé ce sujet %{when}"
|
||||
disabled: "A ouvert ce sujet %{when}"
|
||||
enabled: "A fermé ce sujet (%{when})"
|
||||
disabled: "A ouvert ce sujet (%{when})"
|
||||
closed:
|
||||
enabled: "A fermé ce sujet %{when}"
|
||||
disabled: "A ouvert ce sujet %{when}"
|
||||
enabled: "A fermé ce sujet (%{when})"
|
||||
disabled: "A ouvert ce sujet (%{when})"
|
||||
archived:
|
||||
enabled: "A Archivé ce sujet %{when}"
|
||||
disabled: "A désArchivé ce sujet %{when}"
|
||||
enabled: "A archivé ce sujet (%{when})"
|
||||
disabled: "A désarchivé ce sujet (%{when})"
|
||||
pinned:
|
||||
enabled: "A épinglé ce sujet %{when}"
|
||||
disabled: "A désépinglé ce sujet %{when}"
|
||||
enabled: "A épinglé ce sujet (%{when})"
|
||||
disabled: "A désépinglé ce sujet (%{when})"
|
||||
pinned_globally:
|
||||
enabled: "A épinglé ce sujet globAlement %{when}"
|
||||
disabled: "A désépinglé ce sujet %{when}"
|
||||
enabled: "A épinglé ce sujet globalement (%{when})"
|
||||
disabled: "A désépinglé ce sujet (%{when})"
|
||||
visible:
|
||||
enabled: "A rendu ce sujet visible %{when}"
|
||||
disabled: "A rendu ce sujet invisible %{when}"
|
||||
enabled: "A rendu ce sujet visible (%{when})"
|
||||
disabled: "A rendu ce sujet invisible (%{when})"
|
||||
banner:
|
||||
enabled: "A mis à lA une %{when}. Il serA Affiché en hAut de chAque pAge jusqu'à ce qu'il soit ignoré pAr un utilisAteur."
|
||||
disabled: "A supprimé de lA une %{when}. Il ne serA plus Affiché en hAut de chAque pAge."
|
||||
enabled: "A mis ce sujet à la une (%{when}). Il sera affiché en haut de chaque page jusqu'à ce qu'il soit ignoré par l'utilisateur."
|
||||
disabled: "A supprimé ce sujet de la une (%{when}). Il ne sera plus affiché en haut de chaque page."
|
||||
forwarded: "A transmis l'e-mail ci-dessus"
|
||||
topic_admin_menu: "actions du sujet"
|
||||
skip_to_main_content: "Passer au contenu principal"
|
||||
@ -974,11 +974,6 @@ fr:
|
||||
profile: "Profil"
|
||||
mute: "Mettre en sourdine"
|
||||
edit: "Modifier les préférences"
|
||||
download_archive:
|
||||
button_text: "Tout télécharger"
|
||||
confirm: "Voulez-vous vraiment télécharger vos messages ?"
|
||||
success: "Le téléchargement a démarré ; vous recevrez une notification lorsqu'il sera terminé."
|
||||
rate_limit_error: "Les messages peuvent être téléchargés une fois par jour, veuillez réessayer demain."
|
||||
new_private_message: "Créer un message direct"
|
||||
private_message: "Message direct"
|
||||
private_messages: "Messages directs"
|
||||
@ -2152,8 +2147,6 @@ fr:
|
||||
topic_template_not_modified: "Veuillez ajouter des détails à votre sujet en modifiant le modèle de sujet."
|
||||
save_edit: "Enregistrer les modifications"
|
||||
overwrite_edit: "Écraser la modification"
|
||||
reply_original: "Répondre dans le sujet d'origine"
|
||||
reply_here: "Répondre ici"
|
||||
reply: "Répondre"
|
||||
cancel: "Annuler"
|
||||
create_topic: "Créer le sujet"
|
||||
@ -2270,8 +2263,8 @@ fr:
|
||||
one: "%{count} notification de nouveau message"
|
||||
other: "%{count} notifications de nouveaux messages"
|
||||
new_reviewable:
|
||||
one: "%{count} nouveau message à examiner"
|
||||
other: "%{count} nouveaux messages à examiner"
|
||||
one: "%{count} nouvel élément à examiner"
|
||||
other: "%{count} nouveaux éléments à examiner"
|
||||
title: "notifications des mentions de votre nom d'utilisateur, des réponses à vos messages et sujets, etc."
|
||||
none: "Impossible de charger les notifications pour le moment."
|
||||
empty: "Aucune notification trouvée."
|
||||
@ -2725,8 +2718,6 @@ fr:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Parcourez toutes les catégories</a>, <a href='%{basePath}/latest'>consultez les derniers sujets</a> ou consultez les principaux sujets :"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Parcourez toutes les étiquettes</a> ou <a href='%{basePath}/latest'>consultez les derniers sujets</a>."
|
||||
suggest_create_topic: Prêt à <a href>démarrer une nouvelle conversation ?</a>
|
||||
jump_reply_up: accéder aux réponses précédentes
|
||||
jump_reply_down: accéder aux réponses ultérieures
|
||||
deleted: "Ce sujet a été supprimé"
|
||||
slow_mode_update:
|
||||
title: "Mode ralenti"
|
||||
@ -3091,9 +3082,6 @@ fr:
|
||||
collapse: "réduire"
|
||||
sr_collapse_replies: "Masquer les réponses"
|
||||
sr_date: "Date de publication"
|
||||
sr_expand_replies:
|
||||
one: "Ce message a reçu %{count} réponse. Cliquez pour développer l'affichage"
|
||||
other: "Ce message a reçu %{count} réponses. Cliquez pour développer l'affichage"
|
||||
expand_collapse: "développer/réduire"
|
||||
sr_below_embedded_posts_description: "réponses à la publication #%{post_number}"
|
||||
sr_embedded_reply_description: "réponse de @%{username} au message #%{post_number}"
|
||||
@ -3949,13 +3937,11 @@ fr:
|
||||
pause_notifications:
|
||||
title: "Suspendre les notifications pour…"
|
||||
label: "Suspendre les notifications"
|
||||
remaining: "Encore %{remaining}"
|
||||
options:
|
||||
half_hour: "30 minutes"
|
||||
one_hour: "1 heure"
|
||||
two_hours: "2 heures"
|
||||
tomorrow: "Jusqu'à demain"
|
||||
custom: "Personnalisé"
|
||||
set_schedule: "Planifier les notifications"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4005,6 +3991,9 @@ fr:
|
||||
all_categories: "Toutes les catégories"
|
||||
all_tags: "Toutes les étiquettes"
|
||||
sections:
|
||||
custom:
|
||||
save: "Enregistrer"
|
||||
delete: "Supprimer"
|
||||
about:
|
||||
header_link_text: "À propos"
|
||||
messages:
|
||||
@ -4961,7 +4950,7 @@ fr:
|
||||
post_edit: "message modifié"
|
||||
post_unlocked: "message déverrouillé"
|
||||
check_personal_message: "vérifier un message direct"
|
||||
disabled_second_factor: "désactiver l'authentification à deux facteurs"
|
||||
disabled_second_factor: "désactiver la validation en deux étapes"
|
||||
topic_published: "sujet publié"
|
||||
post_approved: "message approuvé"
|
||||
post_rejected: "message rejeté"
|
||||
@ -5196,7 +5185,6 @@ fr:
|
||||
show_admin_profile: "Administration"
|
||||
manage_user: "Gérer l'utilisateur"
|
||||
show_public_profile: "Afficher le profil public"
|
||||
impersonate: "Incarner"
|
||||
action_logs: "Journaux d'actions"
|
||||
ip_lookup: "Localiser l'adresse IP"
|
||||
log_out: "Déconnecter l'utilisateur"
|
||||
@ -5220,7 +5208,7 @@ fr:
|
||||
private_topics_count: Sujets privés
|
||||
posts_read_count: Messages lus
|
||||
post_count: Messages créés
|
||||
second_factor_enabled: Authentification à deux facteurs activée
|
||||
second_factor_enabled: Validation en deux étapes activée
|
||||
topics_entered: Sujets vus
|
||||
flags_given_count: Signalements effectués
|
||||
flags_received_count: Signalements reçus
|
||||
|
||||
@ -878,11 +878,6 @@ gl:
|
||||
profile: "Perfil"
|
||||
mute: "Silenciar"
|
||||
edit: "Editar preferencias"
|
||||
download_archive:
|
||||
button_text: "Descargar todo"
|
||||
confirm: "Confirma a descarga das súas publicacións?"
|
||||
success: "Iniciouse a descarga, notificarémoslle cunha mensaxe o remate do proceso."
|
||||
rate_limit_error: "Só se poden descargar as publicacións unha vez por día. Ténteo de novo mañá."
|
||||
new_private_message: "Nova mensaxe"
|
||||
private_message: "Mensaxe"
|
||||
private_messages: "Mensaxes"
|
||||
@ -1398,7 +1393,6 @@ gl:
|
||||
edit_title: "Editar convite"
|
||||
instructions: "Compartir esta ligazón para conceder acceso a este sitio:"
|
||||
copy_link: "copiar a ligazón"
|
||||
expired_at_time: "Caduca o %{time}"
|
||||
show_advanced: "Amosar opcións avanzadas"
|
||||
hide_advanced: "Agochar opcións avanzadas"
|
||||
add_to_groups: "Engadir aos grupos"
|
||||
@ -1816,8 +1810,6 @@ gl:
|
||||
topic_template_not_modified: "Engada detalles e aspectos específicos ao tema editando o modelo de tema."
|
||||
save_edit: "Gardar a edición"
|
||||
overwrite_edit: "Sobrescribir a edición"
|
||||
reply_original: "Responder no tema orixinal"
|
||||
reply_here: "Responder aquí"
|
||||
reply: "Responder"
|
||||
cancel: "Cancelar"
|
||||
create_topic: "Crear tema"
|
||||
@ -2127,11 +2119,9 @@ gl:
|
||||
dismiss_new: "Desbotar novas"
|
||||
toggle: "cambiar a selección en bloque dos temas"
|
||||
actions: "Accións en bloque"
|
||||
change_category: "Estabelecer categoría..."
|
||||
close_topics: "Pechar temas"
|
||||
archive_topics: "Arquivar temas"
|
||||
move_messages_to_inbox: "Mover á caixa de entrada"
|
||||
notification_level: "Notificacións..."
|
||||
change_notification_level: "Cambiar o nivel de notificacións"
|
||||
choose_new_category: "Seleccionar a nova categoría dos temas:"
|
||||
selected:
|
||||
@ -2218,8 +2208,6 @@ gl:
|
||||
options: "Opcións de temas"
|
||||
show_links: "amosar as ligazóns a este tema"
|
||||
unread_indicator: "Ningún membro leu aínda a última publicación neste tema."
|
||||
jump_reply_up: ir a unha resposta anterior
|
||||
jump_reply_down: ir a unha resposta posterior
|
||||
deleted: "Eliminouse o tema"
|
||||
slow_mode_update:
|
||||
title: "Modo lento"
|
||||
@ -2355,14 +2343,12 @@ gl:
|
||||
open: "Abrir tema"
|
||||
close: "Pechar tema"
|
||||
multi_select: "Seleccionar publicacións…"
|
||||
slow_mode: "Estabelecer modo lento..."
|
||||
timed_update: "Estabelecer temporizador do tema..."
|
||||
pin: "Fixar tema…"
|
||||
unpin: "Desprender tema…"
|
||||
unarchive: "Desarquivar tema"
|
||||
archive: "Arquivar tema"
|
||||
reset_read: "Restabelecer datos de lecturas"
|
||||
make_public: "Facer público o tema..."
|
||||
make_private: "Facer privada a mensaxe"
|
||||
reset_bump_date: "Restabelecer data de promoción"
|
||||
feature:
|
||||
@ -2645,8 +2631,6 @@ gl:
|
||||
rebake: "Reconstruír HTML"
|
||||
publish_page: "Publicación da páxina"
|
||||
unhide: "Non agochar"
|
||||
change_owner: "Cambiar propietario..."
|
||||
grant_badge: "Conceder insignia..."
|
||||
lock_post: "Bloquear publicación"
|
||||
lock_post_description: "evitar que o autor edite esta publicación"
|
||||
unlock_post: "Desbloquear a publicación"
|
||||
@ -2660,8 +2644,6 @@ gl:
|
||||
delete_topic_confirm_modal_no: "Non, manter este tema"
|
||||
delete_topic_error: "Produciuse un erro ao eliminar este tema"
|
||||
delete_topic: "eliminar tema"
|
||||
add_post_notice: "Engadir aviso do equipo..."
|
||||
change_post_notice: "Cambiar o aviso do equipo..."
|
||||
delete_post_notice: "Eliminar o aviso do equipo"
|
||||
remove_timer: "retirar o temporizador"
|
||||
edit_timer: "editar temporizador"
|
||||
@ -3293,7 +3275,6 @@ gl:
|
||||
everyone_can_use: "Todos poden usar as etiquetas"
|
||||
usable_only_by_groups: "As etiquetas son visíbeis para todos, pero só os seguintes grupos poden usalas"
|
||||
visible_only_to_groups: "As etiquetas só son visíbeis para os seguintes grupos"
|
||||
parent_tag_placeholder: "Opcional"
|
||||
topics:
|
||||
none:
|
||||
unread: "Non ten temas sen ler."
|
||||
@ -3320,13 +3301,11 @@ gl:
|
||||
enabled: "O modo seguro está activado; para saír do modo seguro peche esta xanela do navegador"
|
||||
image_removed: "(imaxe retirada)"
|
||||
pause_notifications:
|
||||
remaining: "queda %{remaining}"
|
||||
options:
|
||||
half_hour: "30 minutos"
|
||||
one_hour: "1 hora"
|
||||
two_hours: "2 horas"
|
||||
tomorrow: "Ata mañá"
|
||||
custom: "Personalizado"
|
||||
set_schedule: "Estabelecer un calendario de notificacións"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3345,6 +3324,9 @@ gl:
|
||||
more: "Máis"
|
||||
all_categories: "Todas as categorías"
|
||||
sections:
|
||||
custom:
|
||||
save: "Gardar"
|
||||
delete: "Eliminar"
|
||||
about:
|
||||
header_link_text: "Verbo de"
|
||||
messages:
|
||||
@ -3370,8 +3352,6 @@ gl:
|
||||
content: "Administración"
|
||||
badges:
|
||||
content: "Insignias"
|
||||
everything:
|
||||
content: "Todo"
|
||||
faq:
|
||||
content: "PMF"
|
||||
groups:
|
||||
@ -3382,7 +3362,6 @@ gl:
|
||||
content: "As miñas publicacións"
|
||||
review:
|
||||
content: "Revisar"
|
||||
until: "Ata:"
|
||||
admin_js:
|
||||
type_to_filter: "escriba para filtrar..."
|
||||
admin:
|
||||
@ -4405,7 +4384,6 @@ gl:
|
||||
staged: "Transitorio?"
|
||||
show_admin_profile: "Administración"
|
||||
show_public_profile: "Amosar o perfil público"
|
||||
impersonate: "Suplantar"
|
||||
action_logs: "Rexistros de accións"
|
||||
ip_lookup: "Busca de IP"
|
||||
log_out: "Saír da sesión"
|
||||
|
||||
@ -1092,10 +1092,12 @@ he:
|
||||
mute: "השתקה"
|
||||
edit: "עריכת העדפות"
|
||||
download_archive:
|
||||
button_text: "להוריד הכול"
|
||||
confirm: "להוריד את הפוסטים שלך?"
|
||||
success: "ההורדה החלה, תישלח אליך הודעה עם סיום התהליך."
|
||||
rate_limit_error: "ניתן להוריד פוסטים פעם אחת ביום, נא לנסות שוב מחר."
|
||||
title: "ייצוא הנתונים שלך"
|
||||
description: "הורדת ארכיון של פעילות והעדפות החשבון שלך."
|
||||
button_text: "בקשת ארכיון"
|
||||
confirm: "להוריד ארכיון של פעילות והעדפות החשבון שלך?"
|
||||
success: "התחלנו לאסוף את הארכיון שלך, תישלח הודעה כשהתהליך יסתיים."
|
||||
rate_limit_error: "ניתן להוריד ארכיוני חשבון פעם ביום, נא לנסות שוב מחר."
|
||||
new_private_message: "הודעה חדשה"
|
||||
private_message: "הודעה"
|
||||
private_messages: "הודעות"
|
||||
@ -2246,8 +2248,6 @@ he:
|
||||
topic_template_not_modified: "נא להוסיף פרטים ותיאורים מדויקים לנושא שלך על ידי עריכת תבנית הנושא."
|
||||
save_edit: "שמירת עריכה"
|
||||
overwrite_edit: "שכתוב על עריכה"
|
||||
reply_original: "תגובה לנושא המקורי"
|
||||
reply_here: "תגובה כאן"
|
||||
reply: "תגובה"
|
||||
cancel: "ביטול"
|
||||
create_topic: "יצירת נושא"
|
||||
@ -2817,8 +2817,8 @@ he:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>עיון בכל הקטגוריות</a>, <a href='%{basePath}/latest'>הצגת הנושאים העדכניים ביותר</a> או צפייה במובילים:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>עיון בכל התגיות</a> או <a href='%{basePath}/latest'>הצגת הנושאים העדכניים ביותר</a>."
|
||||
suggest_create_topic: מעניין אותך <a href>לפתוח בדיון חדש?</a>
|
||||
jump_reply_up: קפיצה לתגובה קודמת
|
||||
jump_reply_down: קפיצה לתגובה מאוחרת
|
||||
jump_reply: "קפיצה למיקום המקורי של הפוסט"
|
||||
jump_reply_aria: "קפיצה לפוסט של @%{username} במיקומו המקורי"
|
||||
deleted: "הנושא הזה נמחק"
|
||||
slow_mode_update:
|
||||
title: "מצב אטי"
|
||||
@ -3203,6 +3203,7 @@ he:
|
||||
ignored: "תוכן בהתעלמות"
|
||||
wiki_last_edited_on: "הוויקי נערך לאחרונה ב־%{dateTime}"
|
||||
last_edited_on: "הפוסט נערך לאחרונה ב־%{dateTime}"
|
||||
edit_history: "היסטוריית העריכה של הפוסט"
|
||||
reply_as_new_topic: "תגובה כנושא מקושר"
|
||||
reply_as_new_private_message: "תגובה כהודעה חדשה לאותם נמענים"
|
||||
continue_discussion: "ממשיך את הדיון מ %{postLink}:"
|
||||
@ -3214,10 +3215,10 @@ he:
|
||||
sr_collapse_replies: "צמצום תשובות מוטמעות"
|
||||
sr_date: "תאריך פרסום"
|
||||
sr_expand_replies:
|
||||
one: "לפוסט הזה יש תגובה %{count}. יורחב בלחיצה"
|
||||
two: "לפוסט הזה יש %{count} תגובות. יורחב בלחיצה"
|
||||
many: "לפוסט הזה יש %{count} תגובות. יורחב בלחיצה"
|
||||
other: "לפוסט הזה יש %{count} תגובות. יורחב בלחיצה"
|
||||
one: "לפוסט הזה יש תגובה אחת"
|
||||
two: "לפוסט הזה יש %{count} תגובות"
|
||||
many: "לפוסט הזה יש %{count} תגובות"
|
||||
other: "לפוסט הזה יש %{count} תגובות"
|
||||
expand_collapse: "הרחב/צמצם"
|
||||
sr_below_embedded_posts_description: "תגובות לפוסט מס׳ %{post_number}"
|
||||
sr_embedded_reply_description: "תגובה מאת @%{username} לפוסט %{post_number}"
|
||||
@ -4170,13 +4171,11 @@ he:
|
||||
pause_notifications:
|
||||
title: "השהיית התראות למשך…"
|
||||
label: "השהיית התראות"
|
||||
remaining: "%{remaining} נותרו"
|
||||
options:
|
||||
half_hour: "חצי שעה"
|
||||
one_hour: "שעה"
|
||||
two_hours: "שעתיים"
|
||||
tomorrow: "עד מחר"
|
||||
custom: "מותאם"
|
||||
set_schedule: "הגדרת תזמון התראות"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4230,6 +4229,9 @@ he:
|
||||
all_categories: "כל הקטגוריות"
|
||||
all_tags: "כל התגיות"
|
||||
sections:
|
||||
custom:
|
||||
save: "שמירה"
|
||||
delete: "מחיקה"
|
||||
about:
|
||||
header_link_text: "אודות"
|
||||
messages:
|
||||
@ -5445,7 +5447,6 @@ he:
|
||||
show_admin_profile: "מנהל ראשי"
|
||||
manage_user: "ניהול משתמש"
|
||||
show_public_profile: "הצג פרופיל פומבי"
|
||||
impersonate: "התחזה"
|
||||
action_logs: "יומני פעולות"
|
||||
ip_lookup: "חיפוש IP"
|
||||
log_out: "יציאה"
|
||||
|
||||
@ -1031,11 +1031,6 @@ hr:
|
||||
profile: "Profil"
|
||||
mute: "Utišaj"
|
||||
edit: "Uredi postavke"
|
||||
download_archive:
|
||||
button_text: "Preuzmi sve"
|
||||
confirm: "Želite li preuzeti objave?"
|
||||
success: "Preuzimanje započeto, biti ćete obaviješteni porukom kada proces bude završen."
|
||||
rate_limit_error: "Objave mogu biti preuzimane jednom na dan, molimo pokušajte sutra."
|
||||
new_private_message: "Nova poruka"
|
||||
private_message: "Poruka"
|
||||
private_messages: "Poruke"
|
||||
@ -2247,8 +2242,6 @@ hr:
|
||||
topic_template_not_modified: "Uređivanjem predloška teme dodajte detalje i pojedinosti svojoj temi."
|
||||
save_edit: "Spremi izmjenu"
|
||||
overwrite_edit: "Prebriši Uređivanje"
|
||||
reply_original: "Odgovori na originalnu temu"
|
||||
reply_here: "Odgovori ovdje"
|
||||
reply: "Odgovori"
|
||||
cancel: "Odustani"
|
||||
create_topic: "Pokreni temu"
|
||||
@ -2857,8 +2850,6 @@ hr:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Pregledajte sve kategorije</a>, <a href='%{basePath}/latest'>pogledajte najnovije teme</a> ili pogledajte vrh:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Pregledajte sve oznake</a> ili <a href='%{basePath}/latest'>pogledajte najnovije teme</a>."
|
||||
suggest_create_topic: Spremni za <a href>započeti novi razgovor?</a>
|
||||
jump_reply_up: skoči na raniji odgovor
|
||||
jump_reply_down: skoči na kasniji odgovor
|
||||
deleted: "Tema je obrisana."
|
||||
slow_mode_update:
|
||||
title: "Usporeni način rada"
|
||||
@ -3238,10 +3229,6 @@ hr:
|
||||
collapse: "sakrij"
|
||||
sr_collapse_replies: "Sažmi ugrađene odgovore"
|
||||
sr_date: "Datum objave"
|
||||
sr_expand_replies:
|
||||
one: "Ovaj post ima %{count} odgovora. Kliknite za proširenje"
|
||||
few: "Ovaj post ima %{count} odgovora. Kliknite za proširenje"
|
||||
other: "Ovaj post ima %{count} odgovora. Kliknite za proširenje"
|
||||
expand_collapse: "proširi/sruši"
|
||||
sr_below_embedded_posts_description: "objavi #%{post_number} odgovora"
|
||||
sr_embedded_reply_description: "odgovorite sa @%{username} na objavu broj%{post_number}"
|
||||
@ -4145,13 +4132,11 @@ hr:
|
||||
pause_notifications:
|
||||
title: "Pauziraj obavijesti za..."
|
||||
label: "Pauziraj obavijesti"
|
||||
remaining: "%{remaining} preostalih"
|
||||
options:
|
||||
half_hour: "30 minuta"
|
||||
one_hour: "1 sat"
|
||||
two_hours: "2 sata"
|
||||
tomorrow: "Do sutra"
|
||||
custom: "Posebna"
|
||||
set_schedule: "Postavite raspored obavijesti"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4203,6 +4188,9 @@ hr:
|
||||
all_categories: "Sve kategorije"
|
||||
all_tags: "Sve oznake"
|
||||
sections:
|
||||
custom:
|
||||
save: "Spremi"
|
||||
delete: "Pobriši"
|
||||
about:
|
||||
header_link_text: "O nama"
|
||||
messages:
|
||||
@ -4265,6 +4253,10 @@ hr:
|
||||
content: "Moje objave"
|
||||
title: "Moja nedavna aktivnost vezana uz temu"
|
||||
title_drafts: "Moje neobjavljene skice"
|
||||
draft_count:
|
||||
one: "%{count} nacrt"
|
||||
few: "%{count} nacrti"
|
||||
other: "%{count} nacrti"
|
||||
review:
|
||||
content: "Osvrt"
|
||||
title: "Označene objave i druge stavke u redu čekanja"
|
||||
@ -5392,7 +5384,6 @@ hr:
|
||||
show_admin_profile: "Administrator"
|
||||
manage_user: "Upravljanje korisnikom"
|
||||
show_public_profile: "Pokaži javni profil"
|
||||
impersonate: "Predstavi se kao"
|
||||
action_logs: "Dnevnici akcija"
|
||||
ip_lookup: "IP pregled"
|
||||
log_out: "Odjava"
|
||||
|
||||
@ -976,10 +976,12 @@ hu:
|
||||
mute: "Némítás"
|
||||
edit: "Beállítások szerkesztése"
|
||||
download_archive:
|
||||
button_text: "Összes letöltése"
|
||||
confirm: "Biztos, hogy letölti a bejegyzéseit?"
|
||||
success: "A letöltés elkezdődött, értesítjük, amint a folyamat véget ért."
|
||||
rate_limit_error: "A bejegyzések naponta csak egyszer töltetők le, próbálja újra holnap."
|
||||
title: "Adatok exportálása"
|
||||
description: "Töltse le a fiók tevékenységének és beállításainak archívumát."
|
||||
button_text: "Archívum kérése"
|
||||
confirm: "Szeretné letölteni a fiók tevékenységének és beállításainak archívumát?"
|
||||
success: "Megkezdtük az archívum összegyűjtését, üzenetet fog kapni, ha a folyamat befejeződik."
|
||||
rate_limit_error: "A fiókarchívumokat naponta egyszer lehet letölteni, kérjük, próbálja meg holnap újra."
|
||||
new_private_message: "Új üzenet"
|
||||
private_message: "Üzenet"
|
||||
private_messages: "Üzenetek"
|
||||
@ -2051,8 +2053,6 @@ hu:
|
||||
topic_template_not_modified: "Adjon hozzá részleteket és konkrétumokat a témájához a témasablon szerkesztésével."
|
||||
save_edit: "Módosítások mentése"
|
||||
overwrite_edit: "Módosítások felülírása"
|
||||
reply_original: "Válasz az eredeti témára"
|
||||
reply_here: "Válasz ide"
|
||||
reply: "Válasz"
|
||||
cancel: "Mégse"
|
||||
create_topic: "Téma létrehozása"
|
||||
@ -2580,8 +2580,8 @@ hu:
|
||||
Első bejegyzés: %{createdAtDate}
|
||||
Elküldve: %{bumpedAtDate}
|
||||
suggest_create_topic: Készen áll, hogy <a href>új beszélgetést kezdjen?</a>
|
||||
jump_reply_up: ugrás a korábbi válaszhoz
|
||||
jump_reply_down: ugrás a későbbi válaszhoz
|
||||
jump_reply: "Ugrás a hozzászólás eredeti helyére"
|
||||
jump_reply_aria: "Ugrás @%{username} bejegyzésére az eredeti helyén"
|
||||
deleted: "A téma törölve lett"
|
||||
slow_mode_update:
|
||||
title: "Lassú mód"
|
||||
@ -2765,7 +2765,6 @@ hu:
|
||||
one: "Jelenleg %{count} kítűzött témája van. A túl sok kiemelt téma megzavarhatja az új vagy névtelen felhasználókat. Biztos, hogy kitűz egy újabb témát ebben a kategóriában?"
|
||||
other: "Jelenleg %{count} kítűzött témája van. A túl sok kiemelt téma megzavarhatja az új vagy névtelen felhasználókat. Biztos, hogy kitűz egy újabb témát ebben a kategóriában?"
|
||||
unpin_globally: "Távolítsa el ezt a témát az összes téma listájának tetejéről."
|
||||
global_pin_note: "A felhasználók saját maguk számára feloldhatják a témát."
|
||||
not_pinned_globally: "Nincsenek globálisan rögzített témák."
|
||||
already_pinned_globally:
|
||||
one: "Jelenleg globálisan kitűzött témák: <strong class='badge badge-notification unread'>%{count}</strong>"
|
||||
@ -2971,7 +2970,6 @@ hu:
|
||||
convert_to_moderator: "Stábszín hozzáadása"
|
||||
revert_to_regular: "Stábszín eltávolítása"
|
||||
rebake: "HTML újjáépítése"
|
||||
publish_page: "Oldal közzététele"
|
||||
unhide: "Elrejtés visszavonása"
|
||||
change_owner: "Tulajdonjog módosítása..."
|
||||
grant_badge: "Jelvény adományozása..."
|
||||
@ -3298,9 +3296,6 @@ hu:
|
||||
lower_title_with_count:
|
||||
one: "%{count} olvasatlan"
|
||||
other: "%{count} olvasatlan"
|
||||
unseen:
|
||||
title: "Nem látott"
|
||||
lower_title: "nem látott"
|
||||
new:
|
||||
lower_title_with_count:
|
||||
one: "%{count} új"
|
||||
@ -3496,9 +3491,6 @@ hu:
|
||||
manage_groups: "Címke csoport kezelése"
|
||||
upload: "Címkék feltöltése"
|
||||
upload_successful: "A címkék sikeresen feltöltve"
|
||||
delete_unused_confirmation_more_tags:
|
||||
one: "%{tags} és még %{count}"
|
||||
other: "%{tags} és még %{count}"
|
||||
delete_no_unused_tags: "Nincsenek fel nem használt címkék."
|
||||
tag_list_joiner: ", "
|
||||
delete_unused: "A nem használt címkék törlése"
|
||||
@ -3568,14 +3560,11 @@ hu:
|
||||
enabled: "A biztonságos mód be van kapcsolva, hogy kilépj a biztonságos módból lépj ki ebből a keresési lapból"
|
||||
image_removed: "(kép eltávolítva)"
|
||||
pause_notifications:
|
||||
label: "Értesítések szüneteltetése"
|
||||
remaining: "%{remaining} van hátra"
|
||||
options:
|
||||
half_hour: "30 percig"
|
||||
one_hour: "1 óráig"
|
||||
two_hours: "2 óráig"
|
||||
tomorrow: "Holnapig"
|
||||
custom: "Egyéni"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "új felhasználó"
|
||||
@ -3620,6 +3609,9 @@ hu:
|
||||
all_categories: "Minden kategória"
|
||||
all_tags: "Összes címke"
|
||||
sections:
|
||||
custom:
|
||||
save: "Mentés"
|
||||
delete: "Törlés"
|
||||
about:
|
||||
header_link_text: "Névjegy"
|
||||
messages:
|
||||
@ -4475,7 +4467,6 @@ hu:
|
||||
censor: "Cenzúra"
|
||||
require_approval: "Jóváhagyást igényel"
|
||||
flag: "Jelölés"
|
||||
replace: "Csere"
|
||||
silence: "Elnémítás"
|
||||
link: "Hivatkozás"
|
||||
action_descriptions:
|
||||
@ -4575,7 +4566,6 @@ hu:
|
||||
staged: "Lépcsőzetes?"
|
||||
show_admin_profile: "Adminisztrátor"
|
||||
show_public_profile: "Publikus profil megjelenítése"
|
||||
impersonate: "Megszemélyesít"
|
||||
ip_lookup: "IP-cím keresés"
|
||||
log_out: "Kijelentkezés"
|
||||
revoke_admin: "Admin jog visszavonása"
|
||||
@ -4738,9 +4728,7 @@ hu:
|
||||
dashboard: "Vezérlőpult"
|
||||
navigation: "Navigáció"
|
||||
default_categories:
|
||||
modal_description: "Szeretné visszamenőleg alkalmazni ezt a változtatást? Ez %{count} felhasználó beállítását fogja módosítani."
|
||||
modal_yes: "Igen"
|
||||
modal_no: "Nem, csak mostantól alkalmazza a változtatást"
|
||||
badges:
|
||||
title: Jelvények
|
||||
new_badge: Új jelvény
|
||||
@ -4841,7 +4829,6 @@ hu:
|
||||
action:
|
||||
label: "Szöveg cseréje…"
|
||||
modal:
|
||||
title: "Szöveg cseréje"
|
||||
categories: "Kategóriák"
|
||||
topics: "Témák"
|
||||
replace: "Csere"
|
||||
|
||||
@ -755,11 +755,6 @@ hy:
|
||||
profile: "Պրոֆիլ"
|
||||
mute: "Խլացնել"
|
||||
edit: "Խմբագրել Նախընտրությունները"
|
||||
download_archive:
|
||||
button_text: "Ներբեռնել Բոլորը"
|
||||
confirm: "Դուք համոզվա՞ծ եք, որ ցանկանում եք ներբեռնել Ձեր գրառումները:"
|
||||
success: "Ներբեռնումը սկսված է, Դուք կստանաք ծանուցում հաղորդագրության միջոցով, երբ գործընթացն ավարտվի:"
|
||||
rate_limit_error: "Գրառումները կարելի է ներբեռնել միայն օրը մեկ անգամ, խնդրում ենք կրկին փորձել վաղը:"
|
||||
new_private_message: "Նոր Հաղորդագրություն"
|
||||
private_message: "Հաղորդագրություն"
|
||||
private_messages: "Հաղորդագրություններ"
|
||||
@ -1025,7 +1020,6 @@ hy:
|
||||
primary: "Հիմնական Էլ. հասցե"
|
||||
secondary: "Երկրորդական Էլ. հասցեներ"
|
||||
primary_label: "հիմնական"
|
||||
resent_label: "էլ. նամակն ուղարկված է"
|
||||
update_email: "Փոփոխել Էլ. Հասցեն"
|
||||
no_secondary: "Երկրորդական էլ. հասցեներ չկան"
|
||||
instructions: "Երբեք չի ցուցադրվում հանրությանը"
|
||||
@ -1526,8 +1520,6 @@ hy:
|
||||
topic_template_not_modified: "Դետալները գրանցել թեմայի մեջ և խմբագրել ձևանմուշը: "
|
||||
save_edit: "Պահել Խմբագրումը"
|
||||
overwrite_edit: "Վերասահմանել Խմբագրումը"
|
||||
reply_original: "Պատասխանել Սկզբնական Թեմային"
|
||||
reply_here: "Պատասխանել Այստեղ"
|
||||
reply: "Պատասխանել"
|
||||
cancel: "Չեղարկել"
|
||||
create_topic: "Ստեղծել Թեմա"
|
||||
@ -1812,11 +1804,9 @@ hy:
|
||||
dismiss_new: "Չեղարկել Նորերը"
|
||||
toggle: "փոխանջատել թեմաների զանգվածային ընտրությունը"
|
||||
actions: "Զանգվածային Գործողությունները"
|
||||
change_category: "Ավելացնել Կատեգորիա..."
|
||||
close_topics: "Փակել Թեմաները"
|
||||
archive_topics: "Արխիվացնել Թեմաները"
|
||||
move_messages_to_inbox: "Տեղափոխել Մուտքերի արկղ"
|
||||
notification_level: "Ծանուցումներ..."
|
||||
choose_new_category: "Ընտրել նոր կատեգորիա թեմաների համար՝"
|
||||
selected:
|
||||
one: "Դուք ընտրել եք <b>%{count}</b> թեմա:"
|
||||
@ -1891,8 +1881,6 @@ hy:
|
||||
options: "Թեմաների Տարբերակները"
|
||||
show_links: "ցուցադրել այս թեմայի հղումները"
|
||||
unread_indicator: "Ոչ մի անդամ դեռ չի կարդացել այս թեմայի մինչև վերջին գրառումը: "
|
||||
jump_reply_up: ցատկել դեպի ավելի վաղ պատասխան
|
||||
jump_reply_down: ցատկել դեպի ավելի հին պատասխան
|
||||
deleted: "Թեման ջնջվել է"
|
||||
slow_mode_update:
|
||||
enable: "Միացնել"
|
||||
@ -2003,7 +1991,6 @@ hy:
|
||||
unarchive: "Ապարխիվացնել Թեման"
|
||||
archive: "Արխիվացնել Թեման"
|
||||
reset_read: "Զրոյացնել Կարդացած Տվյալները"
|
||||
make_public: "Ստեղծել Հրապարակային Թեմա..."
|
||||
make_private: "Ստեղծել Անձնական Նամակ"
|
||||
reset_bump_date: "Վերահաստատել Բարձրացման Ամսաթիվը"
|
||||
feature:
|
||||
@ -2257,8 +2244,6 @@ hy:
|
||||
rebake: "Վերակառուցել HTML-ը"
|
||||
publish_page: "Էջի Հրատարակում"
|
||||
unhide: "Դարձնել Տեսանելի"
|
||||
change_owner: "Փոխել Սեփականատիրոջը..."
|
||||
grant_badge: "Շնորհել Կրծքանշան..."
|
||||
lock_post: "Արգելափակել Գրառումը"
|
||||
lock_post_description: "արգելել հրապարակողին խմբագրել այս գրառումը"
|
||||
unlock_post: "Արգելաբացել Գրառումը"
|
||||
@ -2266,7 +2251,6 @@ hy:
|
||||
delete_topic_disallowed_modal: "Դուք թույլտվություն չունեք ջնջելու այս թեման: Եթե Դուք իսկապես ցանկանում եք, որ այն ջնջվի, դրոշակավորեք այն պատճառաբանության հետ միասին՝ մոդերատորի ուշադրությանը գրավելու համար:"
|
||||
delete_topic_disallowed: "Դուք թույլտվություն չունեք ջնջելու այս թեման"
|
||||
delete_topic: "ջնջել թեման"
|
||||
add_post_notice: "Հաղորդագրություն Մոդերատորներից..."
|
||||
remove_timer: "հեռացնել ժամաչափիչը"
|
||||
actions:
|
||||
people:
|
||||
@ -2460,7 +2444,6 @@ hy:
|
||||
flagging:
|
||||
title: "Շնորհակալ ենք, որ օգնում եք պահել մեր համայնքը քաղաքակիրթ:"
|
||||
action: "Դրոշակավորել Գրառումը"
|
||||
take_action: "Ձեռնարկել Գործողություն..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Ձեռնարկել Գործողություն"
|
||||
@ -2833,7 +2816,6 @@ hy:
|
||||
delete: "Ջնջել"
|
||||
confirm_delete: "Դուք համոզվա՞ծ եք, որ ցանկանում եք ջնջել այս թեգի խումբը:"
|
||||
everyone_can_use: "Թեգերը կարող են օգտագործվել բոլորի կողմից:"
|
||||
parent_tag_placeholder: "Ընտրովի"
|
||||
topics:
|
||||
none:
|
||||
unread: "Դուք չունեք չկարդացած թեմաներ:"
|
||||
@ -2856,10 +2838,6 @@ hy:
|
||||
dismiss: "Չեղարկել"
|
||||
safe_mode:
|
||||
enabled: "Անվտանգ ռեժիմը միացված է, փակեք բրաուզերի այս պատուհանը՝ անվտանգ ռեժիմից դուրս գալու համար:"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining}-ը մնում է"
|
||||
options:
|
||||
custom: "Մասնավոր"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "նոր օգտատեր"
|
||||
@ -2877,6 +2855,9 @@ hy:
|
||||
more: "Ավելին"
|
||||
all_categories: "Բոլոր կատեգորիաները"
|
||||
sections:
|
||||
custom:
|
||||
save: "Պահպանել"
|
||||
delete: "Ջնջել"
|
||||
about:
|
||||
header_link_text: "Մասին"
|
||||
messages:
|
||||
@ -2902,8 +2883,6 @@ hy:
|
||||
content: "Ադմին"
|
||||
badges:
|
||||
content: "Կրծքանշաններ"
|
||||
everything:
|
||||
content: "Բոլորը"
|
||||
faq:
|
||||
content: "ՀՏՀ"
|
||||
groups:
|
||||
@ -2943,7 +2922,6 @@ hy:
|
||||
problems_found: "Որոշ խորհուրդներ՝ հիմնված Ձեր կայքի ընթացիկ կարգավորումների վրա"
|
||||
new_features:
|
||||
dismiss: "Չեղարկել"
|
||||
learn_more: "Իմանալ ավելին"
|
||||
last_checked: "Վերջին ստուգումը՝ "
|
||||
refresh_problems: "Թարմացնել"
|
||||
no_problems: "Խնդիրներ չեն գտնվել:"
|
||||
@ -3840,7 +3818,6 @@ hy:
|
||||
staged: "Աստիճանավորվա՞ծ"
|
||||
show_admin_profile: "Ադմին"
|
||||
show_public_profile: "Ցուցադրել Հանրային Պրոֆիլը"
|
||||
impersonate: "Նմանակել"
|
||||
action_logs: "Գործողությունների Գրառումները"
|
||||
ip_lookup: "IP-ի Որոնում"
|
||||
log_out: "Դուրս Գրվել"
|
||||
|
||||
@ -832,9 +832,6 @@ id:
|
||||
profile: "Profil"
|
||||
mute: "Redam"
|
||||
edit: "Ubah Preferensi"
|
||||
download_archive:
|
||||
button_text: "Unduh Semua"
|
||||
confirm: "Anda yakin ingin mengunduh pos-pos Anda?"
|
||||
new_private_message: "Pesan Baru"
|
||||
private_message: "pesan"
|
||||
private_messages: "Messages"
|
||||
@ -1056,8 +1053,6 @@ id:
|
||||
title: "Surel"
|
||||
primary: "Email Utama"
|
||||
secondary: "Email Sekunder"
|
||||
primary_label: "utama"
|
||||
resent_label: "surel terkirim"
|
||||
update_email: "Ganti Alamat Surel"
|
||||
no_secondary: "Tidak ada email sekunder"
|
||||
instructions: "Jangan pernah tunjukkan ke publik."
|
||||
@ -1173,13 +1168,9 @@ id:
|
||||
time_read: "Waktu Baca"
|
||||
days_visited: "Hari Berkunjung"
|
||||
account_age_days: "Umur akun dalam hari"
|
||||
create: "Undang"
|
||||
valid_for: "Tautan undangan hanya berlaku untuk alamat surel: %{email}"
|
||||
invite_link:
|
||||
success: "Tautan undangan telah sukses dibuat!"
|
||||
invite:
|
||||
show_advanced: "Tampilkan Opsi Lanjutan"
|
||||
hide_advanced: "Sembunyikan Opsi Lanjutan"
|
||||
bulk_invite:
|
||||
error: "Maaf, file harus dalam format CSV"
|
||||
password:
|
||||
@ -1414,8 +1405,6 @@ id:
|
||||
tags_missing:
|
||||
other: "Anda harus memilih setidaknya %{count} label"
|
||||
save_edit: "Simpah Ubahan"
|
||||
reply_original: "Balas pada Topik Asal"
|
||||
reply_here: "Balas Disini"
|
||||
reply: "Balas"
|
||||
cancel: "Batal"
|
||||
create_topic: "Buat Topik"
|
||||
@ -1506,7 +1495,6 @@ id:
|
||||
title: "Cari"
|
||||
full_page_title: "Cari"
|
||||
results: "hasil"
|
||||
post_format: "#%{post_number} oleh %{username}"
|
||||
search_google_button: "Google"
|
||||
search_button: "Cari"
|
||||
categories: "Kategori"
|
||||
@ -1533,7 +1521,6 @@ id:
|
||||
select_all: "Pilih Semua"
|
||||
dismiss: "Bubar"
|
||||
move_messages_to_inbox: "Pindah ke Kotak Masuk"
|
||||
notification_level: "Pemberitahuan..."
|
||||
choose_new_tags: "Silahkan pilih tag baru untuk topik-topik ini:"
|
||||
none:
|
||||
new: "Anda tidak memiliki topik baru"
|
||||
@ -1561,16 +1548,13 @@ id:
|
||||
back_to_list: "Kembali ke Daftar Topik"
|
||||
options: "Opsi Topik"
|
||||
show_links: "tampilkan pranala dalam topik ini"
|
||||
jump_reply_up: lompat ke balasan sebelumnya
|
||||
slow_mode_update:
|
||||
enable: "Aktifkan"
|
||||
remove: "Nonaktifkan"
|
||||
topic_status_update:
|
||||
when: "Ketika:"
|
||||
time_frame_required: "Silakan pilih kerangka waktu"
|
||||
duration: "Durasi"
|
||||
progress:
|
||||
jump_prompt_to_date: "sampai saat ini"
|
||||
jump_prompt_or: "atau"
|
||||
notifications:
|
||||
reasons:
|
||||
@ -1603,7 +1587,6 @@ id:
|
||||
title: "Balas"
|
||||
share:
|
||||
help: "share link ke topik ini"
|
||||
invite_users: "Undang"
|
||||
invite_private:
|
||||
group_name: "nama grup"
|
||||
invite_reply:
|
||||
@ -1642,17 +1625,9 @@ id:
|
||||
controls:
|
||||
first: "Revisi pertama"
|
||||
bookmarks:
|
||||
create: "Buat penanda"
|
||||
edit: "Sunting penanda"
|
||||
name: "Nama"
|
||||
options: "Pilihan"
|
||||
actions:
|
||||
delete_bookmark:
|
||||
name: "Hapus penanda"
|
||||
edit_bookmark:
|
||||
name: "Sunting penanda"
|
||||
category:
|
||||
all: "Semua kategori"
|
||||
edit: "Ubah"
|
||||
settings: "Pengaturan"
|
||||
tags: "Label"
|
||||
@ -1678,7 +1653,6 @@ id:
|
||||
options:
|
||||
normal: "normal"
|
||||
ignore: "Abaikan"
|
||||
low: "Rendah"
|
||||
high: "Tinggi"
|
||||
sort_options:
|
||||
default: "asal"
|
||||
@ -1695,8 +1669,6 @@ id:
|
||||
notify_action: "Pesan"
|
||||
post_links:
|
||||
about: "perluas tautan untuk artikel ini"
|
||||
title:
|
||||
other: "%{count} lainnya"
|
||||
topic_statuses:
|
||||
warning:
|
||||
help: "Ini adalah peringatan resmi."
|
||||
@ -1761,8 +1733,6 @@ id:
|
||||
actions:
|
||||
title: "Aksi"
|
||||
badges:
|
||||
more_badges:
|
||||
other: "+%{count} lainnya"
|
||||
none: "(kosong)"
|
||||
badge_grouping:
|
||||
trust_level:
|
||||
@ -1796,7 +1766,6 @@ id:
|
||||
name_placeholder: "Nama"
|
||||
save: "Simpan"
|
||||
delete: "Hapus"
|
||||
parent_tag_placeholder: "Opsional"
|
||||
topics:
|
||||
none:
|
||||
new: "Anda tidak memiliki topik baru"
|
||||
@ -1813,8 +1782,10 @@ id:
|
||||
new_count:
|
||||
other: "%{count} baru"
|
||||
more: "Selengkapnya"
|
||||
all_categories: "Semua kategori"
|
||||
sections:
|
||||
custom:
|
||||
save: "Simpan"
|
||||
delete: "Hapus"
|
||||
about:
|
||||
header_link_text: "Tentang"
|
||||
messages:
|
||||
@ -1836,8 +1807,6 @@ id:
|
||||
content: "Tentang"
|
||||
admin:
|
||||
content: "Admin"
|
||||
everything:
|
||||
content: "Semuanya"
|
||||
faq:
|
||||
content: "FAQ"
|
||||
groups:
|
||||
@ -1846,7 +1815,6 @@ id:
|
||||
content: "Pengguna"
|
||||
review:
|
||||
content: "Ulasan"
|
||||
until: "Sampai:"
|
||||
admin_js:
|
||||
type_to_filter: "ketik untuk memfilter..."
|
||||
admin:
|
||||
@ -1865,7 +1833,6 @@ id:
|
||||
moderators: "Moderator:"
|
||||
private_messages_title: "Pesan"
|
||||
report_filter_any: "apa saja"
|
||||
disabled: Dinonaktifkan
|
||||
filter_reports: Filter laporan
|
||||
reports:
|
||||
last_7_days: "7 terakhir"
|
||||
@ -1900,7 +1867,6 @@ id:
|
||||
api:
|
||||
user: "Pengguna"
|
||||
created: Dibuat
|
||||
never_used: (tidak pernah)
|
||||
revoke: "Cabut"
|
||||
show_details: Detil
|
||||
save: Simpan
|
||||
@ -1913,7 +1879,6 @@ id:
|
||||
active: "Aktif"
|
||||
delivery_status:
|
||||
failed: "Gagal"
|
||||
disabled: "Dinonaktifkan"
|
||||
events:
|
||||
request: "Pinta"
|
||||
body: "Konten"
|
||||
@ -1994,9 +1959,6 @@ id:
|
||||
filters:
|
||||
title: "Filter"
|
||||
user_placeholder: "nama pengguna"
|
||||
moderation_history:
|
||||
actions:
|
||||
delete_topic: "Topik Dihapus"
|
||||
logs:
|
||||
title: "Log"
|
||||
action: "Aksi"
|
||||
@ -2076,8 +2038,6 @@ id:
|
||||
confirmation:
|
||||
cancel: "Batal"
|
||||
delete_and_block: "Hapus dan <b>block</b> email dan alamat IP ini"
|
||||
reset_bounce_score:
|
||||
label: "Reset"
|
||||
other_matches_list:
|
||||
username: "Nama Pengguna"
|
||||
trust_level: "Level Kepercayaan"
|
||||
@ -2103,7 +2063,6 @@ id:
|
||||
site_text:
|
||||
edit: "ubah"
|
||||
settings:
|
||||
reset: "reset"
|
||||
none: "Tak ada"
|
||||
site_settings:
|
||||
title: "Pengaturan"
|
||||
|
||||
@ -145,10 +145,10 @@ it:
|
||||
email: "Invia per email"
|
||||
url: "Copia e condividi l'URL"
|
||||
action_codes:
|
||||
public_topic: "Ha reso questo argomento pubblico %{when}"
|
||||
open_topic: "Convertito in un argomento il %{when}"
|
||||
private_topic: "Ha reso questo argomento un messaggio personale %{when}"
|
||||
split_topic: "Ha separato questo argomento %{when}"
|
||||
public_topic: "Ha reso questo argomento pubblico il %{when}"
|
||||
open_topic: "Ha convertito questo contenuto in un argomento il %{when}"
|
||||
private_topic: "Ha reso questo argomento un messaggio personale il %{when}"
|
||||
split_topic: "Ha separato questo argomento il %{when}"
|
||||
invited_user: "Ha invitato %{who} %{when}"
|
||||
invited_group: "Ha invitato %{who} %{when}"
|
||||
user_left: "%{who} ha rimosso se stesso da questo messaggio %{when}"
|
||||
@ -166,16 +166,16 @@ it:
|
||||
disabled: "Archiviazione annullata %{when}"
|
||||
pinned:
|
||||
enabled: "Appuntato %{when}"
|
||||
disabled: "Spuntato %{when}"
|
||||
disabled: "Sbloccato %{when}"
|
||||
pinned_globally:
|
||||
enabled: "Appuntato globalmente %{when}"
|
||||
disabled: "Spuntato %{when}"
|
||||
disabled: "Sbloccato %{when}"
|
||||
visible:
|
||||
enabled: "Visibile in elenco %{when}"
|
||||
disabled: "Invisibile in elenco %{when}"
|
||||
disabled: "Non visibile in elenco %{when}"
|
||||
banner:
|
||||
enabled: "Lo ha reso un banner il %{when}. Apparirà in cima ad ogni pagina finché non verrà chiuso dall'utente."
|
||||
disabled: "Ha rimosso questo banner il %{when}. Non apparirà più in cima ad ogni pagina."
|
||||
enabled: "Lo ha reso un banner il %{when}. Apparirà in cima a ogni pagina finché non verrà chiuso dall'utente."
|
||||
disabled: "Ha rimosso questo banner il %{when}. Non apparirà più in cima a ogni pagina."
|
||||
forwarded: "Ha inoltrato l'email sopra"
|
||||
topic_admin_menu: "azioni argomento"
|
||||
skip_to_main_content: "Passa al contenuto principale"
|
||||
@ -974,11 +974,6 @@ it:
|
||||
profile: "Profilo"
|
||||
mute: "Silenzia"
|
||||
edit: "Modifica opzioni"
|
||||
download_archive:
|
||||
button_text: "Scarica Tutto"
|
||||
confirm: "Vuoi scaricare i tuoi messaggi?"
|
||||
success: "Esportazione iniziata, verrai avvertito con un messaggio al termine del processo."
|
||||
rate_limit_error: "I messaggi possono essere scaricati una volta al giorno, riprova domani."
|
||||
new_private_message: "Nuovo Messaggio"
|
||||
private_message: "Messaggio"
|
||||
private_messages: "Messaggi"
|
||||
@ -1271,7 +1266,7 @@ it:
|
||||
profile: "Profilo"
|
||||
emails: "Email"
|
||||
notifications: "Notifiche"
|
||||
tracking: "Seguite"
|
||||
tracking: "Contenuto seguito"
|
||||
categories: "Categorie"
|
||||
users: "Utenti"
|
||||
tags: "Etichette"
|
||||
@ -2140,8 +2135,6 @@ it:
|
||||
topic_template_not_modified: "Aggiungi dettagli e specificità al tuo argomento modificando il modello di argomento."
|
||||
save_edit: "Salva Modifiche"
|
||||
overwrite_edit: "Sovrascrivi modifica"
|
||||
reply_original: "Rispondi all'Argomento Originale"
|
||||
reply_here: "Rispondi Qui"
|
||||
reply: "Rispondi"
|
||||
cancel: "Annulla"
|
||||
create_topic: "Crea Argomento"
|
||||
@ -2713,8 +2706,6 @@ it:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Sfoglia tutte le categorie</a>, <a href='%{basePath}/latest'>visualizza gli argomenti più recenti</a> oppure guarda dall'inizio:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Sfoglia tutte le etichette</a> o <a href='%{basePath}/latest'>visualizza gli argomenti più recenti</a>."
|
||||
suggest_create_topic: Pronto per <a href>iniziare una nuova conversazione?</a>
|
||||
jump_reply_up: passa a una risposta precedente
|
||||
jump_reply_down: passa a una risposta successiva
|
||||
deleted: "L'argomento è stato eliminato"
|
||||
slow_mode_update:
|
||||
title: "Modalità lenta"
|
||||
@ -3079,9 +3070,6 @@ it:
|
||||
collapse: "comprimi"
|
||||
sr_collapse_replies: "Comprimi risposte incorporate"
|
||||
sr_date: "Data di pubblicazione"
|
||||
sr_expand_replies:
|
||||
one: "Questo messaggio ha %{count} risposta. Clicca per espandere"
|
||||
other: "Questo messaggio ha %{count} risposte. Clicca per espandere"
|
||||
expand_collapse: "espandi/comprimi"
|
||||
sr_below_embedded_posts_description: "risposte al messaggio n°%{post_number}"
|
||||
sr_embedded_reply_description: "risposta di @%{username} al messaggio n°%{post_number}"
|
||||
@ -3937,13 +3925,11 @@ it:
|
||||
pause_notifications:
|
||||
title: "Metti in pausa le notifiche per..."
|
||||
label: "Metti in pausa le notifiche"
|
||||
remaining: "%{remaining} rimanenti"
|
||||
options:
|
||||
half_hour: "30 minuti"
|
||||
one_hour: "un'ora"
|
||||
two_hours: "due ore"
|
||||
one_hour: "1 ora"
|
||||
two_hours: "2 ore"
|
||||
tomorrow: "Fino a domani"
|
||||
custom: "Personalizzato"
|
||||
set_schedule: "Imposta una pianificazione delle notifiche"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3993,6 +3979,9 @@ it:
|
||||
all_categories: "Tutte le categorie"
|
||||
all_tags: "Tutte le etichette"
|
||||
sections:
|
||||
custom:
|
||||
save: "Salva"
|
||||
delete: "Elimina"
|
||||
about:
|
||||
header_link_text: "Informazioni"
|
||||
messages:
|
||||
@ -5183,7 +5172,6 @@ it:
|
||||
show_admin_profile: "Amministratore"
|
||||
manage_user: "Gestisci utente"
|
||||
show_public_profile: "Mostra Profilo Pubblico"
|
||||
impersonate: "Impersona utente"
|
||||
action_logs: "Log Azioni"
|
||||
ip_lookup: "Ricerca IP"
|
||||
log_out: "Disconnetti"
|
||||
|
||||
@ -118,7 +118,7 @@ ja:
|
||||
url: "URL をコピーして共有"
|
||||
action_codes:
|
||||
public_topic: "トピックを公開しました: %{when}"
|
||||
open_topic: "はこれをトピックに変換しました: %{when}"
|
||||
open_topic: "これをトピックに変換しました: %{when}"
|
||||
private_topic: "このトピックを個人メッセージにしました: %{when}"
|
||||
split_topic: "このトピックを分割しました: %{when}"
|
||||
invited_user: "%{who} を招待しました: %{when}"
|
||||
@ -126,7 +126,7 @@ ja:
|
||||
user_left: "%{who} は %{when} にこのメッセージから退出しました"
|
||||
removed_user: "%{who} を削除しました: %{when}"
|
||||
removed_group: "%{who} を削除しました: %{when}"
|
||||
autobumped: "自動的にトップに上げられました: %{when}"
|
||||
autobumped: "自動的にバンプされました: %{when}"
|
||||
autoclosed:
|
||||
enabled: "クローズされました: %{when}"
|
||||
disabled: "オープンされました: %{when}"
|
||||
@ -916,11 +916,6 @@ ja:
|
||||
profile: "プロファイル"
|
||||
mute: "ミュート"
|
||||
edit: "プロファイルを編集"
|
||||
download_archive:
|
||||
button_text: "すべてダウンロード"
|
||||
confirm: "投稿をダウンロードしてもよろしいですか?"
|
||||
success: "ダウンロードが始まりました。処理が完了するとメッセージで通知されます。"
|
||||
rate_limit_error: "投稿のダウンロードは 1 日に 1 回のみ可能です。明日再度お試しください。"
|
||||
new_private_message: "新規メッセージ"
|
||||
private_message: "メッセージ"
|
||||
private_messages: "メッセージ"
|
||||
@ -2048,8 +2043,6 @@ ja:
|
||||
topic_template_not_modified: "トピックテンプレートを編集して、トピックに詳細を追加してください。"
|
||||
save_edit: "編集内容を保存"
|
||||
overwrite_edit: "上書き編集"
|
||||
reply_original: "オリジナルトピックへ返信"
|
||||
reply_here: "ここに返信"
|
||||
reply: "返信"
|
||||
cancel: "キャンセル"
|
||||
create_topic: "トピックを作成"
|
||||
@ -2584,8 +2577,6 @@ ja:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>すべてのカテゴリを閲覧</a>するか、<a href='%{basePath}/latest'>最新のトピックを表示</a>するか、トップを見ます。"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>すべてのタグを閲覧</a>するか<a href='%{basePath}/latest'>最新のトピックを表示</a>します。"
|
||||
suggest_create_topic: <a href>新しい会話を開始しますか?</a>
|
||||
jump_reply_up: 以前の返信へジャンプ
|
||||
jump_reply_down: 以後の返信へジャンプ
|
||||
deleted: "トピックは削除されました"
|
||||
slow_mode_update:
|
||||
title: "低速モード"
|
||||
@ -2935,8 +2926,6 @@ ja:
|
||||
collapse: "折りたたむ"
|
||||
sr_collapse_replies: "埋め込まれた返信を折りたたむ"
|
||||
sr_date: "投稿日"
|
||||
sr_expand_replies:
|
||||
other: "この投稿には %{count} 件の返信があります。クリックして展開"
|
||||
expand_collapse: "展開/折りたたむ"
|
||||
sr_below_embedded_posts_description: "投稿 #%{post_number} の返信"
|
||||
sr_embedded_reply_description: "投稿 #%{post_number} に対する @%{username} からの返信"
|
||||
@ -3746,13 +3735,11 @@ ja:
|
||||
pause_notifications:
|
||||
title: "次の通知を停止する..."
|
||||
label: "通知を停止する"
|
||||
remaining: "残り %{remaining}"
|
||||
options:
|
||||
half_hour: "30 分"
|
||||
one_hour: "1時間"
|
||||
two_hours: "2時間"
|
||||
tomorrow: "明日まで"
|
||||
custom: "カスタム"
|
||||
set_schedule: "通知スケジュールを設定する"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3800,6 +3787,9 @@ ja:
|
||||
all_categories: "すべてのカテゴリ"
|
||||
all_tags: "すべてのタグ"
|
||||
sections:
|
||||
custom:
|
||||
save: "保存"
|
||||
delete: "削除"
|
||||
about:
|
||||
header_link_text: "サイト情報"
|
||||
messages:
|
||||
@ -4982,7 +4972,6 @@ ja:
|
||||
show_admin_profile: "管理者"
|
||||
manage_user: "ユーザーの管理"
|
||||
show_public_profile: "公開プロファイルを表示"
|
||||
impersonate: "代理操作"
|
||||
action_logs: "操作ログ"
|
||||
ip_lookup: "IP アドレスを検索"
|
||||
log_out: "ログアウト"
|
||||
|
||||
@ -909,11 +909,6 @@ ko:
|
||||
profile: "프로필"
|
||||
mute: "뮤트"
|
||||
edit: "환경설정 편집"
|
||||
download_archive:
|
||||
button_text: "모두 다운로드"
|
||||
confirm: "게시물을 다운로드할까요?"
|
||||
success: "다운로드가 시작되었습니다. 다운로드 과정이 완료되면 메시지로 알림이 전송됩니다."
|
||||
rate_limit_error: "게시물은 하루에 한 번만 다운로드할 수 있습니다. 내일 다시 시도하세요."
|
||||
new_private_message: "새 메시지"
|
||||
private_message: "메시지"
|
||||
private_messages: "메시지"
|
||||
@ -1796,7 +1791,6 @@ ko:
|
||||
categories_and_top_topics: "카테고리 및 주요 글"
|
||||
categories_boxes: "서브카테고리가 있는 박스"
|
||||
categories_boxes_with_topics: "추천 주제의 박스"
|
||||
subcategories_with_featured_topics: "추천 글이 포함된 하위 카테고리"
|
||||
shortcut_modifier_key:
|
||||
shift: "Shift"
|
||||
ctrl: "Ctrl"
|
||||
@ -1898,8 +1892,6 @@ ko:
|
||||
topic_template_not_modified: "주제 템플릿을 편집하여 주제에 상세 정보와 세부 사항을 추가하세요."
|
||||
save_edit: "편집 저장"
|
||||
overwrite_edit: "편집 덮어쓰기"
|
||||
reply_original: "원래 주제에 댓글 달기"
|
||||
reply_here: "여기에 댓글을 작성하세요"
|
||||
reply: "댓글 달기"
|
||||
cancel: "취소"
|
||||
create_topic: "주제 생성"
|
||||
@ -2364,8 +2356,6 @@ ko:
|
||||
read_more_in_category: "더 읽고 싶으신가요? %{categoryLink}의 다른 토픽을 살펴보거나 <a href='%{latestLink}'>최신 토픽</a>을 확인해 보세요."
|
||||
unread_indicator: "아직 이 주제의 마지막 게시물을 읽은 회원이 없습니다."
|
||||
suggest_create_topic: <a href>새 대화를 시작</a>할 준비가 되었나요?
|
||||
jump_reply_up: 이전 댓글로 이동
|
||||
jump_reply_down: 다음 댓글로 이동
|
||||
deleted: "글이 삭제되었습니다."
|
||||
slow_mode_update:
|
||||
title: "느린 모드"
|
||||
@ -3177,9 +3167,6 @@ ko:
|
||||
help: "읽지 않은 게시물을 포함한 현재 구독 또는 추적 중인 주제"
|
||||
lower_title_with_count:
|
||||
other: "%{count} unread"
|
||||
unseen:
|
||||
title: "읽지 않음"
|
||||
lower_title: "읽지 않음"
|
||||
new:
|
||||
lower_title_with_count:
|
||||
other: "%{count} new"
|
||||
@ -3491,13 +3478,11 @@ ko:
|
||||
enabled: "안전 모드가 활성화되었습니다. 안전 모드를 종료하려면 이 브라우저 창을 닫으세요."
|
||||
image_removed: "(이미지 제거됨)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} 남음"
|
||||
options:
|
||||
half_hour: "30분"
|
||||
one_hour: "1시간"
|
||||
two_hours: "2시간"
|
||||
tomorrow: "내일까지"
|
||||
custom: "사용자 정의"
|
||||
set_schedule: "알림 일정 설정"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3534,6 +3519,9 @@ ko:
|
||||
all_categories: "모든 카테고리"
|
||||
all_tags: "모든 태그"
|
||||
sections:
|
||||
custom:
|
||||
save: "저장"
|
||||
delete: "삭제하기"
|
||||
about:
|
||||
header_link_text: "소개"
|
||||
messages:
|
||||
@ -3560,7 +3548,6 @@ ko:
|
||||
content: "카테고리 추가"
|
||||
click_to_get_started: "시작하려면 여기를 클릭하십시오."
|
||||
header_link_text: "카테고리"
|
||||
configure_defaults: "기본값 구성"
|
||||
community:
|
||||
header_link_text: "커뮤니티"
|
||||
links:
|
||||
@ -3588,7 +3575,6 @@ ko:
|
||||
welcome_topic_banner:
|
||||
title: "환영 글 만들기"
|
||||
button_title: "편집 시작"
|
||||
until: "까지:"
|
||||
admin_js:
|
||||
type_to_filter: "필터링하려면 입력..."
|
||||
admin:
|
||||
@ -4665,7 +4651,6 @@ ko:
|
||||
show_admin_profile: "관리자"
|
||||
manage_user: "사용자 관리"
|
||||
show_public_profile: "공개 프로필 표시"
|
||||
impersonate: "가장"
|
||||
action_logs: "작업 로그"
|
||||
ip_lookup: "IP Lookup"
|
||||
log_out: "로그아웃"
|
||||
|
||||
@ -114,11 +114,6 @@ lt:
|
||||
few: "%{count} dienos"
|
||||
many: "%{count} dienų"
|
||||
other: "%{count} dienų"
|
||||
x_months:
|
||||
one: "%{count} mėnuo"
|
||||
few: "%{count} mėnesių"
|
||||
many: "%{count} mėnesių"
|
||||
other: "%{count} mėnesių"
|
||||
date_year: "YYYY-MM-D"
|
||||
medium_with_ago:
|
||||
x_minutes:
|
||||
@ -372,21 +367,6 @@ lt:
|
||||
confirm: "Jūs turite nebaigtą juodraštį šiai tema. Ką norėtumėte daryti su juo?"
|
||||
yes_value: "Išmesti"
|
||||
no_value: "Tęsti redagavimą"
|
||||
topic_count_categories:
|
||||
one: "Peržiūrėti %{count} naują arba atnaujintą temą"
|
||||
few: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
many: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
other: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
topic_count_latest:
|
||||
one: "Peržiūrėti %{count} naują arba atnaujintą temą"
|
||||
few: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
many: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
other: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
topic_count_unseen:
|
||||
one: "Peržiūrėti %{count} naują arba atnaujintą temą"
|
||||
few: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
many: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
other: "Peržiūrėkite %{count} naujų ar atnaujintų temų"
|
||||
topic_count_new:
|
||||
one: "Pamatyk %{count} naują temą"
|
||||
few: "Pamatyk %{count} naujas temas"
|
||||
@ -467,11 +447,6 @@ lt:
|
||||
grouped_by_topic: "Grupuojama pagal temą"
|
||||
none: "Nėra elementų, kuriuos reikia peržiūrėti."
|
||||
view_pending: "laukiama peržiūros"
|
||||
topic_has_pending:
|
||||
one: "Šioje temoje yra <b>%{count}</b> pranešimas, laukiantis patvirtinimo"
|
||||
few: "Šioje temoje yra <b>%{count}</b> pranešimų, laukiančių patvirtinimo"
|
||||
many: "Šioje temoje yra <b>%{count}</b> pranešimų, laukiančių patvirtinimo"
|
||||
other: "Šioje temoje yra <b>%{count}</b> pranešimų, laukiančių patvirtinimo"
|
||||
title: "Peržiūra"
|
||||
topic: "Tema:"
|
||||
filtered_topic: "Išfiltravote turinį, kurį galima peržiūrėti vienoje temoje."
|
||||
@ -488,22 +463,6 @@ lt:
|
||||
name: "Vardas"
|
||||
fields: "Laukai"
|
||||
reject_reason: "Priežastis"
|
||||
user_percentage:
|
||||
agreed:
|
||||
one: "%{count}% sutinka"
|
||||
few: "%{count}% sutinka"
|
||||
many: "%{count}% sutinka"
|
||||
other: "%{count}% sutinka"
|
||||
disagreed:
|
||||
one: "%{count}% nesutinka"
|
||||
few: "%{count}% nesutinka"
|
||||
many: "%{count}% nesutinka"
|
||||
other: "%{count}% nesutinka"
|
||||
ignored:
|
||||
one: "%{count}% ignoruoja"
|
||||
few: "%{count}% ignoruoja"
|
||||
many: "%{count}% ignoruoja"
|
||||
other: "%{count}% ignoruoja"
|
||||
topics:
|
||||
topic: "Tema"
|
||||
reviewable_count: "Skaičiuoti"
|
||||
@ -591,16 +550,6 @@ lt:
|
||||
title: "Kodėl atmetate šį vartotoją?"
|
||||
send_email: "Siųsti atmetimo laišką"
|
||||
relative_time_picker:
|
||||
minutes:
|
||||
one: "minutė"
|
||||
few: "minutės"
|
||||
many: "minutės"
|
||||
other: "minutės"
|
||||
hours:
|
||||
one: "valanda"
|
||||
few: "valandos"
|
||||
many: "valandos"
|
||||
other: "valandos"
|
||||
days:
|
||||
one: "diena"
|
||||
few: "dienos"
|
||||
@ -952,19 +901,9 @@ lt:
|
||||
few: "%{count} temos"
|
||||
many: "%{count}temų"
|
||||
other: "%{count}temos"
|
||||
topic_stat:
|
||||
one: "%{number} / %{unit}"
|
||||
few: "%{number} / %{unit}"
|
||||
many: "%{number} / %{unit}"
|
||||
other: "%{number} / %{unit}"
|
||||
topic_stat_unit:
|
||||
week: "savaitė"
|
||||
month: "mėnesis"
|
||||
topic_stat_all_time:
|
||||
one: "Iš viso %{number}"
|
||||
few: "Iš viso %{number}"
|
||||
many: "Iš viso %{number}"
|
||||
other: "Iš viso %{number}"
|
||||
n_more: "Kategorijos (dar %{count} ) ..."
|
||||
ip_lookup:
|
||||
title: IP adreso peržiųra
|
||||
@ -991,11 +930,6 @@ lt:
|
||||
profile: "Profilis"
|
||||
mute: "Nutildyti"
|
||||
edit: "Redaguoti Nustatymus"
|
||||
download_archive:
|
||||
button_text: "Atsisiųsti viską"
|
||||
confirm: "Ar tikrai norite atsisiųsti savo įrašus?"
|
||||
success: "Eksportavimas pradėtas. Kai procesas bus baigtas, gausite pranešimą"
|
||||
rate_limit_error: "Įrašai gali būti atsiunčiami vieną kartą per dieną, prašome pakartoti operaciją rytoj."
|
||||
new_private_message: "Nauja žinutė"
|
||||
private_message: "Žinutės"
|
||||
private_messages: "Žinutės"
|
||||
@ -1551,16 +1485,6 @@ lt:
|
||||
time_read_title: "%{duration} (visas laikas)"
|
||||
recent_time_read: "paskutinis skaitymo laikas"
|
||||
recent_time_read_title: "%{duration} (per paskutines 60 dienų)"
|
||||
topic_count:
|
||||
one: "sukurta tema"
|
||||
few: "sukurtos temos"
|
||||
many: "sukurtos temos"
|
||||
other: "sukurtos temos"
|
||||
post_count:
|
||||
one: "įrašas sukurtas"
|
||||
few: "įrašai sukurti"
|
||||
many: "įrašai sukurti"
|
||||
other: "įrašai sukurti"
|
||||
likes_given:
|
||||
one: "duota"
|
||||
few: "duota"
|
||||
@ -1571,16 +1495,6 @@ lt:
|
||||
few: "gauta"
|
||||
many: "gauta"
|
||||
other: "gauta"
|
||||
days_visited:
|
||||
one: "aplankyta diena"
|
||||
few: "apsilankymo diena"
|
||||
many: "apsilankymo dienų"
|
||||
other: "apsilankymo dienų"
|
||||
topics_entered:
|
||||
one: "tema peržiūrėta"
|
||||
few: "peržiūrėtos temos"
|
||||
many: "peržiūrėtos temos"
|
||||
other: "peržiūrėtos temos"
|
||||
bookmark_count:
|
||||
one: "žymės"
|
||||
few: "žymės"
|
||||
@ -1801,7 +1715,6 @@ lt:
|
||||
twitter:
|
||||
name: "Twitter"
|
||||
title: "Prisijunkite naudodami “Twitter”"
|
||||
sr_title: "Prisijunkite naudodami “Twitter”"
|
||||
instagram:
|
||||
name: "Instagram"
|
||||
title: "Prisijunkite naudodami “Instagram”"
|
||||
@ -1858,27 +1771,12 @@ lt:
|
||||
few: "%{count} temos šioje kategorijoje"
|
||||
many: "%{count} temų šioje kategorijoje"
|
||||
other: "%{count} temos šioje kategorijoje"
|
||||
plus_subcategories_title:
|
||||
one: "%{name} ir viena subkategorija"
|
||||
few: "%{name} ir %{count} subkategorijos"
|
||||
many: "%{name} ir %{count} subkategorijos"
|
||||
other: "%{name} ir %{count} subkategorijos"
|
||||
plus_subcategories:
|
||||
one: "+ %{count} subkategorija"
|
||||
few: "+ %{count} subkategorijos"
|
||||
many: "+ %{count} subkategorijos"
|
||||
other: "+ %{count} subkategorijos"
|
||||
select_kit:
|
||||
delete_item: "Ištrinti %{name}"
|
||||
filter_by: "Filtruoti pagal: %{name}"
|
||||
select_to_filter: "Pasirinkite vertę, kurią norite filtruoti"
|
||||
default_header_text: Pasirinkti...
|
||||
no_content: Atitikmenų nerasta
|
||||
results_count:
|
||||
one: "%{count} rezultatas"
|
||||
few: "%{count} rezultatai"
|
||||
many: "%{count} rezultatai"
|
||||
other: "%{count} rezultatai"
|
||||
filter_placeholder: Paieška...
|
||||
filter_placeholder_with_any: Ieškoti arba sukurti...
|
||||
create: "Sukurti: '%{content}'"
|
||||
@ -1940,11 +1838,6 @@ lt:
|
||||
similar_topics: "Jūsų tema panaši į..."
|
||||
drafts_offline: "juodraščiai ne ryšio zonoje"
|
||||
edit_conflict: "redaguoti konfliktą"
|
||||
group_mentioned:
|
||||
one: "Paminėdami %{group}, jūs ketinate pranešti <a href='%{group_link}'>%{count} asmeniui</a> - ar esate tikri?"
|
||||
few: "Minėdami %{group}, jūs ketinate pranešti <a href='%{group_link}'>%{count} žmonėms</a> - ar esate tikri?"
|
||||
many: "Minėdami %{group}, jūs ketinate pranešti <a href='%{group_link}'>%{count} žmonėms</a> - ar esate tikri?"
|
||||
other: "Minėdami %{group}, jūs ketinate pranešti <a href='%{group_link}'>%{count} žmonėms</a> - ar esate tikri?"
|
||||
cannot_see_mention:
|
||||
category: "Paminėjote @%{username} , tačiau jiems nebus pranešta, nes jie neturi prieigos prie šios kategorijos. Turėsite juos įtraukti į grupę, kuri turi prieigą prie šios kategorijos."
|
||||
private: "Paminėjote @%{username} , tačiau jiems nebus pranešta, nes jie negali matyti šio asmeninio pranešimo. Turėsite juos pakviesti į šią asmeninę žinutę."
|
||||
@ -1959,8 +1852,6 @@ lt:
|
||||
topic_template_not_modified: "Redaguodami temos šabloną, pridėkite prie temos išsamią informaciją ir specifiką."
|
||||
save_edit: "Išsaugoti pakeitimus"
|
||||
overwrite_edit: "Perrašyti Redaguoti"
|
||||
reply_original: "Atsakyti į Originalią Temą"
|
||||
reply_here: "Atsakyti"
|
||||
reply: "Atsakyti"
|
||||
cancel: "Atšaukti"
|
||||
create_topic: "Sukurti Temą"
|
||||
@ -2057,11 +1948,6 @@ lt:
|
||||
few: "%{count}neskaitytos žinutės"
|
||||
many: "%{count}neskaitytų žinučių"
|
||||
other: "%{count}neskaitytos žinutės"
|
||||
high_priority:
|
||||
one: "%{count} neskaitytas aukšto prioriteto pranešimas"
|
||||
few: "%{count} neskaitytų aukšto prioriteto pranešimų"
|
||||
many: "%{count} neskaitytų aukšto prioriteto pranešimų"
|
||||
other: "%{count} neskaitytų aukšto prioriteto pranešimų"
|
||||
title: "pranešimai kai paminimas @name , atsakomi tavo įrašai, temos, žinutės ir pan."
|
||||
none: "Šiuo metu neįmanoma pakrauti pranešimų."
|
||||
empty: "Pranešimų nėra"
|
||||
@ -2089,11 +1975,6 @@ lt:
|
||||
few: "%{username}, %{username2}ir %{count} kiti"
|
||||
many: "%{username}, %{username2} ir %{count}kitų"
|
||||
other: "%{username}, %{username2} ir %{count}kitų"
|
||||
liked_consolidated_description:
|
||||
one: "patiko %{count} jūsų įrašų"
|
||||
few: "patiko %{count} jūsų įrašų"
|
||||
many: "patiko %{count} jūsų įrašų"
|
||||
other: "patiko %{count} jūsų įrašų"
|
||||
liked_consolidated: "<span>%{username}</span> %{description}"
|
||||
private_message: "<span>%{username}</span> %{description}"
|
||||
invited_to_private_message: "<p><span>%{username}</span> %{description}"
|
||||
@ -2226,7 +2107,6 @@ lt:
|
||||
tips:
|
||||
category_tag: "filtrai pagal kategoriją ar žymą"
|
||||
author: "filtruoti pagal įrašo autorių"
|
||||
in: "filtruoti pagal metaduomenis (pvz. pavadinime)"
|
||||
status: "filtruoti pagal temos būseną"
|
||||
full_search: "paleidžiama viso puslapio paieška"
|
||||
full_search_key: "%{modifier} + Įveskite"
|
||||
@ -2316,25 +2196,10 @@ lt:
|
||||
delete: "Ištrinti temas"
|
||||
dismiss: "Praleisti"
|
||||
dismiss_read: "Praleisti visas neperskaitytas"
|
||||
dismiss_read_with_selected:
|
||||
one: "Atmesti %{count} neskaitytą"
|
||||
few: "Atmesti %{count} neskaitytų"
|
||||
many: "Atmesti %{count} neskaitytų"
|
||||
other: "Atmesti %{count} neskaitytų"
|
||||
dismiss_button: "Praleisti..."
|
||||
dismiss_button_with_selected:
|
||||
one: "Atsisakyti (%{count})…"
|
||||
few: "Atsisakyti (%{count})…"
|
||||
many: "Atsisakyti (%{count})…"
|
||||
other: "Atsisakyti (%{count})…"
|
||||
dismiss_tooltip: "Praleisti tik naujus įrašus ar nebesekti temos"
|
||||
also_dismiss_topics: "Nebesekti šių temų, kad jos niekada nebūtų rodomos, kaip neperskaitytos"
|
||||
dismiss_new: "Praleisti Naujas"
|
||||
dismiss_new_with_selected:
|
||||
one: "Atsisakyti naujo (%{count})"
|
||||
few: "Atsisakyti naujo (%{count})"
|
||||
many: "Atsisakyti naujo (%{count})"
|
||||
other: "Atsisakyti naujo (%{count})"
|
||||
toggle: "perjungti temų pasirinkimus"
|
||||
actions: "Veiksmai"
|
||||
change_category: "Nustatyti kategoriją..."
|
||||
@ -2355,16 +2220,6 @@ lt:
|
||||
choose_append_tags: "Pasirinkite naujas žymas, kurias norite pridėti šioms temoms:"
|
||||
changed_tags: "Šių temų žymos buvo pakeistos."
|
||||
remove_tags: "Pašalinti visas žymes"
|
||||
confirm_remove_tags:
|
||||
one: "Visos žymos bus pašalintos iš šios temos. Ar esate tikras?"
|
||||
few: "Visos žymės bus pašalintos iš %{count} temų. Ar esate tikras?"
|
||||
many: "Visos žymės bus pašalintos iš %{count} temų. Ar esate tikras?"
|
||||
other: "Visos žymės bus pašalintos iš <b>%{count}</b> temų. Ar esate tikras?"
|
||||
progress:
|
||||
one: "Pažanga: <strong>%{count}</strong> tema"
|
||||
few: "Pažanga: <strong>%{count}</strong> temos"
|
||||
many: "Pažanga: <strong>%{count}</strong> temos"
|
||||
other: "Pažanga: <strong>%{count}</strong> temos"
|
||||
none:
|
||||
unread: "Jūs neturite neperskaitytų temų."
|
||||
unseen: "Jūs neturite nematytų temų."
|
||||
@ -2447,8 +2302,6 @@ lt:
|
||||
expand_details: "išplėsti temos informaciją"
|
||||
unread_indicator: "Nė vienas narys dar neperskaitė paskutinio šios temos įrašo."
|
||||
suggest_create_topic: Pasirengę <a href>pradėti naują pokalbį?</a>
|
||||
jump_reply_up: Pereiti į ankstesnį atsakymą
|
||||
jump_reply_down: Pereitį į sekantį atsakymą
|
||||
deleted: "Tema buvo ištrinta"
|
||||
slow_mode_update:
|
||||
title: "Lėtas režimas"
|
||||
@ -2519,16 +2372,6 @@ lt:
|
||||
auto_reminder: "Jums bus priminta apie šią temą %{timeLeft}."
|
||||
auto_delete_replies: "Atsakymai šia tema automatiškai ištrinami po %{duration}."
|
||||
auto_close_title: "Automatinio uždarymo nustatymai"
|
||||
auto_close_immediate:
|
||||
one: "Paskutinis įrašas temoje jau yra %{count} valandų, todėl tema bus nedelsiant uždaryta."
|
||||
few: "Paskutinis įrašas temoje jau yra %{count} valandų, todėl tema bus nedelsiant uždaryta."
|
||||
many: "Paskutinis įrašas temoje jau yra %{count} valandų, todėl tema bus nedelsiant uždaryta."
|
||||
other: "Paskutinis įrašas temoje jau yra %{count} valandų, todėl tema bus nedelsiant uždaryta."
|
||||
auto_close_momentarily:
|
||||
one: "Paskutinis įrašas temoje jau yra %{count} valandų, todėl tema bus akimirksniu uždaryta."
|
||||
few: "Paskutiniai įrašai temoje jau yra %{count} valandų, todėl temos bus akimirksniu uždaryta."
|
||||
many: "Paskutiniai įrašai temoje jau yra %{count} valandų, todėl temos bus akimirksniu uždaryta."
|
||||
other: "Paskutiniai įrašai temoje jau yra %{count} valandų, todėl temos bus akimirksniu uždaryta."
|
||||
timeline:
|
||||
back: "Atgal"
|
||||
back_description: "Grįžkite prie paskutinio neskaityto įrašo"
|
||||
@ -2616,11 +2459,6 @@ lt:
|
||||
help: "Pasidalink šios temos nuoroda"
|
||||
instructions: "Dalintis nuoroda šioje temoje:"
|
||||
copied: "Temos nuoroda nukopijuota."
|
||||
restricted_groups:
|
||||
one: "Matoma tik grupės nariams: %{groupNames}"
|
||||
few: "Matoma tik grupių nariams: %{groupNames}"
|
||||
many: "Matoma tik grupių nariams: %{groupNames}"
|
||||
other: "Matoma tik grupių nariams: %{groupNames}"
|
||||
invite_users: "Kviesti"
|
||||
print:
|
||||
title: "Spausdinti"
|
||||
@ -2731,11 +2569,6 @@ lt:
|
||||
action: "pereiti prie esamo pranešimo"
|
||||
radio_label: "Esama žinutė"
|
||||
participants: "Dalyviai"
|
||||
instructions:
|
||||
one: "Pasirinkite pranešimą, į kurį norite perkelti tą įrašą."
|
||||
few: "Pasirinkite pranešimą, į kurį norite perkelti tuos <b>%{count}</b> įrašus."
|
||||
many: "Pasirinkite pranešimą, į kurį norite perkelti tuos <b>%{count}</b> įrašus."
|
||||
other: "Pasirinkite pranešimą, į kurį norite perkelti tuos <b>%{count}</b> įrašus."
|
||||
merge_posts:
|
||||
title: "Sulieti pasirinktus įrašus"
|
||||
action: "sulieti pasirinktus įrašus"
|
||||
@ -2758,11 +2591,6 @@ lt:
|
||||
action: "pakeisti valdymo teises"
|
||||
error: "Įvyko klaida keičiant įrašų valdymo teisę."
|
||||
placeholder: "naujojo valdytojo vartotojo vardas"
|
||||
instructions_without_old_user:
|
||||
one: "Pasirinkite naują įrašo savininką"
|
||||
few: "Prašome pasirinkti naujų %{count} įrašų savininką"
|
||||
many: "Prašome pasirinkti naujų %{count} įrašų savininką"
|
||||
other: "Prašome pasirinkti naujų %{count} įrašų savininką"
|
||||
change_timestamp:
|
||||
action: "pakeisti laiko formatą"
|
||||
invalid_timestamp: "Laiko formatas negali būti ateityje."
|
||||
@ -2846,16 +2674,6 @@ lt:
|
||||
few: "%{count} asmenims patiko šis pranešimas. Spustelėkite, jei norite peržiūrėti"
|
||||
many: "%{count} žmonių patiko šis įrašas. Spustelėkite norėdami peržiūrėti"
|
||||
other: "%{count} žmonėms patiko šis pranešimas. Spustelėkite, jei norite peržiūrėti"
|
||||
filtered_replies_hint:
|
||||
one: "Peržiūrėkite šį įrašą ir jo atsakymą"
|
||||
few: "Peržiūrėkite šį įrašą ir jo %{count} atsakymus"
|
||||
many: "Peržiūrėkite šį įrašą ir jo %{count} atsakymus"
|
||||
other: "Peržiūrėkite šį įrašą ir jo %{count} atsakymus"
|
||||
filtered_replies_viewing:
|
||||
one: "Peržiūrėti %{count} atsakymą į"
|
||||
few: "Peržiūrėti %{count} atsakymus į"
|
||||
many: "Peržiūrėti %{count} atsakymus į"
|
||||
other: "Peržiūrėti %{count} atsakymus į"
|
||||
in_reply_to: "Įkelti pirminį įrašą"
|
||||
view_all_posts: "Peržiūrėti visus įrašus"
|
||||
errors:
|
||||
@ -2865,11 +2683,6 @@ lt:
|
||||
file_too_large: "Deja, failas per didelis (maksimalus dydis yra %{max_size_kb}kb). Kodėl neįkėlus didelio failo į bendrinimo debesyje paslaugą ir tuomet įklijuokite nuorodą?"
|
||||
file_too_large_humanized: "Deja, failas per didelis (maksimalus dydis yra %{max_size}kb). Kodėl neįkėlus didelio failo į bendrinimo debesyje paslaugą ir tuomet įklijuokite nuorodą?"
|
||||
too_many_uploads: "Atsiprašome, bet jūs galite įkelti tik vieną failą vienu metu."
|
||||
too_many_dragged_and_dropped_files:
|
||||
one: "Atsiprašome, galite įkelti tik %{count} failą vienu metu."
|
||||
few: "Atsiprašome, galite įkelti tik %{count} failus vienu metu."
|
||||
many: "Atsiprašome, galite įkelti tik %{count} failus vienu metu."
|
||||
other: "Atsiprašome, galite įkelti tik %{count} failus vienu metu."
|
||||
upload_not_authorized: "Atsiprašome, failas, kurį bandote įkelti, nėra autorizuotas (įgalioti plėtiniai: %{authorized_extensions})."
|
||||
image_upload_not_allowed_for_new_user: "Atsiprašome, bet nauji vartotojai negali įkelti nuotraukų."
|
||||
attachment_upload_not_allowed_for_new_user: "Atsiprašome, bet nauji vartotojai negali įkelti priedų."
|
||||
@ -2930,11 +2743,6 @@ lt:
|
||||
unlock_post_description: "leisti paskelbusiam asmeniui redaguoti šį įrašą"
|
||||
delete_topic_disallowed_modal: "Neturite leidimo ištrinti šios temos. Jei tikrai norite, kad jis būtų ištrintas, kartu su argumentais pateikite vėliavą moderatoriui."
|
||||
delete_topic_disallowed: "neturite leidimo ištrinti šios temos"
|
||||
delete_topic_confirm_modal:
|
||||
one: "Ši tema šiuo metu turi daugiau nei %{count} peržiūrą ir gali būti populiari paieškos vieta. Ar tikrai norite visiškai ištrinti šią temą, o ne ją redaguoti, kad patobulintumėte?"
|
||||
few: "Ši tema šiuo metu turi daugiau nei %{count} peržiūrų ir gali būti populiari paieškos vieta. Ar tikrai norite visiškai ištrinti šią temą, o ne ją redaguoti, kad patobulintumėte?"
|
||||
many: "Ši tema šiuo metu turi daugiau nei %{count} peržiūrų ir gali būti populiari paieškos vieta. Ar tikrai norite visiškai ištrinti šią temą, o ne ją redaguoti, kad patobulintumėte?"
|
||||
other: "Ši tema šiuo metu turi daugiau nei %{count} peržiūrų ir gali būti populiari paieškos vieta. Ar tikrai norite visiškai ištrinti šią temą, o ne ją redaguoti, kad patobulintumėte?"
|
||||
delete_topic_confirm_modal_yes: "Taip, ištrinti šią temą"
|
||||
delete_topic_confirm_modal_no: "Ne, palikti šią temą"
|
||||
delete_topic_error: "Ištrinant šią temą įvyko klaida"
|
||||
@ -2951,21 +2759,11 @@ lt:
|
||||
few: "mėgstate"
|
||||
many: "mėgstate"
|
||||
other: "mėgstate"
|
||||
read:
|
||||
one: "skaityti"
|
||||
few: "skaityti"
|
||||
many: "skaityti"
|
||||
other: "skaityti"
|
||||
like_capped:
|
||||
one: "ir %{count}kitas mėgsta tai"
|
||||
few: "ir %{count}kitų mėgsta tai"
|
||||
many: "ir %{count}kitų mėgsta tai "
|
||||
other: "ir %{count} kitų mėgsta tai"
|
||||
read_capped:
|
||||
one: "ir %{count} kiti tai skaito"
|
||||
few: "ir %{count} kiti tai skaito"
|
||||
many: "ir %{count} kiti tai skaito"
|
||||
other: "ir %{count} kiti tai skaito"
|
||||
sr_post_likers_list_description: "vartotojai, kuriems patiko šis pranešimas"
|
||||
sr_post_readers_list_description: "vartotojai, kurie perskaitė šį pranešimą"
|
||||
by_you:
|
||||
@ -3213,11 +3011,6 @@ lt:
|
||||
few: "liko %{count}..."
|
||||
many: "liko %{count}..."
|
||||
other: "liko %{count}..."
|
||||
left:
|
||||
one: "Liko %{count}"
|
||||
few: "Liko %{count}"
|
||||
many: "Liko %{count}"
|
||||
other: "Liko %{count}"
|
||||
flagging_topic:
|
||||
title: "Ačiū, kad padedi padedi išlaikyti forumą civilizuotu!"
|
||||
action: "Temos su vėliavomis"
|
||||
@ -3536,39 +3329,19 @@ lt:
|
||||
changed: "žymės pakeistos:"
|
||||
tags: "Žymos"
|
||||
choose_for_topic: "pasirenkamos žymos"
|
||||
choose_for_topic_required:
|
||||
one: "pasirinkite bent %{count} žymę..."
|
||||
few: "pasirinkite bent %{count} žymų..."
|
||||
many: "pasirinkite bent %{count} žymų..."
|
||||
other: "pasirinkite bent %{count} žymų..."
|
||||
info: "Informacija"
|
||||
default_info: "Ši žyma neapsiriboja jokiomis kategorijomis ir neturi sinonimų."
|
||||
staff_info: "Norėdami pridėti apribojimų, įtraukite šią žymą į <a href=%{basePath}/tag_groups>žymų grupę</a>."
|
||||
category_restricted: "Ši žyma skirta tik kategorijoms, prie kurių neturite prieigos teisės."
|
||||
synonyms: "Sinonimai"
|
||||
save: "Išsaugokite žymos pavadinimą ir aprašymą"
|
||||
category_restrictions:
|
||||
one: "Tai gali būti naudojama tik šioje kategorijoje:"
|
||||
few: "Tai gali būti naudojama tik šiose kategorijose:"
|
||||
many: "Tai gali būti naudojama tik šiose kategorijose:"
|
||||
other: "Tai gali būti naudojama tik šiose kategorijose:"
|
||||
edit_synonyms: "Redaguoti sinonimus"
|
||||
add_synonyms_label: "Pridėti sinonimus:"
|
||||
add_synonyms: "Pridėti"
|
||||
remove_synonym: "Pašalinti sinonimą"
|
||||
delete_synonym_confirm: 'Ar tikrai norite ištrinti sinonimą "%{tag_name}“?'
|
||||
delete_tag: "Ištrinti žymą"
|
||||
delete_confirm:
|
||||
one: "Ar tikrai norite ištrinti šią žymą ir pašalinti ją iš %{count} temos, kuriai ji priskirta?"
|
||||
few: "Ar tikrai norite ištrinti šią žymą ir pašalinti ją iš %{count} temų, kurioms ji priskirta?"
|
||||
many: "Ar tikrai norite ištrinti šią žymą ir pašalinti ją iš %{count} temų, kurioms ji priskirta?"
|
||||
other: "Ar tikrai norite ištrinti šią žymą ir pašalinti ją iš %{count} temų, kurioms ji priskirta?"
|
||||
delete_confirm_no_topics: "Ar tikrai norite ištrinti šią žymą?"
|
||||
delete_confirm_synonyms:
|
||||
one: "Jo sinonimas taip pat bus ištrintas."
|
||||
few: "%{count} sinonimai taip pat bus ištrinti."
|
||||
many: "%{count} sinonimai taip pat bus ištrinti."
|
||||
other: "%{count} sinonimai taip pat bus ištrinti."
|
||||
edit_tag: "Redaguoti žymos pavadinimą ir aprašymą"
|
||||
description: "Aprašymas"
|
||||
sort_by: "Rūšiuoti pagal:"
|
||||
@ -3579,11 +3352,6 @@ lt:
|
||||
upload: "Įkelti žymas"
|
||||
upload_description: "Įkelkite csv failą, kad sukurtumėte masines žymas"
|
||||
upload_successful: "Žymos sėkmingai įkeltos"
|
||||
delete_unused_confirmation:
|
||||
one: "%{count} žyma bus ištrinta: %{tags}"
|
||||
few: "%{count} žymų bus ištrintos: %{tags}"
|
||||
many: "%{count} žymų bus ištrintos: %{tags}"
|
||||
other: "%{count} žymų bus ištrintos: %{tags}"
|
||||
delete_no_unused_tags: "Nėra nepanaudotų žymių."
|
||||
tag_list_joiner: ", "
|
||||
delete_unused: "Ištrinkite nepanaudotas žymas"
|
||||
@ -3660,13 +3428,11 @@ lt:
|
||||
enabled: "Saugus režimas įjungtas, norėdami išeiti iš saugaus režimo uždarykite šį naršyklės langą"
|
||||
image_removed: "(vaizdas pašalintas)"
|
||||
pause_notifications:
|
||||
remaining: "Liko %{remaining}"
|
||||
options:
|
||||
half_hour: "30 minučių"
|
||||
one_hour: "1 valanda"
|
||||
two_hours: "2 valandos"
|
||||
tomorrow: "Iki rytojaus"
|
||||
custom: "Išskirtinės"
|
||||
set_schedule: "Nustatykite pranešimų tvarkaraštį"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3709,6 +3475,9 @@ lt:
|
||||
more: "Daugiau"
|
||||
all_categories: "Visos kategorijos"
|
||||
sections:
|
||||
custom:
|
||||
save: "Išsaugoti"
|
||||
delete: "Pašalinti"
|
||||
about:
|
||||
header_link_text: "Apie"
|
||||
messages:
|
||||
@ -3747,7 +3516,6 @@ lt:
|
||||
content: "Mano Įrašai"
|
||||
review:
|
||||
content: "Peržiūra"
|
||||
until: "Iki:"
|
||||
admin_js:
|
||||
type_to_filter: "įrašyk kažką dėl filtro..."
|
||||
admin:
|
||||
@ -3793,11 +3561,6 @@ lt:
|
||||
space_used_and_free: "%{usedSize} (%{freeSize} nemokama)"
|
||||
uploads: "Įkėlimai"
|
||||
backups: "Atsarginės kopijos"
|
||||
backup_count:
|
||||
one: "%{count} atsarginė kopija %{location}"
|
||||
few: "%{count} atsarginių kopijų %{location}"
|
||||
many: "%{count} atsarginių kopijų %{location}"
|
||||
other: "%{count} atsarginių kopijų %{location}"
|
||||
lastest_backup: "Naujausi: %{date}"
|
||||
traffic_short: "Srautas"
|
||||
traffic: "Application web requests"
|
||||
@ -3888,11 +3651,6 @@ lt:
|
||||
effects: Efektai
|
||||
trust_levels_none: "Nieko"
|
||||
automatic_membership_email_domains: "Vartotojai, kurie užsiregistravo su el. paštu, kuris sutampa su šiame sąraše esančiu el. paštu bus automatiškai pridėti į šią grupę:"
|
||||
automatic_membership_user_count:
|
||||
one: "%{count} vartotojas turi naujus el. pašto domenus ir bus pridėtas prie grupės."
|
||||
few: "%{count} vartotojų turi naujus el. pašto domenus ir bus įtraukti į grupę."
|
||||
many: "%{count} vartotojų turi naujus el. pašto domenus ir bus įtraukti į grupę."
|
||||
other: "%{count} vartotojų turi naujus el. pašto domenus ir bus įtraukti į grupę."
|
||||
automatic_membership_associated_groups: "Vartotojai, kurie yra čia išvardytos paslaugos grupės nariai, bus automatiškai įtraukti į šią grupę, kai jie prisijungs prie paslaugos."
|
||||
primary_group: "Automatiškai nustatyk pagrindinę grupę"
|
||||
name_placeholder: "Grupės pavadinimas, be tarpų, taisyklės kaip ir slapyvardžiui"
|
||||
@ -4046,19 +3804,8 @@ lt:
|
||||
events:
|
||||
none: "Nėra susijusių įvykių."
|
||||
redeliver: "Iš naujo pristatyti"
|
||||
incoming:
|
||||
one: "Yra naujas įvykis."
|
||||
few: "Yra %{count} naujų įvykių."
|
||||
many: "Yra %{count} naujų įvykių."
|
||||
other: "Yra %{count} naujų įvykių."
|
||||
completed_in:
|
||||
one: "Baigta per %{count} sekundžių."
|
||||
few: "Baigta per %{count} sekundžių."
|
||||
many: "Baigta per %{count} sekundžių."
|
||||
other: "Baigta per %{count} sekundžių."
|
||||
request: "Užklausa"
|
||||
response: "Atsakymas"
|
||||
headers: "Antraštės"
|
||||
body: "Turinys"
|
||||
status: "Būsenos kodas"
|
||||
event_id: "ID"
|
||||
@ -4607,11 +4354,6 @@ lt:
|
||||
title: "Peržiūrėti Žodžiai"
|
||||
search: "paieška"
|
||||
clear_filter: "Išvalyti"
|
||||
show_words:
|
||||
one: "rodyti %{count} žodį"
|
||||
few: "rodyti %{count} žodžių"
|
||||
many: "rodyti %{count} žodžių"
|
||||
other: "rodyti %{count} žodžių"
|
||||
download: Atsisiųsti
|
||||
clear_all: Išvalyti viską
|
||||
clear_all_confirm: "Ar tikrai norite išvalyti visus stebėtus žodžius %{action} veiksmui?"
|
||||
@ -4735,7 +4477,6 @@ lt:
|
||||
staged: "Inscenizuotas?"
|
||||
show_admin_profile: "Administravimas"
|
||||
show_public_profile: "Rodyti viešą profilį"
|
||||
impersonate: "Apsimesti"
|
||||
action_logs: "Veiksmų įrašai"
|
||||
ip_lookup: "IP Peržiūra"
|
||||
log_out: "Atsijungti"
|
||||
@ -4861,11 +4602,6 @@ lt:
|
||||
posts: "Pranešimai"
|
||||
tl3_requirements:
|
||||
title: "Reikalavimai 3 pasitikėjimo lygiui"
|
||||
table_title:
|
||||
one: "Paskutinę dieną:"
|
||||
few: "Per pastarąsias %{count} dienų:"
|
||||
many: "Per pastarąsias %{count} dienų:"
|
||||
other: "Per pastarąsias %{count} dienų:"
|
||||
value_heading: "Reikšmė"
|
||||
requirement_heading: "Reikalavimas"
|
||||
visits: "Apsilankymai"
|
||||
@ -5163,11 +4899,6 @@ lt:
|
||||
step: "%{current} iš %{total}"
|
||||
uploading: "Įkeliama..."
|
||||
upload_error: "Atsiprašome, įvyko klaida įkeliant šį dokumentą. Prašome pamėginti dar kartą."
|
||||
staff_count:
|
||||
one: "Jūsų bendruomenėje yra %{count} darbuotojų (jūs)."
|
||||
few: "Jūsų bendruomenėje yra %{count} darbuotojų, įskaitant jus."
|
||||
many: "Jūsų bendruomenėje yra %{count} darbuotojų, įskaitant jus."
|
||||
other: "Jūsų bendruomenėje yra %{count} darbuotojų, įskaitant jus."
|
||||
invites:
|
||||
add_user: "pridėti"
|
||||
none_added: "Jūs nekvietėte jokių darbuotojų. Ar tikrai norite tęsti?"
|
||||
|
||||
@ -69,10 +69,6 @@ lv:
|
||||
zero: "0 d"
|
||||
one: "%{count} d"
|
||||
other: "%{count} d"
|
||||
x_months:
|
||||
zero: "%{count}mēn"
|
||||
one: "%{count}mēn"
|
||||
other: "%{count}mēn"
|
||||
about_x_years:
|
||||
zero: "0 g"
|
||||
one: "%{count} g"
|
||||
@ -411,19 +407,6 @@ lv:
|
||||
name: "Vārds"
|
||||
fields: "Lauki"
|
||||
reject_reason: "Iemesls"
|
||||
user_percentage:
|
||||
agreed:
|
||||
zero: "%{count}% piekrīt"
|
||||
one: "%{count}% piekrīt"
|
||||
other: "%{count}% piekrīt"
|
||||
disagreed:
|
||||
zero: "%{count}% nepiekrīt"
|
||||
one: "%{count}% nepiekrīt"
|
||||
other: "%{count}% nepiekrīt"
|
||||
ignored:
|
||||
zero: "%{count}% ignorē"
|
||||
one: "%{count}% ignorē"
|
||||
other: "%{count}% ignorē"
|
||||
topics:
|
||||
topic: "Tēmas"
|
||||
reviewable_count: "Skaits"
|
||||
@ -844,17 +827,9 @@ lv:
|
||||
zero: "Nav tēmu"
|
||||
one: "%{count} tēma"
|
||||
other: "%{count} tēmas"
|
||||
topic_stat:
|
||||
zero: "%{number} / %{unit}"
|
||||
one: "%{number} / %{unit}"
|
||||
other: "%{number} / %{unit}"
|
||||
topic_stat_unit:
|
||||
week: "nedēļa"
|
||||
month: "mēnesis"
|
||||
topic_stat_all_time:
|
||||
zero: "Kopā %{number}"
|
||||
one: "Kopā %{number}"
|
||||
other: "Kopā %{number}"
|
||||
n_more: "Kategorijas (vēl%{count} ) ..."
|
||||
ip_lookup:
|
||||
title: IP adreses meklēšana
|
||||
@ -881,11 +856,6 @@ lv:
|
||||
profile: "Profils"
|
||||
mute: "Klusināt"
|
||||
edit: "Mainīt iestatījumus"
|
||||
download_archive:
|
||||
button_text: "Lejupielādēt visu"
|
||||
confirm: "Vai esat droši, ka vēlaties lejuplādēt savus ierakstus?"
|
||||
success: "Lejuplāde uzsākta; pavēstīsim jums ziņā, kad šis process būs beidzies."
|
||||
rate_limit_error: "Ierakstus var lejuplādēt reizi dienā, lūdzu mēģiniet atkal rītdien."
|
||||
new_private_message: "Jauns ziņa"
|
||||
private_message: "Ziņa"
|
||||
private_messages: "Ziņas"
|
||||
@ -1691,10 +1661,6 @@ lv:
|
||||
filter_placeholder: Meklēt...
|
||||
filter_placeholder_with_any: Meklēt vai izveidot...
|
||||
create: "Izveidot: '%{content}'"
|
||||
max_content_reached:
|
||||
zero: "Jūs varat izvēlēties tikai %{count} vienumu."
|
||||
one: "Jūs varat izvēlēties tikai %{count} vienumu."
|
||||
other: "Jūs varat izvēlēties tikai %{count} vienumu."
|
||||
date_time_picker:
|
||||
from: "No"
|
||||
to: Kam
|
||||
@ -1738,8 +1704,6 @@ lv:
|
||||
title_missing: "Vajadzīgs nosaukums"
|
||||
category_missing: "Jums ir jāizvēlas sadaļa"
|
||||
save_edit: "Saglabāt izmaiņas"
|
||||
reply_original: "Atbildēt sākotnējā tēmā"
|
||||
reply_here: "Atbildēt šeit"
|
||||
reply: "Atbildēt"
|
||||
cancel: "Atcelt"
|
||||
create_topic: "Izveidot tēmu"
|
||||
@ -1943,25 +1907,15 @@ lv:
|
||||
delete: "Dzēst tēmas"
|
||||
dismiss: "Nerādīt"
|
||||
dismiss_read: "Nerādīt visu neizlasīto"
|
||||
dismiss_read_with_selected:
|
||||
zero: "Noraidīt %{count} nelasītus"
|
||||
one: "Noraidīt %{count} nelasītus"
|
||||
other: "Noraidīt %{count} nelasītus"
|
||||
dismiss_button: "Nerādīt..."
|
||||
dismiss_button_with_selected:
|
||||
zero: "Noraidīt (%{count})…"
|
||||
one: "Noraidīt (%{count})…"
|
||||
other: "Noraidīt (%{count})…"
|
||||
dismiss_tooltip: "Nerādīt tikai jaunos ierakstus vai pārtraukt sekot tēmām"
|
||||
also_dismiss_topics: "Pārtraukt sekot šīm tēmām, lai tās man vairs nekad nerādītos kā neizlasītas"
|
||||
dismiss_new: "Nerādīt jaunus"
|
||||
toggle: "darbības ar vairākām tēmām"
|
||||
actions: "Darbības ar vairumu"
|
||||
change_category: "Norādīt sadaļu..."
|
||||
close_topics: "Slēgt tēmas"
|
||||
archive_topics: "Arhivēt tēmas"
|
||||
move_messages_to_inbox: "Pārvietot uz iesūtni"
|
||||
notification_level: "Paziņojumi..."
|
||||
choose_new_category: "Izvēlēties jaunu sadaļu šīm tēmām:"
|
||||
selected:
|
||||
zero: "Jūs izvēlējāties <b>0.</b> tēmas."
|
||||
@ -2039,8 +1993,6 @@ lv:
|
||||
back_to_list: "Atpakaļ pie tēmu saraksta "
|
||||
options: "Tēmas iestatījumi "
|
||||
show_links: "rādīt saites šajā tēmā"
|
||||
jump_reply_up: pāriet uz agrāku atbildi
|
||||
jump_reply_down: pāriet uz vēlāku atbildi
|
||||
deleted: "Tēma ir dzēsta "
|
||||
slow_mode_update:
|
||||
enable: "Ieslēgt"
|
||||
@ -2051,7 +2003,6 @@ lv:
|
||||
remove: "Noņemt taimeri"
|
||||
publish_to: "Publicēt: "
|
||||
when: "Kad:"
|
||||
time_frame_required: "Lūdzu, izvēlieties laika periodu"
|
||||
duration: "Ilgums"
|
||||
publish_to_category:
|
||||
title: "Ieplānot publicēšanu "
|
||||
@ -2144,7 +2095,6 @@ lv:
|
||||
unarchive: "Izņemt tēmu no arhīva"
|
||||
archive: "Arhivēt tēmu"
|
||||
reset_read: "Atstatīt visu kā nelasītu"
|
||||
make_public: "Izveidot publisku tēmu..."
|
||||
feature:
|
||||
pin: "Piespraust tēmu"
|
||||
unpin: "Atspraust tēmu"
|
||||
@ -2315,8 +2265,6 @@ lv:
|
||||
image_upload_not_allowed_for_new_user: "Atvainojiet, jaunie lietotāji nevar augšuplādēt attēlus."
|
||||
attachment_upload_not_allowed_for_new_user: "Atvainojiet, jaunie lietotāji nevar augšuplādēt pielikumus."
|
||||
attachment_download_requires_login: "Atvainojiet, jums jābūt ienākušam forumā, lai varētu lejuplādēt pielikumus."
|
||||
cancel_composer:
|
||||
discard: "Izmest"
|
||||
via_email: "šis ieraksts atnāca e-pastā"
|
||||
via_auto_generated_email: "šis ieraksts atnāca automātiski ģenerētā e-pastā"
|
||||
whisper: "šis ieraksts ir privāts čuksts moderatoriem"
|
||||
@ -2345,8 +2293,6 @@ lv:
|
||||
revert_to_regular: "Noņemt darbinieka krāsu"
|
||||
rebake: "Pārbūvēt HTML"
|
||||
unhide: "Noņemt slēpšanu"
|
||||
change_owner: "Mainīt īpašnieku..."
|
||||
grant_badge: "Piešķirt Žetonu..."
|
||||
delete_topic: "Dzēst tēmu"
|
||||
actions:
|
||||
people:
|
||||
@ -2461,8 +2407,6 @@ lv:
|
||||
options:
|
||||
normal: "Normāls"
|
||||
ignore: "Ignorēt"
|
||||
low: "Zems"
|
||||
high: "Augsta"
|
||||
sort_options:
|
||||
default: "noklusējuma"
|
||||
likes: "Atzinības"
|
||||
@ -2619,9 +2563,6 @@ lv:
|
||||
zero: "%{count} nelasītas"
|
||||
one: "%{count} nelasīta"
|
||||
other: "%{count} nelasītas"
|
||||
unseen:
|
||||
title: "Neredzēts"
|
||||
lower_title: "neredzēts"
|
||||
new:
|
||||
lower_title_with_count:
|
||||
zero: "%{count} jaunas"
|
||||
@ -2802,7 +2743,6 @@ lv:
|
||||
save: "Saglabāt"
|
||||
delete: "Dzēst"
|
||||
confirm_delete: "Vai jūs esat drošs, ka vēlaties dzēst šo tagu grupu?"
|
||||
parent_tag_placeholder: "Pēc izvēles"
|
||||
topics:
|
||||
none:
|
||||
unread: "Jums nav nelasītu tēmu."
|
||||
@ -2822,8 +2762,6 @@ lv:
|
||||
dismiss: "Nerādīt"
|
||||
safe_mode:
|
||||
enabled: "Ir ieslēgts drošais režīms; lai pamestu drošo režīmu, aizveriet šo pārlūkprogrammas logu"
|
||||
pause_notifications:
|
||||
remaining: "palicis %{remaining}"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "jauns lietotājs"
|
||||
@ -2841,6 +2779,9 @@ lv:
|
||||
more: "Vairāk"
|
||||
all_categories: "Visas sadaļas"
|
||||
sections:
|
||||
custom:
|
||||
save: "Saglabāt"
|
||||
delete: "Dzēst"
|
||||
about:
|
||||
header_link_text: "Par"
|
||||
messages:
|
||||
@ -2866,8 +2807,6 @@ lv:
|
||||
content: "Administrators"
|
||||
badges:
|
||||
content: "Žetoni"
|
||||
everything:
|
||||
content: "Viss"
|
||||
faq:
|
||||
content: "BUJ"
|
||||
groups:
|
||||
@ -2901,7 +2840,6 @@ lv:
|
||||
latest_version: "Pēdējais"
|
||||
new_features:
|
||||
dismiss: "Nerādīt"
|
||||
learn_more: "Uzzināt vairāk"
|
||||
last_checked: "Pēdējā pārbaude"
|
||||
refresh_problems: "Pārlādēt"
|
||||
no_problems: "Problēmas nav atrastas."
|
||||
@ -2920,7 +2858,6 @@ lv:
|
||||
general_tab: "Vispārīgi"
|
||||
security_tab: "Drošība"
|
||||
report_filter_any: "jebkura"
|
||||
disabled: Atslēgt
|
||||
reports:
|
||||
today: "Šodien"
|
||||
yesterday: "Vakar"
|
||||
@ -2981,7 +2918,6 @@ lv:
|
||||
user: "Lietotājs"
|
||||
title: "API"
|
||||
created: Radīts
|
||||
never_used: (nekad)
|
||||
generate: "Radīt"
|
||||
revoke: "Atsaukt"
|
||||
all_users: "Visi lietotāji"
|
||||
@ -3021,7 +2957,6 @@ lv:
|
||||
inactive: "Neaktīvs"
|
||||
failed: "Neizdevies"
|
||||
successful: "Veiksmīgs"
|
||||
disabled: "Atslēgt"
|
||||
events:
|
||||
none: "Nav saistītu notikumu."
|
||||
redeliver: "Atkārtot piegādi"
|
||||
@ -3138,7 +3073,6 @@ lv:
|
||||
customize_desc: "Pielāgot:"
|
||||
title: "Dizaini"
|
||||
create: "Izveidot"
|
||||
create_type: "Tips"
|
||||
create_name: "Vārds"
|
||||
long_title: "Labot jūsu vietnes krāsas, CSS un HTML saturu"
|
||||
edit: "Labot"
|
||||
@ -3158,7 +3092,6 @@ lv:
|
||||
add_upload: "Pievienot augšupielādējamu resursu"
|
||||
upload_file_tip: "Izvēlēties resursu augšupielādei (png, woff2, u.c...)"
|
||||
upload: "Augšupielādēt"
|
||||
discard: "Izmest"
|
||||
css_html: "Specifisks CSS/HTML"
|
||||
edit_css_html: "Labot CSS/HTML"
|
||||
edit_css_html_help: "Jūs neesat izmainījis nekādus CSS vai HTML failus"
|
||||
@ -3189,7 +3122,6 @@ lv:
|
||||
description: "Atzinības pogas krāsa."
|
||||
email_style:
|
||||
css: "CSS"
|
||||
reset: "Atiestatīt uz noklusējumu"
|
||||
email:
|
||||
title: "E-pasti"
|
||||
settings: "Iestatījumi"
|
||||
@ -3251,9 +3183,6 @@ lv:
|
||||
address_placeholder: "Vārds@epasts.lv"
|
||||
type_placeholder: "apkopojums, reģistrācija ..."
|
||||
reply_key_placeholder: "atbildes atslēga"
|
||||
moderation_history:
|
||||
actions:
|
||||
delete_topic: "Temats dzēsts"
|
||||
logs:
|
||||
title: "Žurnāls"
|
||||
action: "Darbība"
|
||||
@ -3325,7 +3254,6 @@ lv:
|
||||
backup_destroy: "iznīcināt dublējumu (backup)"
|
||||
reviewed_post: "pārbaudītie ieraksti"
|
||||
custom_staff: "Iestatīt darbību"
|
||||
post_approved: "ziņa apstiprināta"
|
||||
screened_emails:
|
||||
title: "Pārbaudītie e-pasti"
|
||||
description: "Kad kāds mēģina izveidot jaunu kontu sekojošās e-pasta adreses tiks pārbaudītas, un reģistrācija tiks apturēta, vai kāda cita darbība tiks veikta."
|
||||
@ -3425,7 +3353,6 @@ lv:
|
||||
staged: "Izveidots?"
|
||||
show_admin_profile: "Administrators"
|
||||
show_public_profile: "Parādīt publisko profilu"
|
||||
impersonate: "Izlikties (Impersonate)"
|
||||
action_logs: "Aktivitāšu saraksts"
|
||||
ip_lookup: "IP meklēšana"
|
||||
log_out: "Iziet"
|
||||
@ -3640,9 +3567,7 @@ lv:
|
||||
dashboard: "Administrācijas panelis"
|
||||
navigation: "Pārvietošanās"
|
||||
default_categories:
|
||||
modal_description: "Vai vēlaties šīs izmaiņas piemērot vēsturiski? Tas mainīs %{count} esošo lietotāju preferences."
|
||||
modal_yes: "Jā"
|
||||
modal_no: "Nē, piemērojiet izmaiņas tikai turpmāk"
|
||||
badges:
|
||||
title: Žetoni
|
||||
new_badge: Jauns Žetons
|
||||
|
||||
@ -876,15 +876,9 @@ nb_NO:
|
||||
topic_sentence:
|
||||
one: "%{count} emne"
|
||||
other: "%{count} emner"
|
||||
topic_stat:
|
||||
one: "%{number} / %{unit}"
|
||||
other: "%{number} / %{unit}"
|
||||
topic_stat_unit:
|
||||
week: "uke"
|
||||
month: "måned"
|
||||
topic_stat_all_time:
|
||||
one: "%{number} totalt"
|
||||
other: "%{number} totalt"
|
||||
n_more: "Kategorier (ytterligere%{count})..."
|
||||
ip_lookup:
|
||||
title: Slå opp IP-adresse
|
||||
@ -911,11 +905,6 @@ nb_NO:
|
||||
profile: "Profil"
|
||||
mute: "Ignorer"
|
||||
edit: "Rediger innstillinger"
|
||||
download_archive:
|
||||
button_text: "Last ned alle"
|
||||
confirm: "Er du sikker på at du vil laste ned innleggene dine?"
|
||||
success: "Nedlasting iverksatt. Du vil bli varslet med en melding når prosessen er fullført."
|
||||
rate_limit_error: "Innlegg kan lastes ned en gang om dagen, prøv igjen i morgen."
|
||||
new_private_message: "Ny Melding"
|
||||
private_message: "Melding"
|
||||
private_messages: "Meldinger"
|
||||
@ -1849,8 +1838,6 @@ nb_NO:
|
||||
topic_template_not_modified: "Vennligst legg til detaljer og spesifikasjoner for emnet ditt ved å redigere emnemalen."
|
||||
save_edit: "Lagre endring"
|
||||
overwrite_edit: "Overskriv Rediger"
|
||||
reply_original: "Svar på det opprinnelige emnet"
|
||||
reply_here: "Svar her"
|
||||
reply: "Svar"
|
||||
cancel: "Avbryt"
|
||||
create_topic: "Opprett emne"
|
||||
@ -2161,22 +2148,14 @@ nb_NO:
|
||||
one: "Avvis %{count} uleste"
|
||||
other: "Avvis %{count} uleste"
|
||||
dismiss_button: "Forkast…"
|
||||
dismiss_button_with_selected:
|
||||
one: "Avvis (%{count})…"
|
||||
other: "Avvis (%{count})…"
|
||||
dismiss_tooltip: "Forkast kun nye innlegg eller slutt å overvåke emner"
|
||||
also_dismiss_topics: "Slutt å overvåke disse emnene slik at de aldri igjen vises til meg som ulest"
|
||||
dismiss_new: "Forkast nye"
|
||||
dismiss_new_with_selected:
|
||||
one: "Avvis Ny (%{count})"
|
||||
other: "Avvis Ny (%{count})"
|
||||
toggle: "slå på/av massevelging av emner"
|
||||
actions: "Massehandlinger"
|
||||
change_category: "Velg kategori..."
|
||||
close_topics: "Lukk emner"
|
||||
archive_topics: "Arkiver emner"
|
||||
move_messages_to_inbox: "Flytt til innboks"
|
||||
notification_level: "Varsler..."
|
||||
change_notification_level: "Endre varslingsnivå"
|
||||
choose_new_category: "Velg den nye kategorien for emnene:"
|
||||
selected:
|
||||
@ -2263,8 +2242,6 @@ nb_NO:
|
||||
expand_details: "utvid emnebeskrivelse"
|
||||
unread_indicator: "Ingen medlem har lest den siste posten i dette emnet ennå."
|
||||
suggest_create_topic: Klar til å <a href>starte en ny samtale?</a>
|
||||
jump_reply_up: hopp til tidligere svar
|
||||
jump_reply_down: hopp til senere svar
|
||||
deleted: "Emnet ble slettet"
|
||||
slow_mode_update:
|
||||
title: "Langsom Modus"
|
||||
@ -2405,14 +2382,12 @@ nb_NO:
|
||||
open: "Åpne emne"
|
||||
close: "Lukk emne"
|
||||
multi_select: "Velg innlegg…"
|
||||
slow_mode: "Sett sakte modus..."
|
||||
timed_update: "Sett opp tidsbestemt handling for emne…"
|
||||
pin: "Fest emne…"
|
||||
unpin: "Løsne emne…"
|
||||
unarchive: "Opphev arkivering av emne"
|
||||
archive: "Arkiver emne"
|
||||
reset_read: "Tilbakestill lesedata"
|
||||
make_public: "Gjør til offentlig emne..."
|
||||
make_private: "Gjør om til personlig melding"
|
||||
reset_bump_date: "Tilbakestille dato emnet ble flyttet øverst"
|
||||
feature:
|
||||
@ -2696,8 +2671,6 @@ nb_NO:
|
||||
rebake: "Generer HTML på nytt"
|
||||
publish_page: "Side Publisering"
|
||||
unhide: "Vis"
|
||||
change_owner: "Endre eierskap..."
|
||||
grant_badge: "Tildel merke..."
|
||||
lock_post: "Lås innlegg"
|
||||
lock_post_description: "forhindre innleggsskriveren fra å redigere dette innlegget"
|
||||
unlock_post: "Lås opp innlegg"
|
||||
@ -2711,8 +2684,6 @@ nb_NO:
|
||||
delete_topic_confirm_modal_no: "Nei, behold dette emnet"
|
||||
delete_topic_error: "Det oppstod en feil under sletting av emnet"
|
||||
delete_topic: "slett emne"
|
||||
add_post_notice: "Legg til medarbeider varsel..."
|
||||
change_post_notice: "Merknad om endring av personalet..."
|
||||
delete_post_notice: "Slett personalmerknad"
|
||||
remove_timer: "Fjern timer"
|
||||
edit_timer: "rediger timeren"
|
||||
@ -3388,13 +3359,11 @@ nb_NO:
|
||||
enabled: "Sikkert modus er påskrudd, for å skru av sikkert modus, lukk dette nettleservinduet"
|
||||
image_removed: "(bilde fjernet)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} gjenstående"
|
||||
options:
|
||||
half_hour: "30 minutter"
|
||||
one_hour: "1 time"
|
||||
two_hours: "2 timer"
|
||||
tomorrow: "Frem til i morgen"
|
||||
custom: "Egendefinert"
|
||||
set_schedule: "Angi en varslingsplan"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3418,6 +3387,9 @@ nb_NO:
|
||||
more: "Mer"
|
||||
all_categories: "Alle kategorier"
|
||||
sections:
|
||||
custom:
|
||||
save: "Lagre"
|
||||
delete: "Slett"
|
||||
about:
|
||||
header_link_text: "Om"
|
||||
messages:
|
||||
@ -3443,8 +3415,6 @@ nb_NO:
|
||||
content: "Administrator"
|
||||
badges:
|
||||
content: "Merker"
|
||||
everything:
|
||||
content: "Alt"
|
||||
faq:
|
||||
content: "O-S-S"
|
||||
groups:
|
||||
@ -3455,7 +3425,6 @@ nb_NO:
|
||||
content: "Mine innlegg"
|
||||
review:
|
||||
content: "Gjennomgang"
|
||||
until: "Inntil:"
|
||||
admin_js:
|
||||
type_to_filter: "skriv for å filtrere…"
|
||||
admin:
|
||||
@ -3618,8 +3587,6 @@ nb_NO:
|
||||
user: "Bruker"
|
||||
title: "API"
|
||||
created: Opprettet
|
||||
updated: Oppdatert
|
||||
never_used: (aldri)
|
||||
generate: "Generer API-nøkkel"
|
||||
revoke: "Trekk tilbake"
|
||||
all_users: "Alle brukere"
|
||||
@ -3900,7 +3867,6 @@ nb_NO:
|
||||
no_overwrite: "Ugyldig variabelnavn. Kan ikke overskrive en eksisterende variabel."
|
||||
must_be_unique: "Ugyldig variabelnavn. Må være unikt."
|
||||
upload: "Last opp"
|
||||
discard: "Forkast"
|
||||
css_html: "Egendefinert CSS/HTML"
|
||||
edit_css_html: "Rediger CSS/HTML"
|
||||
edit_css_html_help: "Du har ikke redigert noe CSS eller HTML"
|
||||
@ -3908,7 +3874,6 @@ nb_NO:
|
||||
import_web_tip: "Pakkebrønn inneholdende drakt"
|
||||
is_private: "Drakten er i et privat git repository"
|
||||
public_key: "Gi den følgende public keyen tilgang til repoet:"
|
||||
install: "Installer"
|
||||
installed: "Installert"
|
||||
install_popular: "Populært"
|
||||
about_theme: "Om"
|
||||
@ -3916,7 +3881,6 @@ nb_NO:
|
||||
version: "Versjon:"
|
||||
enable: "Aktiver"
|
||||
disable: "Deaktiver"
|
||||
disabled: "Denne komponenten har blitt deaktivert."
|
||||
update_to_latest: "Oppdater til seneste"
|
||||
check_for_updates: "Se etter oppdateringer"
|
||||
updating: "Oppdaterer…"
|
||||
@ -4339,7 +4303,6 @@ nb_NO:
|
||||
staged: "Arrangert?"
|
||||
show_admin_profile: "Admin"
|
||||
show_public_profile: "Vis offentlig profil"
|
||||
impersonate: "Gi deg ut for å være en annen"
|
||||
action_logs: "Handlingslogger"
|
||||
ip_lookup: "IP Lookup"
|
||||
log_out: "Logg ut"
|
||||
@ -4566,9 +4529,7 @@ nb_NO:
|
||||
dashboard: "Dashbord"
|
||||
navigation: "Navigasjon"
|
||||
default_categories:
|
||||
modal_description: "Ønsker du å bruke denne endringens historikk? Dette vil endre innstillinger for %{count} eksisterende brukere."
|
||||
modal_yes: "Ja"
|
||||
modal_no: "Nei, bare gjelder endring fremover"
|
||||
badges:
|
||||
title: Merker
|
||||
new_badge: Nytt merke
|
||||
|
||||
@ -156,26 +156,26 @@ nl:
|
||||
removed_group: "Heeft %{who} %{when} verwijderd"
|
||||
autobumped: "Heeft %{when} automatisch gebumpt"
|
||||
autoclosed:
|
||||
enabled: "%{when} Gesloten"
|
||||
disabled: "%{when} Geopend"
|
||||
enabled: "%{when} gesloten"
|
||||
disabled: "%{when} geopend"
|
||||
closed:
|
||||
enabled: "%{when} Gesloten"
|
||||
disabled: "%{when} Geopend"
|
||||
enabled: "%{when} gesloten"
|
||||
disabled: "%{when} geopend"
|
||||
archived:
|
||||
enabled: "%{when} Gearchiveerd"
|
||||
disabled: "%{when} Gedearchiveerd"
|
||||
enabled: "%{when} gearchiveerd"
|
||||
disabled: "%{when} gedearchiveerd"
|
||||
pinned:
|
||||
enabled: "%{when} Vastgemaakt"
|
||||
disabled: "%{when} Losgemaakt"
|
||||
enabled: "%{when} vastgemaakt"
|
||||
disabled: "%{when} losgemaakt"
|
||||
pinned_globally:
|
||||
enabled: "%{when} Globaal vastgemaakt"
|
||||
enabled: "%{when} globaal vastgemaakt"
|
||||
disabled: "%{when} Losgemaakt"
|
||||
visible:
|
||||
enabled: "%{when} Zichtbaar gemaakt"
|
||||
disabled: "%{when} Onzichtbaar gemaakt"
|
||||
enabled: "%{when} zichtbaar gemaakt"
|
||||
disabled: "%{when} onzichtbaar gemaakt"
|
||||
banner:
|
||||
enabled: "Heeft deze banner %{when} gemaakt. De banner wordt weergegeven bovenaan elke pagina, totdat de gebruiker deze sluit."
|
||||
disabled: "Heeft deze banner %{when} verwijderd. De banner wordt niet meer weergegeven bovenaan elke pagina."
|
||||
enabled: "Banner gemaakt op %{when}. De banner wordt weergegeven bovenaan elke pagina totdat de gebruiker deze sluit."
|
||||
disabled: "Deze banner verwijderd op %{when}. De banner wordt niet meer weergegeven bovenaan elke pagina."
|
||||
forwarded: "Heeft de bovenstaande e-mail doorgestuurd"
|
||||
topic_admin_menu: "topicacties"
|
||||
skip_to_main_content: "Overslaan naar hoofdinhoud"
|
||||
@ -974,11 +974,6 @@ nl:
|
||||
profile: "Profiel"
|
||||
mute: "Dempen"
|
||||
edit: "Voorkeuren bewerken"
|
||||
download_archive:
|
||||
button_text: "Alles downloaden"
|
||||
confirm: "Weet je zeker dat je je berichten wilt downloaden?"
|
||||
success: "Download is gestart, je ontvangt een melding zodra het proces is voltooid."
|
||||
rate_limit_error: "Berichten kunnen één keer per dag worden gedownload. Probeer het morgen opnieuw."
|
||||
new_private_message: "Nieuw bericht"
|
||||
private_message: "Bericht"
|
||||
private_messages: "Berichten"
|
||||
@ -2152,8 +2147,6 @@ nl:
|
||||
topic_template_not_modified: "Voeg details en specifieke informatie toe aan je topic door het topicsjabloon te bewerken."
|
||||
save_edit: "Bewerking opslaan"
|
||||
overwrite_edit: "Bewerking overschrijven"
|
||||
reply_original: "Antwoorden op oorspronkelijke topic"
|
||||
reply_here: "Hier antwoorden"
|
||||
reply: "Antwoorden"
|
||||
cancel: "Annuleren"
|
||||
create_topic: "Topic maken"
|
||||
@ -2725,8 +2718,6 @@ nl:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Blader door alle categorieën</a>, <a href='%{basePath}/latest'>bekijk de nieuwste topics</a> of zie de top:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Blader door alle tags</a> of <a href='%{basePath}/latest'>bekijk de nieuwste topics</a>."
|
||||
suggest_create_topic: Klaar om <a href>een nieuw gesprek te beginnen?</a>
|
||||
jump_reply_up: naar eerder antwoord springen
|
||||
jump_reply_down: naar later antwoord springen
|
||||
deleted: "Het topic is verwijderd"
|
||||
slow_mode_update:
|
||||
title: "Langzame modus"
|
||||
@ -3091,9 +3082,6 @@ nl:
|
||||
collapse: "samenvouwen"
|
||||
sr_collapse_replies: "Ingesloten antwoorden samenvouwen"
|
||||
sr_date: "Plaatsingsdatum"
|
||||
sr_expand_replies:
|
||||
one: "Dit bericht heeft %{count} reactie. Klik om uit te vouwen"
|
||||
other: "Dit bericht heeft %{count} reacties. Klik om uit te vouwen"
|
||||
expand_collapse: "uitvouwen/samenvouwen"
|
||||
sr_below_embedded_posts_description: "antwoorden op bericht %{post_number}"
|
||||
sr_embedded_reply_description: "antwoord van @%{username} op bericht %{post_number}"
|
||||
@ -3949,13 +3937,11 @@ nl:
|
||||
pause_notifications:
|
||||
title: "Meldingen pauzeren voor..."
|
||||
label: "Meldingen pauzeren"
|
||||
remaining: "%{remaining} resterend"
|
||||
options:
|
||||
half_hour: "30 minuten"
|
||||
one_hour: "1 uur"
|
||||
two_hours: "2 uur"
|
||||
tomorrow: "Tot morgen"
|
||||
custom: "Aangepast"
|
||||
set_schedule: "Stel een meldingsschema in"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4005,6 +3991,9 @@ nl:
|
||||
all_categories: "Alle categorieën"
|
||||
all_tags: "Alle tags"
|
||||
sections:
|
||||
custom:
|
||||
save: "Opslaan"
|
||||
delete: "Verwijderen"
|
||||
about:
|
||||
header_link_text: "Over"
|
||||
messages:
|
||||
@ -5195,7 +5184,6 @@ nl:
|
||||
show_admin_profile: "Beheerder"
|
||||
manage_user: "Gebruiker beheren"
|
||||
show_public_profile: "Openbaar profiel weergeven"
|
||||
impersonate: "Imiteren"
|
||||
action_logs: "Actielogs"
|
||||
ip_lookup: "IP-adres zoeken"
|
||||
log_out: "Afmelden"
|
||||
|
||||
@ -1088,11 +1088,6 @@ pl_PL:
|
||||
profile: "Profil"
|
||||
mute: "Wycisz"
|
||||
edit: "Edytuj ustawienia"
|
||||
download_archive:
|
||||
button_text: "Pobierz Wszystko"
|
||||
confirm: "Czy na pewno chcesz pobrać swoje posty?"
|
||||
success: "Rozpoczęto eksport: otrzymasz wiadomość, gdy proces zostanie zakończony."
|
||||
rate_limit_error: "Posty mogą być pobierane raz dziennie, spróbuj ponownie jutro."
|
||||
new_private_message: "Nowa wiadomość"
|
||||
private_message: "Wiadomość"
|
||||
private_messages: "Wiadomości"
|
||||
@ -2230,8 +2225,6 @@ pl_PL:
|
||||
topic_template_not_modified: "Dodaj szczegóły i szczegóły do swojego tematu, edytując szablon tematu."
|
||||
save_edit: "Zapisz zmiany"
|
||||
overwrite_edit: "Zastąp edycję"
|
||||
reply_original: "Odpowiedz na Oryginalny Temat"
|
||||
reply_here: "Odpowiedz tutaj"
|
||||
reply: "Odpowiedz"
|
||||
cancel: "Anuluj"
|
||||
create_topic: "Utwórz temat"
|
||||
@ -2829,8 +2822,6 @@ pl_PL:
|
||||
read_more: "Chcesz przeczytać więcej? <a href='%{categoryLink}'>Przeglądaj wszystkie kategorie</a> lub <a href='%{latestLink}'>przeglądaj najnowsze tematy</a>."
|
||||
unread_indicator: "Nikt jeszcze nie czytał ostatniego postu w tym temacie."
|
||||
suggest_create_topic: Gotowy na <a href>rozpoczęcie nowej rozmowy?</a>
|
||||
jump_reply_up: skocz do wcześniejszej odpowiedzi
|
||||
jump_reply_down: skocz do późniejszej odpowiedzi
|
||||
deleted: "Temat został usunięty"
|
||||
slow_mode_update:
|
||||
title: "Tryb powolny"
|
||||
@ -3225,11 +3216,6 @@ pl_PL:
|
||||
collapse: "zawalić się"
|
||||
sr_collapse_replies: "Zwiń osadzone odpowiedzi"
|
||||
sr_date: "Data wysłania"
|
||||
sr_expand_replies:
|
||||
one: "Ten post ma %{count} odpowiedź. Kliknij, aby rozwinąć"
|
||||
few: "Ten post ma %{count} odpowiedzi. Kliknij, aby rozwinąć"
|
||||
many: "Ten post ma %{count} odpowiedzi. Kliknij, aby rozwinąć"
|
||||
other: "Ten post ma %{count} odpowiedzi. Kliknij, aby rozwinąć"
|
||||
expand_collapse: "rozwiń/zwiń"
|
||||
sr_below_embedded_posts_description: "post #%{post_number} odpowiedzi"
|
||||
sr_embedded_reply_description: "odpowiedź od @%{username} na post #%{post_number}"
|
||||
@ -4172,13 +4158,11 @@ pl_PL:
|
||||
pause_notifications:
|
||||
title: "Wstrzymaj powiadomienia na..."
|
||||
label: "Wstrzymaj powiadomienia"
|
||||
remaining: "%{remaining} pozostało"
|
||||
options:
|
||||
half_hour: "30 minut"
|
||||
one_hour: "1 godzina"
|
||||
two_hours: "2 godziny"
|
||||
tomorrow: "Do jutra"
|
||||
custom: "Niestandardowe"
|
||||
set_schedule: "Ustaw harmonogram powiadomień"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4230,6 +4214,9 @@ pl_PL:
|
||||
all_categories: "Wszystkie kategorie"
|
||||
all_tags: "Wszystkie tagi"
|
||||
sections:
|
||||
custom:
|
||||
save: "Zapisz"
|
||||
delete: "Usuń"
|
||||
about:
|
||||
header_link_text: "O stronie"
|
||||
messages:
|
||||
@ -5426,7 +5413,6 @@ pl_PL:
|
||||
show_admin_profile: "Administrator"
|
||||
manage_user: "Zarządzaj użytkownikiem"
|
||||
show_public_profile: "Pokaż profil publiczny"
|
||||
impersonate: "Podszywaj się"
|
||||
action_logs: "Logi akcji"
|
||||
ip_lookup: "Wyszukiwanie IP"
|
||||
log_out: "Wyloguj"
|
||||
|
||||
@ -952,11 +952,6 @@ pt:
|
||||
profile: "Perfil"
|
||||
mute: "Silenciar"
|
||||
edit: "Editar Preferências"
|
||||
download_archive:
|
||||
button_text: "Transferir Tudo"
|
||||
confirm: "Tem a certeza que deseja transferir as suas mensagens?"
|
||||
success: "Transferência iniciada, será notificado via mensagem assim que o processo estiver concluído."
|
||||
rate_limit_error: "As mensagens podem ser transferidas uma vez por dia, por favor, tente novamente amanhã."
|
||||
new_private_message: "Nova Mensagem"
|
||||
private_message: "Mensagem"
|
||||
private_messages: "Mensagens"
|
||||
@ -1933,8 +1928,6 @@ pt:
|
||||
topic_template_not_modified: "Adicione detalhes e especificações ao tópico, editando o modelo de tópico."
|
||||
save_edit: "Guardar Edição"
|
||||
overwrite_edit: "Guardar Edição"
|
||||
reply_original: "Responder no Tópico Original"
|
||||
reply_here: "Responda Aqui"
|
||||
reply: "Responder"
|
||||
cancel: "Cancelar"
|
||||
create_topic: "Criar Tópico"
|
||||
@ -2381,8 +2374,6 @@ pt:
|
||||
expand_details: "expandir detalhes do tópico"
|
||||
unread_indicator: "Nenhum membro leu o último post deste tópico ainda."
|
||||
suggest_create_topic: Pronto para <a href>iniciar uma nova conversa?</a>
|
||||
jump_reply_up: avançar para resposta mais recente
|
||||
jump_reply_down: avançar para resposta mais antiga
|
||||
deleted: "Este tópico foi eliminado"
|
||||
slow_mode_update:
|
||||
title: "Modo lento"
|
||||
@ -2530,7 +2521,6 @@ pt:
|
||||
unarchive: "Desarquivar Tópico"
|
||||
archive: "Arquivar Tópico"
|
||||
reset_read: "Repor Data de Leitura"
|
||||
make_public: "Criar tópico publico..."
|
||||
make_private: "Tornar Mensagem Pessoal"
|
||||
reset_bump_date: "Reset à Data do Bump"
|
||||
feature:
|
||||
@ -2813,7 +2803,6 @@ pt:
|
||||
publish_page: "Publicação de Página"
|
||||
unhide: "Mostrar"
|
||||
change_owner: "Alterar Proprietário..."
|
||||
grant_badge: "Atribuir Crachá..."
|
||||
lock_post: "Bloquear Post"
|
||||
lock_post_description: "impedir o autor de editar esta publicação"
|
||||
unlock_post: "Desbloquear Post"
|
||||
@ -2824,8 +2813,6 @@ pt:
|
||||
delete_topic_confirm_modal_no: "Não, mantenha este tópico"
|
||||
delete_topic_error: "Ocorreu um erro ao excluir este tópico"
|
||||
delete_topic: "eliminar tópico"
|
||||
add_post_notice: "Adicionar Nota da Equipe..."
|
||||
change_post_notice: "Alterar Aviso da Equipa..."
|
||||
delete_post_notice: "Apagar Aviso da Equipa"
|
||||
remove_timer: "remover timer"
|
||||
edit_timer: "editar temporizador"
|
||||
@ -3442,7 +3429,6 @@ pt:
|
||||
topics:
|
||||
none:
|
||||
unread: "Não tem tópicos por ler."
|
||||
unseen: "Não tem tópicos por ler."
|
||||
new: "Não tem novos tópicos."
|
||||
read: "Ainda não leu nenhum tópico."
|
||||
posted: "Ainda não publicou em qualquer tópico."
|
||||
@ -3466,14 +3452,11 @@ pt:
|
||||
enabled: "O modo de segurança está activado, para sair do modo de segurança feche esta janela do navegador"
|
||||
image_removed: "(imagem removida)"
|
||||
pause_notifications:
|
||||
label: "Pausar notificações"
|
||||
remaining: "%{remaining} restante"
|
||||
options:
|
||||
half_hour: "30 minutos"
|
||||
one_hour: "1 hora"
|
||||
two_hours: "2 horas"
|
||||
tomorrow: "Até amanhã"
|
||||
custom: "Personalizar"
|
||||
set_schedule: "Definir um horário de notificação"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3493,6 +3476,9 @@ pt:
|
||||
more: "Mais"
|
||||
all_categories: "Todas as categorias"
|
||||
sections:
|
||||
custom:
|
||||
save: "Guardar"
|
||||
delete: "Eliminar"
|
||||
about:
|
||||
header_link_text: "Sobre"
|
||||
messages:
|
||||
@ -3518,8 +3504,6 @@ pt:
|
||||
content: "Administrador"
|
||||
badges:
|
||||
content: "Crachás"
|
||||
everything:
|
||||
content: "Tudo"
|
||||
faq:
|
||||
content: "FAQ"
|
||||
groups:
|
||||
@ -3530,7 +3514,6 @@ pt:
|
||||
content: "As Minhas publicações"
|
||||
review:
|
||||
content: "Revisão"
|
||||
until: "Até:"
|
||||
admin_js:
|
||||
type_to_filter: "digite para filtrar..."
|
||||
admin:
|
||||
@ -3824,8 +3807,6 @@ pt:
|
||||
change_settings: "Alterar Configurações"
|
||||
change_settings_short: "Configurações"
|
||||
howto: "Como instalo plugins?"
|
||||
navigation_menu:
|
||||
sidebar: "Barra Lateral"
|
||||
backups:
|
||||
title: "Fazer Cópias de Segurança"
|
||||
menu:
|
||||
@ -4156,9 +4137,6 @@ pt:
|
||||
address_placeholder: "nome@exemplo.com"
|
||||
type_placeholder: "resumo, subscrever..."
|
||||
reply_key_placeholder: "chave de resposta"
|
||||
moderation_history:
|
||||
actions:
|
||||
delete_topic: "Tópico eliminado"
|
||||
logs:
|
||||
title: "Logs"
|
||||
action: "Ação"
|
||||
@ -4377,7 +4355,6 @@ pt:
|
||||
staged: "Temporário?"
|
||||
show_admin_profile: "Administração"
|
||||
show_public_profile: "Mostrar Perfil Público"
|
||||
impersonate: "Personificar"
|
||||
ip_lookup: "Pesquisa de IP"
|
||||
log_out: "Sair"
|
||||
logged_out: "Sessão do utilizador encerrada em todos os dispositivos"
|
||||
|
||||
@ -145,7 +145,7 @@ pt_BR:
|
||||
email: "Enviar por e-mail"
|
||||
url: "Copiar e compartilhar a URL"
|
||||
action_codes:
|
||||
public_topic: "Tornou este tópico público em %{when}"
|
||||
public_topic: "Tornou este tópico público %{when}"
|
||||
open_topic: "Converteu isto em um tópico %{when}"
|
||||
private_topic: "Tornou este tópico em uma mensagem pessoal %{when}"
|
||||
split_topic: "Dividiu este tópico %{when}"
|
||||
@ -156,26 +156,26 @@ pt_BR:
|
||||
removed_group: "Removeu %{who} %{when}"
|
||||
autobumped: "Automaticamente promovido %{when}"
|
||||
autoclosed:
|
||||
enabled: "Fechou %{when}"
|
||||
disabled: "Abriu %{when}"
|
||||
enabled: "Fechado %{when}"
|
||||
disabled: "Aberto %{when}"
|
||||
closed:
|
||||
enabled: "Fechou %{when}"
|
||||
disabled: "Abriu %{when}"
|
||||
enabled: "Fechado %{when}"
|
||||
disabled: "Aberto %{when}"
|
||||
archived:
|
||||
enabled: "Arquivou %{when}"
|
||||
disabled: "Desarquivou %{when}"
|
||||
enabled: "Arquivado %{when}"
|
||||
disabled: "Desarquivado %{when}"
|
||||
pinned:
|
||||
enabled: "Fixou %{when}"
|
||||
disabled: "Desafixou %{when}"
|
||||
enabled: "Fixado %{when}"
|
||||
disabled: "Desafixado %{when}"
|
||||
pinned_globally:
|
||||
enabled: "Fixou globalmente %{when}"
|
||||
disabled: "Desafixou %{when}"
|
||||
enabled: "Fixado globalmente %{when}"
|
||||
disabled: "Desafixado %{when}"
|
||||
visible:
|
||||
enabled: "Listou %{when} atrás"
|
||||
enabled: "Listado %{when}"
|
||||
disabled: "Removeu da lista %{when} atrás"
|
||||
banner:
|
||||
enabled: "Tornou isto um banner %{when} atrás. Isso será mostrado no topo de todas as páginas até que seja descartado pelo(a) usuário(a)."
|
||||
disabled: "Removeu este banner %{when} atrás. Ele não irá mais aparecer no topo de todas as páginas."
|
||||
enabled: "Transformado em banner %{when}. Ele será mostrado no topo de cada página até que seja descartado pelo(a) usuário(a)."
|
||||
disabled: "Removido este banner %{when}. Ele não irá mais aparecer no topo de cada página."
|
||||
forwarded: "Encaminhou o e-mail acima"
|
||||
topic_admin_menu: "ações de tópico"
|
||||
skip_to_main_content: "Ir para o conteúdo principal"
|
||||
@ -974,11 +974,6 @@ pt_BR:
|
||||
profile: "Perfil"
|
||||
mute: "Silenciar"
|
||||
edit: "Editar preferências"
|
||||
download_archive:
|
||||
button_text: "Baixar tudo"
|
||||
confirm: "Tem certeza de que deseja baixar suas postagens?"
|
||||
success: "Transferência iniciada, você receberá notificação por mensagem quando o processo estiver concluído."
|
||||
rate_limit_error: "Postagens podem ser baixadas somente uma vez por dia, tente novamente amanhã."
|
||||
new_private_message: "Nova mensagem"
|
||||
private_message: "Mensagem"
|
||||
private_messages: "Mensagens"
|
||||
@ -2152,8 +2147,6 @@ pt_BR:
|
||||
topic_template_not_modified: "Adicione detalhes e especificações ao seu tópico editando o modelo do tópico."
|
||||
save_edit: "Salvar edição"
|
||||
overwrite_edit: "Sobrescrever edição"
|
||||
reply_original: "Responder no tópico original"
|
||||
reply_here: "Responder aqui"
|
||||
reply: "Responder"
|
||||
cancel: "Cancelar"
|
||||
create_topic: "Criar tópico"
|
||||
@ -2725,8 +2718,6 @@ pt_BR:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Navegue por todas as categorias</a>, <a href='%{basePath}/latest'>veja os tópicos mais recentes</a> ou veja os principais:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Navegue por todas as etiquetas</a> ou <a href='%{basePath}/latest'>visualize os tópicos mais recentes</a>."
|
||||
suggest_create_topic: Tudo pronto para <a href>começar uma nova conversa?</a>
|
||||
jump_reply_up: pular para a primeira resposta
|
||||
jump_reply_down: pular para a última resposta
|
||||
deleted: "Este tópico foi excluído"
|
||||
slow_mode_update:
|
||||
title: "Modo lento"
|
||||
@ -3091,9 +3082,6 @@ pt_BR:
|
||||
collapse: "recolher"
|
||||
sr_collapse_replies: "Recolher respostas incorporadas"
|
||||
sr_date: "Data da postagem"
|
||||
sr_expand_replies:
|
||||
one: "Esta postagem tem %{count} resposta. Clique para expandir"
|
||||
other: "Esta postagem tem %{count} respostas. Clique para expandir"
|
||||
expand_collapse: "expandir/recolher"
|
||||
sr_below_embedded_posts_description: "poste #%{post_number} respostas"
|
||||
sr_embedded_reply_description: "resposta por @%{username} à postagem #%{post_number}"
|
||||
@ -3949,13 +3937,11 @@ pt_BR:
|
||||
pause_notifications:
|
||||
title: "Pausar notificações para..."
|
||||
label: "Pausar notificações"
|
||||
remaining: "%{remaining} restante(s)"
|
||||
options:
|
||||
half_hour: "30 minutos"
|
||||
one_hour: "1 hora"
|
||||
two_hours: "2 horas"
|
||||
tomorrow: "Até amanhã"
|
||||
custom: "Personalizado(a)"
|
||||
set_schedule: "Definir agendamento de notificação"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4005,6 +3991,9 @@ pt_BR:
|
||||
all_categories: "Todas as categorias"
|
||||
all_tags: "Todas as etiquetas"
|
||||
sections:
|
||||
custom:
|
||||
save: "Salvar"
|
||||
delete: "Excluir"
|
||||
about:
|
||||
header_link_text: "Sobre"
|
||||
messages:
|
||||
@ -4454,7 +4443,7 @@ pt_BR:
|
||||
official: "Plug-in oficial"
|
||||
broken_route: "Não foi possível configurar o link para \"%{name}\". Verifique se os bloqueadores de anúncios estão desativados e tente recarregar a página."
|
||||
navigation_menu:
|
||||
sidebar: "Barra Lateral"
|
||||
sidebar: "Barra lateral"
|
||||
header_dropdown: "Menu dropdown de cabeçalho"
|
||||
legacy: "Legado"
|
||||
backups:
|
||||
@ -5196,7 +5185,6 @@ pt_BR:
|
||||
show_admin_profile: "Administrador(a)"
|
||||
manage_user: "Gerenciar usuário"
|
||||
show_public_profile: "Exibir perfil público"
|
||||
impersonate: "Representar"
|
||||
action_logs: "Registro de atividades"
|
||||
ip_lookup: "Pesquisa do IP"
|
||||
log_out: "Sair"
|
||||
|
||||
@ -87,10 +87,6 @@ ro:
|
||||
date_month: "DD MMMM"
|
||||
date_year: "MMM 'YY"
|
||||
medium:
|
||||
less_than_x_minutes:
|
||||
one: "mai puțin de %{count} de minute în urmă"
|
||||
few: "cu mai puțin de %{count} minute în urmă"
|
||||
other: "cu mai puțin de %{count} minute în urmă"
|
||||
x_minutes:
|
||||
one: "%{count} min"
|
||||
few: "%{count} min"
|
||||
@ -107,10 +103,6 @@ ro:
|
||||
one: "%{count} zi"
|
||||
few: "%{count} zile"
|
||||
other: "%{count} de zile"
|
||||
x_months:
|
||||
one: "%{count} lună"
|
||||
few: "%{count} luni"
|
||||
other: "%{count} luni"
|
||||
about_x_years:
|
||||
one: "aproximativ %{count} an"
|
||||
few: "aproximativ %{count} ani"
|
||||
@ -881,14 +873,6 @@ ro:
|
||||
topic_stat_unit:
|
||||
week: "săptămană"
|
||||
month: "lună"
|
||||
topic_stat_sentence_week:
|
||||
one: "%{count} subiect nou în ultima săptămână."
|
||||
few: "%{count} subiecte noi în ultima săptămână."
|
||||
other: "%{count} subiecte noi în ultima săptămână."
|
||||
topic_stat_sentence_month:
|
||||
one: "%{count} subiect nou în ultima lună."
|
||||
few: "%{count} subiecte noi în ultima lună."
|
||||
other: "%{count} subiecte noi în ultima lună."
|
||||
n_more: "Categorii (%{count} mai multe)..."
|
||||
ip_lookup:
|
||||
title: Căutare adresă IP
|
||||
@ -914,11 +898,6 @@ ro:
|
||||
profile: "Profil"
|
||||
mute: "Silențios"
|
||||
edit: "Editează preferințe"
|
||||
download_archive:
|
||||
button_text: "Descarcă tot"
|
||||
confirm: "Ești sigur că vrei să îți descarci postările?"
|
||||
success: "Descărcarea a început, vei fi notificat printr-un mesaj atunci când procesul se va termina."
|
||||
rate_limit_error: "Postările pot fi descărcate doar o singură dată pe zi, te rugăm să încerci din nou mâine."
|
||||
new_private_message: "Mesaj nou"
|
||||
private_message: "Mesaj"
|
||||
private_messages: "Mesaje"
|
||||
@ -1365,9 +1344,6 @@ ro:
|
||||
valid_for: "Link-ul de invitare este valid doar pentru următoarele adrese de email: %{email}"
|
||||
invite_link:
|
||||
success: "Link de invitare generat cu succes!"
|
||||
invite:
|
||||
show_advanced: "Afișați opțiunile avansate"
|
||||
hide_advanced: "Ascundeți opțiunile avansate"
|
||||
bulk_invite:
|
||||
none: "Nu există invitații de afișat pe această pagină."
|
||||
text: "Invitație în masă"
|
||||
@ -1704,8 +1680,6 @@ ro:
|
||||
try_like: "Ai încercat butonul %{heart}?"
|
||||
category_missing: "Trebuie să alegi o categorie"
|
||||
save_edit: "Salvează editarea"
|
||||
reply_original: "Răspunde la subiectul inițial"
|
||||
reply_here: "Răspunde aici"
|
||||
reply: "Răspunde"
|
||||
cancel: "Anulează"
|
||||
create_topic: "Creează un subiect"
|
||||
@ -1957,11 +1931,9 @@ ro:
|
||||
dismiss_new: "Anulează cele noi"
|
||||
toggle: "activează selecția multiplă a subiectelor"
|
||||
actions: "Acțiuni multiple"
|
||||
change_category: "Alege categoria..."
|
||||
close_topics: "Închide subiectele"
|
||||
archive_topics: "Arhivează subiectele"
|
||||
move_messages_to_inbox: "Mută în „Primite”"
|
||||
notification_level: "Notificări..."
|
||||
choose_new_category: "Alege o nouă categorie pentru acest subiect"
|
||||
selected:
|
||||
one: "Ai selectat <b>un</b> subiect."
|
||||
@ -2044,8 +2016,6 @@ ro:
|
||||
options: "Opțiuni pentru subiect"
|
||||
show_links: "arată link-urile din acest subiect"
|
||||
suggest_create_topic: Ești gata să <a href>începi o nouă conversație?</a>
|
||||
jump_reply_up: sări la un răspuns mai vechi
|
||||
jump_reply_down: sări la un răspuns mai nou
|
||||
deleted: "Subiectul a fost șters"
|
||||
slow_mode_update:
|
||||
title: "Modul lent"
|
||||
@ -2053,19 +2023,7 @@ ro:
|
||||
description: "Pentru a promova discuții aprofundate în mișcare rapidă sau controversate, utilizatorii trebuie să aștepte înainte de a posta din nou pe acest subiect."
|
||||
enable: "Activează"
|
||||
remove: "Dezactivează"
|
||||
hours: "Ore:"
|
||||
minutes: "De minute:"
|
||||
durations:
|
||||
10_minutes: "10 De minute"
|
||||
15_minutes: "15 De minute"
|
||||
30_minutes: "30 De minute"
|
||||
45_minutes: "45 De minute"
|
||||
1_hour: "1 Oră"
|
||||
2_hours: "2 Ore"
|
||||
4_hours: "4 Ore"
|
||||
8_hours: "8 Ore"
|
||||
12_hours: "12 Ore"
|
||||
24_hours: "24 Ore"
|
||||
custom: "Durată personalizată"
|
||||
topic_status_update:
|
||||
title: "Temporizator subiect"
|
||||
@ -2111,7 +2069,6 @@ ro:
|
||||
title: Evoluția subiectului
|
||||
jump_prompt: "sari la..."
|
||||
jump_prompt_long: "Sari la..."
|
||||
jump_prompt_to_date: "la data"
|
||||
jump_prompt_or: "sau"
|
||||
notifications:
|
||||
title: schimbă frecvența cu care vei fi notificat despre acest subiect
|
||||
@ -2171,7 +2128,6 @@ ro:
|
||||
archive: "Arhivează subiect"
|
||||
invisible: "Ascunde subiectul"
|
||||
reset_read: "Resetează datele despre subiecte citite"
|
||||
make_public: "Transformă în subiect public..."
|
||||
make_private: "Transformă în mesaj privat"
|
||||
feature:
|
||||
pin: "Fixează subiectul"
|
||||
@ -2391,8 +2347,6 @@ ro:
|
||||
revert_to_regular: "Șterge culoarea pentru membrii echipei"
|
||||
rebake: "Reconstruieşte HTML"
|
||||
unhide: "Arată"
|
||||
change_owner: "Schimbă proprietarul..."
|
||||
grant_badge: "Acordă ecuson..."
|
||||
lock_post: "Blochează postarea"
|
||||
unlock_post: "Deblochează postarea"
|
||||
delete_topic_disallowed_modal: "Nu ai permisiuni suficiente pentru a șterge această discuție. Dacă vrei ca ea să fie ștearsă, marcheaz-o trimițând un mesaj explicativ moderatorului."
|
||||
@ -2545,7 +2499,6 @@ ro:
|
||||
options:
|
||||
normal: "Normal"
|
||||
ignore: "Ignoră"
|
||||
low: "Scăzut"
|
||||
high: "Ridicată"
|
||||
sort_options:
|
||||
default: "implicit"
|
||||
@ -2568,7 +2521,6 @@ ro:
|
||||
flagging:
|
||||
title: "Îți mulțumim că ne ajuți să păstrăm o comunitate civilizată!"
|
||||
action: "Marcare"
|
||||
take_action: "Acționează..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Acționează"
|
||||
@ -2909,7 +2861,6 @@ ro:
|
||||
save: "Salvează"
|
||||
delete: "Șterge"
|
||||
confirm_delete: "Ești sigur că vrei să ștergi acest grup de etichete?"
|
||||
parent_tag_placeholder: "Opțional"
|
||||
topics:
|
||||
none:
|
||||
unread: "Nu ai niciun subiect necitit."
|
||||
@ -2930,13 +2881,11 @@ ro:
|
||||
safe_mode:
|
||||
enabled: "Modul sigur este activat, pentru a ieși din modul sigur închide această fereastră de browser"
|
||||
pause_notifications:
|
||||
remaining: "a mai rămas %{remaining} ..."
|
||||
options:
|
||||
half_hour: "30 de minute"
|
||||
one_hour: "1 oră"
|
||||
two_hours: "2 ore"
|
||||
tomorrow: "Până mâine"
|
||||
custom: "Personalizat"
|
||||
set_schedule: "Setați un program de notificare"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -2966,6 +2915,9 @@ ro:
|
||||
more: "Mai multe"
|
||||
all_categories: "Toate categoriile"
|
||||
sections:
|
||||
custom:
|
||||
save: "Salvare"
|
||||
delete: "Șterge"
|
||||
about:
|
||||
header_link_text: "Despre"
|
||||
messages:
|
||||
@ -2991,8 +2943,6 @@ ro:
|
||||
content: "Administrator"
|
||||
badges:
|
||||
content: "Ecusoane"
|
||||
everything:
|
||||
content: "Totul"
|
||||
faq:
|
||||
content: "Întrebări frecvente"
|
||||
groups:
|
||||
@ -3003,7 +2953,6 @@ ro:
|
||||
content: "Postările mele"
|
||||
review:
|
||||
content: "Revizuire"
|
||||
until: "Pana cand:"
|
||||
admin_js:
|
||||
type_to_filter: "tastează pentru a filtra..."
|
||||
admin:
|
||||
@ -3027,7 +2976,6 @@ ro:
|
||||
latest_version: "Ultima"
|
||||
new_features:
|
||||
dismiss: "Înlătură"
|
||||
learn_more: "Află mai multe"
|
||||
last_checked: "Ultima verificare"
|
||||
refresh_problems: "Reîmprospătează"
|
||||
no_problems: "Nu a apărut nicio problemă."
|
||||
@ -3111,7 +3059,6 @@ ro:
|
||||
title: "API"
|
||||
created: Creat
|
||||
updated: Actualizat
|
||||
never_used: (niciodată)
|
||||
generate: "Generare"
|
||||
revoke: "Revocă"
|
||||
all_users: "Toți utilizatorii"
|
||||
@ -3386,7 +3333,6 @@ ro:
|
||||
name: "selectat"
|
||||
email_style:
|
||||
css: "CSS"
|
||||
reset: "Resetare la valorile implicite"
|
||||
email:
|
||||
title: "Email"
|
||||
settings: "Opțiuni"
|
||||
@ -3644,7 +3590,6 @@ ro:
|
||||
staged: "În așteptare?"
|
||||
show_admin_profile: "Admin"
|
||||
show_public_profile: "Arată profilul public"
|
||||
impersonate: "Joacă rolul utilizatorului"
|
||||
ip_lookup: "Căutare IP"
|
||||
log_out: "Ieșire"
|
||||
logged_out: "Acest utilizator a ieșit de pe toate dispozitivele"
|
||||
|
||||
@ -544,7 +544,7 @@ ru:
|
||||
reject_reason: "Причина"
|
||||
user_percentage:
|
||||
summary:
|
||||
one: "%{agreed}, %{disagreed}, %{ignored}"
|
||||
one: "%{agreed}, %{disagreed}, %{ignored} (из %{count} жалобы)"
|
||||
few: "%{agreed}, %{disagreed}, %{ignored} (из %{count} жалоб)"
|
||||
many: "%{agreed}, %{disagreed}, %{ignored} (из %{count} жалоб)"
|
||||
other: "%{agreed}, %{disagreed}, %{ignored} (из %{count} жалобы)"
|
||||
@ -1088,11 +1088,6 @@ ru:
|
||||
profile: "Профиль"
|
||||
mute: "Отключить"
|
||||
edit: "Изменить настройки"
|
||||
download_archive:
|
||||
button_text: "Скачать всё"
|
||||
confirm: "Действительно скачать записи?"
|
||||
success: "Скачивание началось, вы будете уведомлены об окончании процесса."
|
||||
rate_limit_error: "Записи могут быть скачаны лишь раз в день, попробуйте завтра."
|
||||
new_private_message: "Новое сообщение"
|
||||
private_message: "Сообщение"
|
||||
private_messages: "Сообщения"
|
||||
@ -2358,8 +2353,6 @@ ru:
|
||||
topic_template_not_modified: "Впишите подробности темы в шаблон."
|
||||
save_edit: "Сохранить"
|
||||
overwrite_edit: "Перезаписать"
|
||||
reply_original: "Ответить в первоначальной теме"
|
||||
reply_here: "Ответить в текущей теме"
|
||||
reply: "Ответить"
|
||||
cancel: "Отмена"
|
||||
create_topic: "Создать тему"
|
||||
@ -3005,8 +2998,6 @@ ru:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Просмотрите все категории</a>, <a href='%{basePath}/latest'>ознакомьтесь с последними</a> или самыми популярными темами:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Просмотрите все теги</a> или <a href='%{basePath}/latest'>ознакомьтесь с последними темами</a>."
|
||||
suggest_create_topic: Готовы <a href>начать новое обсуждение</a>?
|
||||
jump_reply_up: Перейти к более ранним ответам
|
||||
jump_reply_down: Перейти к более поздним ответам
|
||||
deleted: "Тема удалена"
|
||||
slow_mode_update:
|
||||
title: "Замедленный режим"
|
||||
@ -3401,11 +3392,6 @@ ru:
|
||||
collapse: "свернуть"
|
||||
sr_collapse_replies: "Свернуть встроенные ответы"
|
||||
sr_date: "Дата записи"
|
||||
sr_expand_replies:
|
||||
one: "На эту запись есть %{count} ответ. Нажмите для просмотра."
|
||||
few: "На эту запись есть %{count} ответа. Нажмите для просмотра."
|
||||
many: "На эту запись есть %{count} ответов. Нажмите для просмотра."
|
||||
other: "На эту запись есть %{count} ответа. Нажмите для просмотра."
|
||||
expand_collapse: "развернуть/свернуть"
|
||||
sr_below_embedded_posts_description: "ответы на запись #%{post_number}"
|
||||
sr_embedded_reply_description: "ответ пользователя @%{username} на запись #%{post_number}"
|
||||
@ -4353,13 +4339,11 @@ ru:
|
||||
pause_notifications:
|
||||
title: "Приостановить уведомления на…"
|
||||
label: "Приостановить уведомления"
|
||||
remaining: "Осталось %{remaining}"
|
||||
options:
|
||||
half_hour: "В течение 30 минут"
|
||||
one_hour: "В течение 1 часа"
|
||||
two_hours: "В течение 2 часов"
|
||||
tomorrow: "До завтра"
|
||||
custom: "Указать продолжительность"
|
||||
set_schedule: "Настроить расписание уведомлений"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4413,6 +4397,9 @@ ru:
|
||||
all_categories: "Все категории"
|
||||
all_tags: "Все теги"
|
||||
sections:
|
||||
custom:
|
||||
save: "Сохранить"
|
||||
delete: "Удалить"
|
||||
about:
|
||||
header_link_text: "Информация"
|
||||
messages:
|
||||
@ -5629,7 +5616,6 @@ ru:
|
||||
show_admin_profile: "Администратор"
|
||||
manage_user: "Управление пользователем"
|
||||
show_public_profile: "Показать публичный профиль"
|
||||
impersonate: "Войти от имени пользователя"
|
||||
action_logs: "Журналы действий"
|
||||
ip_lookup: "Поиск IP"
|
||||
log_out: "Выйти"
|
||||
|
||||
@ -670,11 +670,6 @@ sk:
|
||||
profile: "Profil"
|
||||
mute: "Ignorovať"
|
||||
edit: "Upraviť nastavenia"
|
||||
download_archive:
|
||||
button_text: "Stiahnuť všetko"
|
||||
confirm: "Si si istý, že si chceš uložiť svoje príspevky na disk?"
|
||||
success: "Sťahovanie bolo spustené, o jeho ukončení budeš informovaný správou."
|
||||
rate_limit_error: "Príspevky možu byť stiahnuté len raz za deň. Skús opäť zajtra prosím."
|
||||
new_private_message: "Nová správa"
|
||||
private_message: "Správa"
|
||||
private_messages: "Správy"
|
||||
@ -887,7 +882,6 @@ sk:
|
||||
primary: "Primárny e-mail"
|
||||
secondary: "Sekundárne e-maily"
|
||||
primary_label: "primárny"
|
||||
resent_label: "email odoslaný"
|
||||
update_email: "Zmeniť email"
|
||||
no_secondary: "Žiadne sekundárne e-maily"
|
||||
ok: "Pošleme vám email pre potvrdenie"
|
||||
@ -1286,8 +1280,6 @@ sk:
|
||||
title_missing: "Názov je povinný"
|
||||
category_missing: "Musíte vybrať kategóriu"
|
||||
save_edit: "Uložiť úpravy"
|
||||
reply_original: "Odpovedať na pôvodnú tému"
|
||||
reply_here: "Odpovedať tu"
|
||||
reply: "Odpovedať"
|
||||
cancel: "Zrušiť"
|
||||
create_topic: "Vytvoriť tému"
|
||||
@ -1441,7 +1433,6 @@ sk:
|
||||
close_topics: "Uzavrieť tému"
|
||||
archive_topics: "Archivuj témy"
|
||||
move_messages_to_inbox: "Presuň do prijatej pošty"
|
||||
notification_level: "Upozornenia..."
|
||||
choose_new_category: "Vyberte pre tému novú kategóriu:"
|
||||
selected:
|
||||
one: "Označíli ste <b>%{count}</b> tému."
|
||||
@ -1522,8 +1513,6 @@ sk:
|
||||
back_to_list: "Naspäť na zoznam tém"
|
||||
options: "Možnosti tém"
|
||||
show_links: "zobrazovať odkazy v tejto téme"
|
||||
jump_reply_up: prejsť na predchádzajúcu odpoveď
|
||||
jump_reply_down: prejsť na nasledujúcu odpoveď
|
||||
deleted: "Téma bola vymazaná"
|
||||
slow_mode_update:
|
||||
enable: "Zapnúť"
|
||||
@ -1605,7 +1594,6 @@ sk:
|
||||
unarchive: "Zruš archiváciu témy"
|
||||
archive: "Archívuj tému"
|
||||
reset_read: "Zrušiť načítané údaje"
|
||||
make_public: "Spraviť verejnou témou..."
|
||||
feature:
|
||||
pin: "Pripni tému"
|
||||
unpin: "Odopni tému"
|
||||
@ -1808,8 +1796,6 @@ sk:
|
||||
revert_to_regular: "Odobrať farbu personálu"
|
||||
rebake: "Pregenerovať HTML"
|
||||
unhide: "Odokryť"
|
||||
change_owner: "Zmeniť vlastníctvo..."
|
||||
grant_badge: "Udeliť odznak..."
|
||||
lock_post: "Zamknúť príspevok"
|
||||
unlock_post: "Odblokovať príspevok"
|
||||
delete_topic: "odstrániť tému"
|
||||
@ -1931,7 +1917,6 @@ sk:
|
||||
flagging:
|
||||
title: "Ďakujeme, že pomáhate udržiavať slušnosť v našej komunite!"
|
||||
action: "Označ príspevok"
|
||||
take_action: "Vykonať akciu..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Vykonať akciu"
|
||||
@ -2245,7 +2230,6 @@ sk:
|
||||
save: "Uložiť"
|
||||
delete: "Vymazať"
|
||||
confirm_delete: "Ste si istý, že chcete zmazať túto skupinu štítkov?"
|
||||
parent_tag_placeholder: "Nepovinné"
|
||||
topics:
|
||||
none:
|
||||
unread: "Nemáte žiadnu neprečítanú tému"
|
||||
@ -2261,10 +2245,6 @@ sk:
|
||||
back: "Späť"
|
||||
share: "Zdieľať"
|
||||
dismiss: "Zahodiť"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} zostáva"
|
||||
options:
|
||||
custom: "Vlastné"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "nový používateľ"
|
||||
@ -2286,6 +2266,9 @@ sk:
|
||||
more: "Viac"
|
||||
all_categories: "Všetky kategórie"
|
||||
sections:
|
||||
custom:
|
||||
save: "Uložiť"
|
||||
delete: "Odstrániť"
|
||||
about:
|
||||
header_link_text: "O stránke"
|
||||
messages:
|
||||
@ -2342,7 +2325,6 @@ sk:
|
||||
latest_version: "Najnovšie"
|
||||
new_features:
|
||||
dismiss: "Zahodiť"
|
||||
learn_more: "Zistiť viac"
|
||||
last_checked: "Naposledy overené"
|
||||
refresh_problems: "Obnoviť"
|
||||
no_problems: "Nenašli sa žiadne problémy."
|
||||
@ -2431,7 +2413,6 @@ sk:
|
||||
user: "Používateľ"
|
||||
title: "API"
|
||||
created: Vytvorené
|
||||
never_used: (nikdy)
|
||||
generate: "Generovať"
|
||||
revoke: "Zrušiť"
|
||||
all_users: "Všetci používatelia"
|
||||
@ -2853,7 +2834,6 @@ sk:
|
||||
staged: "Dočasný?"
|
||||
show_admin_profile: "Admin"
|
||||
show_public_profile: "Ukázať verejný profil"
|
||||
impersonate: "Privlastniť"
|
||||
ip_lookup: "Vyhľadávanie IP"
|
||||
log_out: "Odhlásiť sa"
|
||||
logged_out: "Používateľ bol odhlásený na všetkých zariadeniach"
|
||||
|
||||
@ -907,11 +907,6 @@ sl:
|
||||
profile: "Profil"
|
||||
mute: "Utišaj"
|
||||
edit: "Uredi Nastavitve"
|
||||
download_archive:
|
||||
button_text: "Prenesi vse"
|
||||
confirm: "Ste prepričani, da želite prenesti svoje prispevke?"
|
||||
success: "Prenos se je začel, obveščeni boste s sporočilom, ko bo prenos končan."
|
||||
rate_limit_error: "Prispevki so lahko prevešene enkrat dnevno, poskusi ponovno jutri."
|
||||
new_private_message: "Novo ZS"
|
||||
private_message: "Zasebno sporočilo"
|
||||
private_messages: "Zasebna sporočila"
|
||||
@ -1415,7 +1410,6 @@ sl:
|
||||
invite:
|
||||
new_title: "Ustvari povabilo"
|
||||
instructions: "Delite to povezavo in takoj omogočite dostop do te strani:"
|
||||
expires_in_time: "Poteče čez %{time}"
|
||||
show_advanced: "Pokaži dodatne možnosti"
|
||||
add_to_groups: "Dodaj v skupine"
|
||||
expires_at: "Poteče po"
|
||||
@ -1825,8 +1819,6 @@ sl:
|
||||
topic_template_not_modified: "Dodajte podrobnosti in značilnosti v vašo temo tako da uredite predlogo teme."
|
||||
save_edit: "Shrani spremembe"
|
||||
overwrite_edit: "Prepiši spremembo"
|
||||
reply_original: "Odgovori v izvorni temi"
|
||||
reply_here: "Odgovori tu"
|
||||
reply: "Odgovori"
|
||||
cancel: "Prekliči"
|
||||
create_topic: "Objavi temo"
|
||||
@ -2131,11 +2123,9 @@ sl:
|
||||
dismiss_new: "Opusti nove"
|
||||
toggle: "preklopi množično izbiro tem"
|
||||
actions: "Množična dejanja"
|
||||
change_category: "Določi kategorijo..."
|
||||
close_topics: "Zapri teme"
|
||||
archive_topics: "Arhiviraj teme"
|
||||
move_messages_to_inbox: "Prestavi v Prejeto"
|
||||
notification_level: "Obvestila..."
|
||||
change_notification_level: "Spremeni raven obveščanja"
|
||||
choose_new_category: "Izberi novo kategorijo za temo:"
|
||||
selected:
|
||||
@ -2229,8 +2219,6 @@ sl:
|
||||
options: "Možnosti teme"
|
||||
show_links: "pokaži povezave v tej temi"
|
||||
unread_indicator: "Noben član ni še prebral zadnjega prispevka v tej temi."
|
||||
jump_reply_up: pojdi na prejšni odgovor
|
||||
jump_reply_down: pojdi na naslednji odgovor
|
||||
deleted: "Tema je bila izbrisana"
|
||||
slow_mode_update:
|
||||
title: "Počasni način"
|
||||
@ -2366,14 +2354,12 @@ sl:
|
||||
open: "Odpri temo"
|
||||
close: "Zapri temo"
|
||||
multi_select: "Izberite prispevke..."
|
||||
slow_mode: "Nastavi počasni način..."
|
||||
timed_update: "Nastavi opomnik teme..."
|
||||
pin: "Pripni temo"
|
||||
unpin: "Odpni temo"
|
||||
unarchive: "Odarhiviraj temo"
|
||||
archive: "Arhiviraj temo"
|
||||
reset_read: "Ponastavi podatke o branosti"
|
||||
make_public: "Spremeni v javno temo..."
|
||||
make_private: "Spremeni v ZS"
|
||||
reset_bump_date: "Ponastavi izpostavljanje"
|
||||
feature:
|
||||
@ -2668,8 +2654,6 @@ sl:
|
||||
rebake: "Obnovi HTML"
|
||||
publish_page: "Objavljanje strani"
|
||||
unhide: "Ponovni prikaži"
|
||||
change_owner: "Spremeni lastnika..."
|
||||
grant_badge: "Podeli značko..."
|
||||
lock_post: "Zakleni prispevek"
|
||||
lock_post_description: "onemogoči avtorju da ureja prispevek"
|
||||
unlock_post: "Odkleni prispevek"
|
||||
@ -2682,8 +2666,6 @@ sl:
|
||||
few: "Ta tema ima trenutno več kot %{count} oglede in je morda priljubljena tarča iskanja. Ali ste prepričani, da želite to temo v celoti izbrisati, namesto da bi jo z urejanjem poskusili izboljšati?"
|
||||
other: "Ta tema ima trenutno več kot %{count} ogledov in je morda priljubljena tarča iskanja. Ali ste prepričani, da želite to temo v celoti izbrisati, namesto da bi jo z urejanjem poskusili izboljšati?"
|
||||
delete_topic: "izbriši temo"
|
||||
add_post_notice: "Dodaj obvestilo osebja..."
|
||||
change_post_notice: "Spremeni obvestilo osebja..."
|
||||
delete_post_notice: "Odstrani obvestilo osebja"
|
||||
remove_timer: "odstrani opomnik"
|
||||
edit_timer: "uredi časovnik"
|
||||
@ -2884,7 +2866,6 @@ sl:
|
||||
flagging:
|
||||
title: "Hvala, da pomagate ohraniti prijazno skupnost!"
|
||||
action: "Prijavi prispevek"
|
||||
take_action: "Ukrepaj..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Ukrepaj"
|
||||
@ -3325,7 +3306,6 @@ sl:
|
||||
everyone_can_use: "Oznake lahko uporablja kdorkoli"
|
||||
usable_only_by_groups: "Oznake so vidne vsem, vendar jih lahko uporabljajo le naslednje skupine"
|
||||
visible_only_to_groups: "Oznake so vidne le naslednjim skupinam"
|
||||
parent_tag_placeholder: "Neobvezno"
|
||||
topics:
|
||||
none:
|
||||
unread: "Nimate neprebranih tem."
|
||||
@ -3351,13 +3331,11 @@ sl:
|
||||
enabled: "Varni način je vklopljen, za izklop varnega načina zaprite okno brskalnika."
|
||||
image_removed: "(slika odstranjena)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} preostalo"
|
||||
options:
|
||||
half_hour: "30 minut"
|
||||
one_hour: "1 ura"
|
||||
two_hours: "2 uri"
|
||||
tomorrow: "Do jutri"
|
||||
custom: "Po meri"
|
||||
set_schedule: "Nastavi razpored obveščanja"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3380,6 +3358,9 @@ sl:
|
||||
more: "Več"
|
||||
all_categories: "Vse kategorije"
|
||||
sections:
|
||||
custom:
|
||||
save: "Shrani"
|
||||
delete: "Izbriši"
|
||||
about:
|
||||
header_link_text: "O nas"
|
||||
messages:
|
||||
@ -3405,8 +3386,6 @@ sl:
|
||||
content: "Admin"
|
||||
badges:
|
||||
content: "Značke"
|
||||
everything:
|
||||
content: "Vse"
|
||||
faq:
|
||||
content: "Pravila skupnosti"
|
||||
groups:
|
||||
@ -3417,7 +3396,6 @@ sl:
|
||||
content: "Moji prispevki"
|
||||
review:
|
||||
content: "Pregled"
|
||||
until: "Do:"
|
||||
admin_js:
|
||||
type_to_filter: "vnesite za filter..."
|
||||
admin:
|
||||
@ -3576,7 +3554,6 @@ sl:
|
||||
user: "Uporabnik"
|
||||
title: "API"
|
||||
created: Ustvarjeno
|
||||
never_used: (nikoli)
|
||||
generate: "Ustvari"
|
||||
revoke: "Prekliči"
|
||||
all_users: "Vsi uporabniki"
|
||||
@ -4002,7 +3979,6 @@ sl:
|
||||
staged: "Prirejen?"
|
||||
show_admin_profile: "Admin"
|
||||
show_public_profile: "Pokaži javni profil"
|
||||
impersonate: "Poosebi uporabnika"
|
||||
action_logs: "Dnevnik akcij"
|
||||
ip_lookup: "Poizvedba IP"
|
||||
log_out: "Odjava"
|
||||
|
||||
@ -273,7 +273,6 @@ sq:
|
||||
save: "Ruaj"
|
||||
cancel: "Anulo"
|
||||
filters:
|
||||
all_categories: "(të gjitha kategoritë)"
|
||||
type:
|
||||
title: "Lloji"
|
||||
refresh: "Rifresko"
|
||||
@ -497,10 +496,6 @@ sq:
|
||||
profile: "Profili"
|
||||
mute: "Hesht"
|
||||
edit: "Ndrysho preferencat"
|
||||
download_archive:
|
||||
confirm: "Vërtet doni t'i shkarkoni postimet tuaja?"
|
||||
success: "Shkarkimi filloi, do të njoftoheni me një mesazh kur të jetë gati. "
|
||||
rate_limit_error: "Postimet mund të shkarkohen një herë në ditë, provoni përsëri nesër. "
|
||||
new_private_message: "Mesazh i ri"
|
||||
private_message: "Mesazh"
|
||||
private_messages: "Mesazhet"
|
||||
@ -675,7 +670,6 @@ sq:
|
||||
email:
|
||||
title: "Email"
|
||||
primary_label: "parësor"
|
||||
resent_label: "emaili u dërgua"
|
||||
update_email: "Ndrysho email"
|
||||
instructions: "Mos e shfaq në publik."
|
||||
ok: "Do ju nisim emailin e konfirmimit"
|
||||
@ -1031,8 +1025,6 @@ sq:
|
||||
title_missing: "Titulli është i nevojshëm"
|
||||
category_missing: "Duhet të zgjidhni një kategori"
|
||||
save_edit: "Ruani modifikimet"
|
||||
reply_original: "Përgjigjuni temës origjinale"
|
||||
reply_here: "Përgjigju këtu"
|
||||
reply: "Përgjigju"
|
||||
cancel: "Anulo"
|
||||
create_topic: "Krijo temën"
|
||||
@ -1170,7 +1162,6 @@ sq:
|
||||
close_topics: "Mbyll temat"
|
||||
archive_topics: "Arkivo temat"
|
||||
move_messages_to_inbox: "Transfero në inbox"
|
||||
notification_level: "Njoftimet..."
|
||||
choose_new_category: "Zgjidhni kategorinë e re për temat: "
|
||||
selected:
|
||||
one: "Keni zgjedhur <b>%{count}</b> temë."
|
||||
@ -1239,8 +1230,6 @@ sq:
|
||||
back_to_list: "Kthehu tek lista e temave"
|
||||
options: "Opsionet e temës"
|
||||
show_links: "trego lidhjet në këtë temë"
|
||||
jump_reply_up: hidhe tek përgjigja paraardhëse
|
||||
jump_reply_down: hidhu tek përgjigja pasardhëse
|
||||
deleted: "Tema është fshirë"
|
||||
slow_mode_update:
|
||||
enable: "Aktivizo"
|
||||
@ -1315,7 +1304,6 @@ sq:
|
||||
unarchive: "Çarkivoje temën"
|
||||
archive: "Arkivoje temën"
|
||||
reset_read: "Reset Read Data"
|
||||
make_public: "Bëje temën publike..."
|
||||
feature:
|
||||
pin: "Ngjite temën"
|
||||
unpin: "Çngjite temën"
|
||||
@ -1491,8 +1479,6 @@ sq:
|
||||
revert_to_regular: "Hiq ngjyrën e stafit"
|
||||
rebake: "Rindërtoni HTML"
|
||||
unhide: "Çfshi"
|
||||
change_owner: "Ndrysho zotëruesin..."
|
||||
grant_badge: "Dhuroni Stemë..."
|
||||
delete_topic: "fshi temën"
|
||||
actions:
|
||||
people:
|
||||
@ -1613,7 +1599,6 @@ sq:
|
||||
flagging:
|
||||
title: "Faleminderit për ndihmën që i jepni këtij komuniteti!"
|
||||
action: "Sinjalizo postimin"
|
||||
take_action: "Vepro..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Vepro"
|
||||
@ -1922,10 +1907,6 @@ sq:
|
||||
back: "Kthehu mbrapa"
|
||||
share: "Shpërndaje"
|
||||
dismiss: "Hiqe"
|
||||
pause_notifications:
|
||||
remaining: "edhe %{remaining} gërmë"
|
||||
options:
|
||||
custom: "Grupet e krijuara"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "anëtar i ri"
|
||||
@ -1943,6 +1924,9 @@ sq:
|
||||
more: "Më shumë"
|
||||
all_categories: "Të gjitha kategoritë"
|
||||
sections:
|
||||
custom:
|
||||
save: "Ruaj"
|
||||
delete: "Fshij"
|
||||
about:
|
||||
header_link_text: "Rreth"
|
||||
messages:
|
||||
@ -1999,7 +1983,6 @@ sq:
|
||||
latest_version: "Të fundit"
|
||||
new_features:
|
||||
dismiss: "Hiqe"
|
||||
learn_more: "Mëso më shumë"
|
||||
last_checked: "Verifikimi i fundit"
|
||||
refresh_problems: "Rifresko"
|
||||
no_problems: "Nuk u gjet asnjë gabim."
|
||||
@ -2073,7 +2056,6 @@ sq:
|
||||
user: "Përdorues"
|
||||
title: "API"
|
||||
created: Krijuar
|
||||
never_used: (asnjëherë)
|
||||
generate: "Gjenero"
|
||||
revoke: "Revoko"
|
||||
all_users: "Gjithë Përdoruesit"
|
||||
@ -2464,7 +2446,6 @@ sq:
|
||||
staged: "Staged?"
|
||||
show_admin_profile: "Admin"
|
||||
show_public_profile: "Shfaq Profilin Publik"
|
||||
impersonate: "Personifiko"
|
||||
ip_lookup: "Shiko IP"
|
||||
log_out: "Shkëputu"
|
||||
logged_out: "Përdoruesi i shkëput nga të gjitha paisjet"
|
||||
|
||||
@ -130,10 +130,6 @@ sr:
|
||||
one: "%{count} дан раније"
|
||||
few: "%{count} дана раније"
|
||||
other: "%{count} дана раније"
|
||||
x_months:
|
||||
one: "pre %{count} mesec dana"
|
||||
few: "pre %{count} mesec dana"
|
||||
other: "pre %{count} mesec dana"
|
||||
later:
|
||||
x_days:
|
||||
one: "%{count} дан касније"
|
||||
@ -453,8 +449,6 @@ sr:
|
||||
types:
|
||||
reviewable_user:
|
||||
title: "Korisnik"
|
||||
reviewable_post:
|
||||
title: "Post"
|
||||
approval:
|
||||
title: "Potrebno odobrenje"
|
||||
description: "Primili smo tvoj novi post ali on najpre mora biti odobren od strane moderatora. Budi strpljiv."
|
||||
@ -615,7 +609,7 @@ sr:
|
||||
"12": "Poslato"
|
||||
"13": "Primljeno"
|
||||
"14": "U toku"
|
||||
"15": "Нацрти"
|
||||
"15": "Drafts"
|
||||
categories:
|
||||
all: "sve kategorije"
|
||||
all_subcategories: "sve"
|
||||
@ -656,8 +650,6 @@ sr:
|
||||
profile: "Profil"
|
||||
mute: "Utišaj"
|
||||
edit: "Uredi postavke"
|
||||
download_archive:
|
||||
rate_limit_error: "Poruke mogu biti preuzimate jednom na dan, molimo pokušajte sutra."
|
||||
new_private_message: "Nova privatna poruka"
|
||||
private_message: "Privatna poruka"
|
||||
private_messages: "Poruke"
|
||||
@ -686,7 +678,6 @@ sr:
|
||||
trust_level: "Nivo poverenja"
|
||||
notifications: "Obaveštenja"
|
||||
statistics: "Statistike"
|
||||
dismiss: "Одбаци"
|
||||
dismiss_notifications_tooltip: "Označi sve nepročitana obavestenja kao pročitana"
|
||||
color_schemes:
|
||||
regular: "Stalni član"
|
||||
@ -791,7 +782,6 @@ sr:
|
||||
email:
|
||||
title: "E-mail"
|
||||
primary_label: "primarna"
|
||||
resent_label: "email je poslat"
|
||||
update_email: "Promeni e-mail"
|
||||
ok: "Poslaćemo vam e-mail za potvrdu"
|
||||
invalid: "Molimo unesite validnu e-mail adresu"
|
||||
@ -890,9 +880,6 @@ sr:
|
||||
create: "Pozovi"
|
||||
invite_link:
|
||||
success: "Link pozivnice je uspešno kreiran!"
|
||||
invite:
|
||||
show_advanced: "Прикажи напредне опције"
|
||||
hide_advanced: "Сакриј напредне опције"
|
||||
password:
|
||||
title: "Šifra"
|
||||
too_short: "Vaša šifra je prekratka."
|
||||
@ -963,12 +950,8 @@ sr:
|
||||
title: "Profilna Slika"
|
||||
title:
|
||||
title: "Naslov"
|
||||
none: "(ništa)"
|
||||
flair:
|
||||
none: "(ništa)"
|
||||
primary_group:
|
||||
title: "Primarna Grupa"
|
||||
none: "(ništa)"
|
||||
filters:
|
||||
all: "Sve"
|
||||
stream:
|
||||
@ -1103,8 +1086,6 @@ sr:
|
||||
title_missing: "Naslov je obavezan"
|
||||
category_missing: "Morate odabrati kategoriju"
|
||||
save_edit: "Sačuvaj izmenu"
|
||||
reply_original: "Odgovori na originalnu temu"
|
||||
reply_here: "Odgovori ovde"
|
||||
reply: "Odgovori"
|
||||
cancel: "Odustani"
|
||||
create_topic: "Kreiraj temu"
|
||||
@ -1208,13 +1189,11 @@ sr:
|
||||
select_all: "Izaberi sve"
|
||||
defer: "Odloži"
|
||||
delete: "Obriši Teme"
|
||||
dismiss: "Одбаци"
|
||||
dismiss_new: "Odbaci Novo"
|
||||
toggle: "uključi/isključi grupni odabir tema"
|
||||
actions: "Grupne aktivnosti"
|
||||
close_topics: "Zatvori Teme"
|
||||
archive_topics: "Arhiviraj teme"
|
||||
notification_level: "Obaveštenja..."
|
||||
choose_new_category: "Izaberite novu kategoriju za vašu temu."
|
||||
selected:
|
||||
one: "Odabrali ste <b>%{count}</b> temu."
|
||||
@ -1278,8 +1257,6 @@ sr:
|
||||
back_to_list: "Nazad na listu tema"
|
||||
options: "Opcije Teme"
|
||||
show_links: "Prikaži linkove u ovoj temi"
|
||||
jump_reply_up: skoči na raniji odgovor
|
||||
jump_reply_down: skoči na kasniji odgovor
|
||||
deleted: "Tema je obrisana"
|
||||
slow_mode_update:
|
||||
enable: "Omogući"
|
||||
@ -1298,7 +1275,6 @@ sr:
|
||||
replies_short: "%{current} / %{total}"
|
||||
progress:
|
||||
title: napredak teme
|
||||
jump_prompt_to_date: "до датума"
|
||||
jump_prompt_or: "ili"
|
||||
notifications:
|
||||
reasons:
|
||||
@ -1340,7 +1316,6 @@ sr:
|
||||
unarchive: "Vrati temu iz arhiva"
|
||||
archive: "Arhiviraj temu"
|
||||
reset_read: "Poništi podatke o pročitanom"
|
||||
make_public: "Napravi javnu temu..."
|
||||
feature:
|
||||
pin: "Zakači temu"
|
||||
unpin: "Otkači temu"
|
||||
@ -1464,7 +1439,6 @@ sr:
|
||||
revert_to_regular: "Ukloni Boje Osoblja"
|
||||
rebake: "Popravi HTML"
|
||||
unhide: "Poništi sakrivanje"
|
||||
grant_badge: "Dodeli Značku..."
|
||||
delete_topic: "obriši temu"
|
||||
actions:
|
||||
by_you:
|
||||
@ -1564,7 +1538,6 @@ sr:
|
||||
flagging:
|
||||
title: "Hvala što pomažete u održavanju naše zajednice pristojnom."
|
||||
action: "Označi Poruku Zastavom"
|
||||
take_action: "Preduzmi Akciju..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Preduzmi Akciju"
|
||||
@ -1762,7 +1735,6 @@ sr:
|
||||
few: "+još %{count} član"
|
||||
other: "+još %{count} član"
|
||||
select_badge_for_title: Odaberi značku koju češ koristit kao titulu
|
||||
none: "(ništa)"
|
||||
badge_grouping:
|
||||
getting_started:
|
||||
name: Početak
|
||||
@ -1808,10 +1780,6 @@ sr:
|
||||
footer_nav:
|
||||
back: "Nazad"
|
||||
share: "Podeli"
|
||||
dismiss: "Одбаци"
|
||||
pause_notifications:
|
||||
options:
|
||||
custom: "Posebna"
|
||||
trust_levels:
|
||||
names:
|
||||
member: "član"
|
||||
@ -1828,6 +1796,9 @@ sr:
|
||||
other: "%{count} nova"
|
||||
more: "Više"
|
||||
sections:
|
||||
custom:
|
||||
save: "Sačuvaj"
|
||||
delete: "Obriši"
|
||||
about:
|
||||
header_link_text: "O nama"
|
||||
messages:
|
||||
@ -1880,9 +1851,6 @@ sr:
|
||||
version_check_pending: "Čini se da ste nedavno nadogradili. Fantastično!"
|
||||
installed_version: "Instalirano"
|
||||
latest_version: "Poslednje"
|
||||
new_features:
|
||||
dismiss: "Одбаци"
|
||||
learn_more: "Saznaj više"
|
||||
last_checked: "Zadnje provereno"
|
||||
refresh_problems: "Osveži"
|
||||
no_problems: "Nisu pronađeni problemi."
|
||||
@ -1941,7 +1909,6 @@ sr:
|
||||
user: "Korisnik"
|
||||
title: "API"
|
||||
created: Napravljeno
|
||||
never_used: (nikad)
|
||||
generate: "Generiši"
|
||||
revoke: "Povuci"
|
||||
all_users: "Svi korisnici"
|
||||
@ -2264,7 +2231,6 @@ sr:
|
||||
suspended: "Suspendovan?"
|
||||
show_admin_profile: "Administrator"
|
||||
show_public_profile: "Pokaži javni profil"
|
||||
impersonate: "Predstavi se kao"
|
||||
ip_lookup: "IP Pregled"
|
||||
log_out: "Odjava"
|
||||
logged_out: "Korisnik je odjavljen sa svih uređaja"
|
||||
@ -2518,7 +2484,6 @@ sr:
|
||||
topic_id: "ID Teme"
|
||||
topic_title: "Tema"
|
||||
post_id: "ID Poruke"
|
||||
post_title: "Post"
|
||||
category_title: "Kategorija"
|
||||
form:
|
||||
label: "Novo:"
|
||||
|
||||
@ -303,6 +303,8 @@ sv:
|
||||
edit_bookmark: "Redigera bokmärke"
|
||||
clear_bookmarks: "Töm bokmärken"
|
||||
help:
|
||||
bookmark: "Klicka för att bokmärka detta ämne"
|
||||
edit_bookmark: "Klicka för att redigera bokmärket på ett inlägg i detta ämne"
|
||||
edit_bookmark_for_topic: "Klicka för att redigera bokmärket för detta ämne"
|
||||
unbookmark: "Klicka för att radera alla bokmärken i ämnet"
|
||||
unbookmark_with_reminder: "Klicka för att ta bort alla bokmärken och påminnelser i detta ämne"
|
||||
@ -976,10 +978,12 @@ sv:
|
||||
mute: "Tysta"
|
||||
edit: "Redigera inställningar"
|
||||
download_archive:
|
||||
button_text: "Ladda ner alla"
|
||||
confirm: "Är du säker på att du vill ladda ner dina inlägg?"
|
||||
success: "Nedladdning påbörjad, du kommer att aviseras via meddelande när processen är klar."
|
||||
rate_limit_error: "Inlägg kan laddas ner en gång per dag, försök igen imorgon."
|
||||
title: "Exportera dina data"
|
||||
description: "Ladda ner ett arkiv med din kontoaktivitet och dina inställningar."
|
||||
button_text: "Begär arkiv"
|
||||
confirm: "Vill du verkligen ladda ner ett arkiv med din kontoaktivitet och dina inställningar?"
|
||||
success: "Vi har börjat samla in ditt arkiv och meddelar dig när den processen är klar."
|
||||
rate_limit_error: "Kontoarkiv kan laddas ner en gång per dag, försök igen imorgon."
|
||||
new_private_message: "Nytt meddelande"
|
||||
private_message: "Meddelande"
|
||||
private_messages: "Meddelanden"
|
||||
@ -2129,8 +2133,6 @@ sv:
|
||||
topic_template_not_modified: "Lägg till detaljer och specifikationer till ditt ämne genom att redigera ämnesmallen."
|
||||
save_edit: "Spara ändring"
|
||||
overwrite_edit: "Överskriv redigering"
|
||||
reply_original: "Svara på ursprungsämnet"
|
||||
reply_here: "Svara här"
|
||||
reply: "Svara"
|
||||
cancel: "Avbryt"
|
||||
create_topic: "Skapa ämne"
|
||||
@ -2702,8 +2704,8 @@ sv:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Bläddra bland alla kategorier</a>, <a href='%{basePath}/latest'>visa senaste ämnen</a> eller se toppämnen:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Bläddra bland alla taggar</a> eller <a href='%{basePath}/latest'>visa senaste ämnen</a>."
|
||||
suggest_create_topic: Redo att <a href>starta ett nytt samtal?</a>
|
||||
jump_reply_up: hoppa till tidigare svar
|
||||
jump_reply_down: hoppa till senare svar
|
||||
jump_reply: "Hoppa till inläggets ursprungliga plats"
|
||||
jump_reply_aria: "Hoppa till @%{username}s inlägg på dess ursprungliga plats"
|
||||
deleted: "Ämnet har raderats"
|
||||
slow_mode_update:
|
||||
title: "Långsamt läge"
|
||||
@ -3058,6 +3060,7 @@ sv:
|
||||
ignored: "Ignorerat innehåll"
|
||||
wiki_last_edited_on: "wiki redigerades senast den %{dateTime}"
|
||||
last_edited_on: "inlägget redigerades senast den %{dateTime}"
|
||||
edit_history: "inläggets redigeringshistorik"
|
||||
reply_as_new_topic: "Svara som länkat ämne"
|
||||
reply_as_new_private_message: "Svara som nytt meddelande till samma mottagare"
|
||||
continue_discussion: "Fortsätter diskussionen från %{postLink}:"
|
||||
@ -3069,8 +3072,8 @@ sv:
|
||||
sr_collapse_replies: "Förminska inbäddade svar"
|
||||
sr_date: "Datum för inlägg"
|
||||
sr_expand_replies:
|
||||
one: "Detta inlägg har %{count} svar. Klicka för att utvidga"
|
||||
other: "Detta inlägg har %{count} svar. Klicka för att utvidga"
|
||||
one: "Detta inlägg har %{count} svar"
|
||||
other: "Detta inlägg har %{count} svar"
|
||||
expand_collapse: "utvidga/förminska"
|
||||
sr_below_embedded_posts_description: "inlägg #%{post_number} svar"
|
||||
sr_embedded_reply_description: "svar från @%{username} på inlägg #%{post_number}"
|
||||
@ -3931,13 +3934,11 @@ sv:
|
||||
pause_notifications:
|
||||
title: "Pausa aviseringar för..."
|
||||
label: "Pausa aviseringar"
|
||||
remaining: "%{remaining} kvar"
|
||||
options:
|
||||
half_hour: "30 minuter"
|
||||
one_hour: "1 timme"
|
||||
two_hours: "2 timmar"
|
||||
tomorrow: "Tills imorgon"
|
||||
custom: "Anpassad"
|
||||
set_schedule: "Ange ett aviseringsschema"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3987,6 +3988,18 @@ sv:
|
||||
all_categories: "Alla kategorier"
|
||||
all_tags: "Alla taggar"
|
||||
sections:
|
||||
custom:
|
||||
add: "Lägg till ett anpassat avsnitt"
|
||||
edit: "Redigera anpassat avsnitt"
|
||||
name: "Avsnittstitel"
|
||||
save: "Spara"
|
||||
delete: "Radera"
|
||||
delete_confirm: "Är du säker på att du vill radera det här avsnittet?"
|
||||
links:
|
||||
name: "Länknamn"
|
||||
points_to: "Pekar på"
|
||||
add: "Lägg till länk"
|
||||
delete: "Ta bort länk"
|
||||
about:
|
||||
header_link_text: "Om"
|
||||
messages:
|
||||
@ -5190,7 +5203,6 @@ sv:
|
||||
show_admin_profile: "Administratör"
|
||||
manage_user: "Hantera användare"
|
||||
show_public_profile: "Visa offentlig profil"
|
||||
impersonate: "Imitera"
|
||||
action_logs: "Åtgärdslogg"
|
||||
ip_lookup: "Slå upp IP-adress"
|
||||
log_out: "Logga ut"
|
||||
|
||||
@ -286,7 +286,6 @@ sw:
|
||||
reject_reason: "Sababu"
|
||||
topics:
|
||||
topic: "Mada"
|
||||
deleted: "[Mada Imefutwa]"
|
||||
details: "maelezo"
|
||||
unique_users:
|
||||
one: "Mtumiaji mmoja"
|
||||
@ -583,11 +582,6 @@ sw:
|
||||
profile: "Maelezo Mafupi "
|
||||
mute: "Nyamazisha"
|
||||
edit: "Hariri Mapendekezo"
|
||||
download_archive:
|
||||
button_text: "Pakua Zote"
|
||||
confirm: "Una uhakika unataka kupakua machapisho yako?"
|
||||
success: "Upakuaji umeanza, utajulishwa kwa njia ya ujumbe mfumo ukimaliza."
|
||||
rate_limit_error: "Machapisho yanaweza kupakuliwa mara moja kwa siku, tafadhali jaribu tena kesho."
|
||||
new_private_message: "Ujumbe Mpya"
|
||||
private_message: "Ujumbe"
|
||||
private_messages: "Ujumbe"
|
||||
@ -790,7 +784,6 @@ sw:
|
||||
primary: "Barua pepe ya awali"
|
||||
secondary: "Barua pepe"
|
||||
primary_label: "msingi"
|
||||
resent_label: "barua pepe imetumwa"
|
||||
update_email: "Badilisha Barua Pepe"
|
||||
ok: "Tutakutumia barua pepe kuthibitisha"
|
||||
invalid: "Andika barua pepe iliyo sahihi"
|
||||
@ -1214,8 +1207,6 @@ sw:
|
||||
title_missing: "Kichwa cha habari ni muhimu"
|
||||
category_missing: "Ni sharti uchague kategoria"
|
||||
save_edit: "Hifadhi Uhariri"
|
||||
reply_original: "Jibu kwenye Mada ya Kwanza"
|
||||
reply_here: "Jibu hapa"
|
||||
reply: "Jibu"
|
||||
cancel: "Ghairi"
|
||||
create_topic: "Unda mada"
|
||||
@ -1451,11 +1442,9 @@ sw:
|
||||
dismiss_new: "Ondosha Mpya"
|
||||
toggle: "Badili kwa wingi chaguo la topiki"
|
||||
actions: "Vitendo za Jumla"
|
||||
change_category: "Seti Kategoria..."
|
||||
close_topics: "Funga Mada"
|
||||
archive_topics: "Hifadhi Mada kwenye nyaraka"
|
||||
move_messages_to_inbox: "Hamishia kwenye kisanduku-pokezi"
|
||||
notification_level: "Taarifa..."
|
||||
choose_new_category: "Chagua kategoria mpya kwa ajili ya mada:"
|
||||
selected:
|
||||
one: "Umechagua mada <b>%{count}</b>."
|
||||
@ -1526,8 +1515,6 @@ sw:
|
||||
back_to_list: "Rudi tena kwenye Orodha ya Mada"
|
||||
options: "Machaguo ya Mada"
|
||||
show_links: "onyesha viungo ndani ya hii mada"
|
||||
jump_reply_up: fikia jibu la awali
|
||||
jump_reply_down: fikia jibu la baadaye
|
||||
deleted: "Mada imefutwa"
|
||||
slow_mode_update:
|
||||
enable: "Ruhusu"
|
||||
@ -1625,7 +1612,6 @@ sw:
|
||||
unarchive: "Ondoa Mada kwenye Nyaraka"
|
||||
archive: "Weka Mada kwenye Nyaraka"
|
||||
reset_read: "Anzisha Upya Usomaji wa Taarifa"
|
||||
make_public: "Fanya Mada iwe ya Umma..."
|
||||
make_private: "Tengeneza Ujumbe Binafsi"
|
||||
feature:
|
||||
pin: "Bandika Mada"
|
||||
@ -1809,8 +1795,6 @@ sw:
|
||||
revert_to_regular: "Ondoa Rangi ya Wasaidizi"
|
||||
rebake: "Tengeneza upya HTML"
|
||||
unhide: "Onesha"
|
||||
change_owner: "Badilisha Umiliki..."
|
||||
grant_badge: "Toa Beji..."
|
||||
lock_post: "Funga Chapisho"
|
||||
lock_post_description: "mzuie mchapishaji kuhariri chapisho hili"
|
||||
unlock_post: "Fungua Chapisho"
|
||||
@ -1958,7 +1942,6 @@ sw:
|
||||
flagging:
|
||||
title: "Asante kwa kuendeleza ustaarabu kwenye jumuiya yetu!"
|
||||
action: "Ripoti Chapisho"
|
||||
take_action: "Fanya Kitendo..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "Fanya Kitendo"
|
||||
@ -2228,7 +2211,6 @@ sw:
|
||||
delete: "Futa"
|
||||
confirm_delete: "Una uhakika unataka kufuta kikundi cha lebo hii?"
|
||||
everyone_can_use: "Lebo zinaweza kutumiwa na kila mtu"
|
||||
parent_tag_placeholder: "Sio muhimu"
|
||||
topics:
|
||||
none:
|
||||
unread: "Hauna mada ambazo hazijasomwa."
|
||||
@ -2246,9 +2228,6 @@ sw:
|
||||
back: "Nyuma"
|
||||
share: "Shirikisha"
|
||||
dismiss: "Ondosha"
|
||||
pause_notifications:
|
||||
options:
|
||||
custom: "Binafsi"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "mtumiaji mpya"
|
||||
@ -2266,6 +2245,9 @@ sw:
|
||||
more: "Zaidi"
|
||||
all_categories: "Kategoria Zote"
|
||||
sections:
|
||||
custom:
|
||||
save: "Hifadhi"
|
||||
delete: "Futa"
|
||||
about:
|
||||
header_link_text: "Kuhusu"
|
||||
messages:
|
||||
@ -2323,7 +2305,6 @@ sw:
|
||||
latest_version: "Hivi Karibuni"
|
||||
new_features:
|
||||
dismiss: "Ondosha"
|
||||
learn_more: "Jifunze zaidi"
|
||||
last_checked: "Mara ya Mwisho imeangaliwa"
|
||||
refresh_problems: "Rudisha Tena"
|
||||
no_problems: "Hakuna matatizo yaliyopatikana."
|
||||
@ -2423,7 +2404,6 @@ sw:
|
||||
user: "Mtumiaji"
|
||||
title: "API"
|
||||
created: Imetengenezwa
|
||||
never_used: (kamwe)
|
||||
generate: "Tengeneza"
|
||||
revoke: "Futa"
|
||||
all_users: "Watumiaji Wote"
|
||||
@ -2979,7 +2959,6 @@ sw:
|
||||
staged: "Sehemu ya kujaribu?"
|
||||
show_admin_profile: "Msimamizi"
|
||||
show_public_profile: "Onyesha Taarifa za Umma"
|
||||
impersonate: "Chukua Utambulisho wa Mtu Mwingine"
|
||||
action_logs: "Taarifa za Shughuli Tofauti"
|
||||
ip_lookup: "Uangalizi wa anwani ya mtandao"
|
||||
log_out: "Jitoe"
|
||||
|
||||
@ -377,9 +377,6 @@ te:
|
||||
profile: "ప్రవర"
|
||||
mute: "నిశ్శబ్దం"
|
||||
edit: "అభిరుచులు సవరించు"
|
||||
download_archive:
|
||||
confirm: "మీరు నిజంగా మీ టపాల దిగుమతి కోరుకుంటున్నారా ?"
|
||||
rate_limit_error: "టపాలు కేవలం రోజుకు ఒకసారి మాత్రమే దిగుమతించుకోగలరు. దయచేసి రేపు ప్రయత్నించండి."
|
||||
private_messages: "సందేశాలు"
|
||||
user_notifications:
|
||||
filters:
|
||||
@ -497,7 +494,6 @@ te:
|
||||
email:
|
||||
title: "ఈమెయిల్"
|
||||
primary_label: "ప్రాథమిక"
|
||||
resent_label: "ఈమెయిల్ పంపిన"
|
||||
update_email: "ఈమెయిల్ మార్చు"
|
||||
ok: "ద్రువపరుచుటకు మీకు ఈమెయిల్ పంపాము"
|
||||
invalid: "దయచేసి చెల్లుబాటులోని ఈమెయిల్ చిరునామా రాయండి"
|
||||
@ -732,8 +728,6 @@ te:
|
||||
title_missing: "శీర్షిక తప్పనిసరి"
|
||||
category_missing: "మీరు ఒక వర్గాన్ని ఎంచుకోవాలి"
|
||||
save_edit: "దాచి సవరించు"
|
||||
reply_original: "మూల విషయంకు జవాబివ్వు"
|
||||
reply_here: "ఇక్కడ జవాబివ్వు"
|
||||
reply: "జవాబు"
|
||||
cancel: "రద్దుచేయి"
|
||||
title_placeholder: "ఈ చర్చ దేనిగురించో ఒక లైనులో చెప్పండి?"
|
||||
@ -878,8 +872,6 @@ te:
|
||||
back_to_list: "విషయాల జాబితాకు మరలు"
|
||||
options: "విషయపు ఐచ్చికాలు"
|
||||
show_links: "ఈ విషయంలో లంకెలు చూపు"
|
||||
jump_reply_up: పాత జవాబుకు వెళ్లు
|
||||
jump_reply_down: తరువాతి జవాబుకు వెళ్లు
|
||||
deleted: "ఈ విషయం తొలగించబడింది"
|
||||
slow_mode_update:
|
||||
enable: "చేతనం"
|
||||
@ -1337,9 +1329,6 @@ te:
|
||||
footer_nav:
|
||||
back: "వెనుకకు"
|
||||
share: "పంచు"
|
||||
pause_notifications:
|
||||
options:
|
||||
custom: "అనురూప"
|
||||
trust_levels:
|
||||
names:
|
||||
newuser: "కొత్త సభ్యుడు"
|
||||
@ -1356,6 +1345,9 @@ te:
|
||||
other: "%{count} కొత్త"
|
||||
more: "ఇంకా"
|
||||
sections:
|
||||
custom:
|
||||
save: "భద్రపరుచు"
|
||||
delete: "తొలగించు"
|
||||
about:
|
||||
header_link_text: "గురించి"
|
||||
messages:
|
||||
@ -1795,7 +1787,6 @@ te:
|
||||
suspended: "సస్పెండయ్యాడా? "
|
||||
show_admin_profile: "అధికారి"
|
||||
show_public_profile: "ప్రజా ప్రవర చూపు"
|
||||
impersonate: "పరకాయప్రవేశం చేయి"
|
||||
ip_lookup: "ఐపీ లుకప్"
|
||||
log_out: "లాగవుట్"
|
||||
logged_out: "వినియోగదారుడు అన్ని పరికరాలు లాగవుట్ చేశారు"
|
||||
|
||||
@ -696,11 +696,6 @@ th:
|
||||
profile: "โปรไฟล์"
|
||||
mute: "ปิด"
|
||||
edit: "แก้ไขการตั้งค่า"
|
||||
download_archive:
|
||||
button_text: "ดาวน์โหลดทั้งหมด"
|
||||
confirm: "คุณแน่ใจหรือว่าต้องการดาวน์โหลดโพสต์ของคุณ"
|
||||
success: "เริ่มดาวน์โหลด คุณจะได้รับการแจ้งเตือนทางข้อความเมื่อขั้นตอนเสร็จสิ้น"
|
||||
rate_limit_error: "สามารถดาวน์โหลดโพสต์ได้วันละหนึ่งครั้งเท่านั้น กรุณาลองใหม่พรุ่งนี้"
|
||||
new_private_message: "สร้างข้อความส่วนตัวใหม่"
|
||||
private_message: "ข้อความส่วนตัว"
|
||||
private_messages: "ข้อความ"
|
||||
@ -1380,8 +1375,6 @@ th:
|
||||
tags_missing:
|
||||
other: "คุณต้องเลือกอย่างน้อย %{count} แท็ก"
|
||||
save_edit: "บันทึกการแก้ไข"
|
||||
reply_original: "ตอบบนกระทู้ต้นฉบับ"
|
||||
reply_here: "ตอบที่นี่"
|
||||
reply: "ตอบกลับ"
|
||||
cancel: "ยกเลิก"
|
||||
create_topic: "สร้างกระทู้"
|
||||
@ -1626,7 +1619,6 @@ th:
|
||||
close_topics: "ปิดกระทู้"
|
||||
archive_topics: "คลังกระทู้"
|
||||
move_messages_to_inbox: "ย้ายไปกล่องขาเข้า"
|
||||
notification_level: "การแจ้งเตือน..."
|
||||
choose_new_category: "เลือกหมวดหมู่ใหม่ให้กระทู้"
|
||||
selected:
|
||||
other: "คุณได้เลือก <b>%{count}</b> กระทู้"
|
||||
@ -1692,8 +1684,6 @@ th:
|
||||
options: "ตัวเลือกกระทู้"
|
||||
show_links: "แสดงลิงก์ในกระทู้นี้"
|
||||
unread_indicator: "ยังไม่มีสมาชิกอ่านโพสต์ล่าสุดของกระทู้นี้"
|
||||
jump_reply_up: ข้ามไปยังคำตอบก่อนหน้านี้
|
||||
jump_reply_down: ข้ามไปยังคำตอบหลังจากนี้
|
||||
deleted: "กระทู้ถูกลบ"
|
||||
slow_mode_update:
|
||||
enable: "เปิดใช้งาน"
|
||||
@ -1793,7 +1783,6 @@ th:
|
||||
unarchive: "เลิกเก็บกระทู้เข้าคลัง"
|
||||
archive: "เก็บกระทู้เข้าคลัง"
|
||||
reset_read: "ล้างข้อมูลการอ่าน"
|
||||
make_public: "ทำให้กระทู้เป็นสาธารณะ..."
|
||||
make_private: "สร้างข้อความส่วนตัว"
|
||||
feature:
|
||||
pin: "ปักหมุดกระทู้"
|
||||
@ -2414,7 +2403,6 @@ th:
|
||||
save: "บันทึก"
|
||||
delete: "ลบ"
|
||||
everyone_can_use: "ทุกคนสามารถใช้แท็กได้"
|
||||
parent_tag_placeholder: "ทางเลือก"
|
||||
topics:
|
||||
none:
|
||||
unread: "คุณไม่มีกระทู้ที่ยังไม่ได้อ่าน"
|
||||
@ -2431,8 +2419,6 @@ th:
|
||||
forward: "ส่งต่อ"
|
||||
share: "แบ่งปัน"
|
||||
dismiss: "ซ่อน"
|
||||
pause_notifications:
|
||||
remaining: "เหลืออีก %{remaining}"
|
||||
trust_levels:
|
||||
names:
|
||||
member: "สมาชิก"
|
||||
@ -2445,6 +2431,9 @@ th:
|
||||
more: "อื่น"
|
||||
all_categories: "หมวดหมู่ทั้งหมด"
|
||||
sections:
|
||||
custom:
|
||||
save: "บันทึก"
|
||||
delete: "ลบ"
|
||||
about:
|
||||
header_link_text: "เกี่ยวกับ"
|
||||
messages:
|
||||
@ -2470,8 +2459,6 @@ th:
|
||||
content: "แอดมิน"
|
||||
badges:
|
||||
content: "เหรียญ"
|
||||
everything:
|
||||
content: "ทุกสิ่ง"
|
||||
faq:
|
||||
content: "คำถามที่พบบ่อย"
|
||||
groups:
|
||||
@ -2484,7 +2471,6 @@ th:
|
||||
other: "%{count}แบบร่าง"
|
||||
review:
|
||||
content: "รีวิว"
|
||||
until: "จนถึง:"
|
||||
admin_js:
|
||||
type_to_filter: "พิมพ์เพื่อกรอง..."
|
||||
admin:
|
||||
@ -2505,7 +2491,6 @@ th:
|
||||
latest_version: "ล่าสุด"
|
||||
new_features:
|
||||
dismiss: "ซ่อน"
|
||||
learn_more: "เรียนรู้เพิ่มเติม"
|
||||
last_checked: "ตรวจล่าสุด"
|
||||
refresh_problems: "รีเฟรช"
|
||||
no_problems: "ไม่พบปัญหา"
|
||||
@ -2779,9 +2764,6 @@ th:
|
||||
filters:
|
||||
user_placeholder: "ผู้ใช้"
|
||||
address_placeholder: "name@example.com"
|
||||
moderation_history:
|
||||
actions:
|
||||
delete_topic: "กระทู้ถูกลบ"
|
||||
logs:
|
||||
created_at: "สร้าง"
|
||||
ip_address: "ไอพี"
|
||||
|
||||
@ -145,37 +145,37 @@ tr_TR:
|
||||
email: "E-posta ile gönder"
|
||||
url: "URL'yi kopyala ve paylaş"
|
||||
action_codes:
|
||||
public_topic: "Bu konuyu %{when} tarihinde herkese açık yaptı"
|
||||
open_topic: "Bunu %{when} tarihinde bir konuya dönüştürdü"
|
||||
private_topic: "Bu konuyu %{when} tarihinde bir kişisel mesaj yaptı"
|
||||
split_topic: "Bu konuyu %{when} tarihinde ayırdı"
|
||||
invited_user: "%{when} Tarihinde %{who} adlı kullanıcıyı davet etti"
|
||||
invited_group: "%{when} Tarihinde %{who} adlı kullanıcıyı davet etti"
|
||||
public_topic: "Bu konuyu herkese açık yaptı, %{when}"
|
||||
open_topic: "Bunu bir konuya dönüştürdü, %{when}"
|
||||
private_topic: "Bu konuyu kişisel mesaj yaptı, %{when}"
|
||||
split_topic: "Bu konuyu böldü, %{when}"
|
||||
invited_user: "%{who} adlı kullanıcıyı davet etti, %{when}"
|
||||
invited_group: "%{who} adlı kullanıcıyı davet etti, %{when}"
|
||||
user_left: "%{who}, %{when} tarihinde bu mesajdan kendini çıkardı"
|
||||
removed_user: "%{who} Adlı kişiyi %{when} tarihinde çıkardı"
|
||||
removed_group: "%{who} Adlı kişiyi %{when} tarihinde çıkardı"
|
||||
autobumped: "%{when} Tarihinde otomatik olarak üste sıçradı"
|
||||
removed_user: "%{who} adlı kullanıcıyı çıkardı, %{when}"
|
||||
removed_group: "%{who} adlı kullanıcıyı çıkardı, %{when}"
|
||||
autobumped: "Otomatik olarak üste sıçradı, %{when}"
|
||||
autoclosed:
|
||||
enabled: "%{when} Tarihinde kapattı"
|
||||
disabled: "%{when} Tarihinde açtı"
|
||||
enabled: "Kapattı, %{when}"
|
||||
disabled: "Açtı, %{when}"
|
||||
closed:
|
||||
enabled: "%{when} Tarihinde kapattı"
|
||||
disabled: "%{when} Tarihinde açtı"
|
||||
enabled: "Kapatıldı, %{when}"
|
||||
disabled: "Açıldı, %{when}"
|
||||
archived:
|
||||
enabled: "%{when} Tarihinde arşivlendi"
|
||||
disabled: "%{when} Tarihinde arşivden çıkarıldı"
|
||||
enabled: "Arşivlendi, %{when}"
|
||||
disabled: "Arşivden çıkarıldı, %{when}"
|
||||
pinned:
|
||||
enabled: "%{when} Tarihinde sabitlendi"
|
||||
disabled: "%{when} Tarihinde sabitlenmesi kaldırıldı"
|
||||
enabled: "Sabitlendi, %{when}"
|
||||
disabled: "Sabitlemesi kaldırıldı, %{when}"
|
||||
pinned_globally:
|
||||
enabled: "%{when} Tarihinde küresel olarak sabitlendi"
|
||||
disabled: "%{when} Tarihinde sabitlenmesi kaldırıldı"
|
||||
enabled: "Küresel olarak sabitlendi, %{when}"
|
||||
disabled: "Sabitlemesi kaldırıldı, %{when}"
|
||||
visible:
|
||||
enabled: "%{when} Tarihinde listelendi"
|
||||
disabled: "%{when} Tarihinde listeden çıkarıldı"
|
||||
enabled: "Listelendi, %{when}"
|
||||
disabled: "Listeden kaldırıldı, %{when}"
|
||||
banner:
|
||||
enabled: "%{when} Tarihinde bunu bir banner yaptı. Kullanıcı tarafından kapatılana kadar her sayfanın en üstünde görünecek."
|
||||
disabled: "%{when} Tarihinde bu banner'ı kaldırdı. Bundan sonra her sayfanın en üstünde görünmeyecek."
|
||||
enabled: "Bunu banner yaptı, %{when}. Kullanıcı tarafından kapatılana kadar her sayfanın en üstünde görünecek."
|
||||
disabled: "Bu banner'ı kaldırdı, %{when}. Bundan sonra her sayfanın en üstünde görünmeyecek."
|
||||
forwarded: "Yukarıdaki e-postayı iletti"
|
||||
topic_admin_menu: "konu eylemleri"
|
||||
skip_to_main_content: "Ana içeriğe atla"
|
||||
@ -974,11 +974,6 @@ tr_TR:
|
||||
profile: "Profil"
|
||||
mute: "Sessiz"
|
||||
edit: "Tercihleri Düzenle"
|
||||
download_archive:
|
||||
button_text: "Tümünü İndir"
|
||||
confirm: "Gönderilerinizi indirmek istediğinize emin misiniz?"
|
||||
success: "İndirme işlemi başlatıldı. İşlem tamamlandığında mesaj yoluyla bildirim alırsınız."
|
||||
rate_limit_error: "Gönderiler günde bir kez indirilebilir, lütfen yarın tekrar deneyin."
|
||||
new_private_message: "Yeni Mesaj"
|
||||
private_message: "Mesaj"
|
||||
private_messages: "Mesajlar"
|
||||
@ -1006,7 +1001,7 @@ tr_TR:
|
||||
notification_schedule:
|
||||
title: "Bildirim Zamanlaması"
|
||||
label: "Özel bildirim zamanlamasını etkinleştir"
|
||||
tip: "Bu saatler dışında bildirimleriniz duraklatılacaktır."
|
||||
tip: "Bu saatler dışında bildirimleriniz duraklatılacak."
|
||||
midnight: "Gece yarısı"
|
||||
none: "Yok"
|
||||
monday: "Pazartesi"
|
||||
@ -2128,8 +2123,6 @@ tr_TR:
|
||||
topic_template_not_modified: "Lütfen konu şablonunu düzenleyerek daha fazla ayrıntı ekleyin."
|
||||
save_edit: "Düzenlemeyi Kaydet"
|
||||
overwrite_edit: "Düzenlemenin Üzerine Yaz"
|
||||
reply_original: "Asıl Konuda yanıtla"
|
||||
reply_here: "Buradan Yanıtla"
|
||||
reply: "Yanıtla"
|
||||
cancel: "İptal et"
|
||||
create_topic: "Konu Oluştur"
|
||||
@ -2701,8 +2694,6 @@ tr_TR:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>Tüm kategorilere göz atın</a>, <a href='%{basePath}/latest'>en son konuları görüntüleyin</a> veya en üste bakın:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>Tüm etiketlere göz atın</a> veya <a href='%{basePath}/latest'>en son konuları görüntüleyin</a>."
|
||||
suggest_create_topic: <a href>Yeni bir konuşma başlatmaya</a> hazır mısınız?
|
||||
jump_reply_up: önceki yanıta geç
|
||||
jump_reply_down: sonraki yanıta geç
|
||||
deleted: "Konu silindi"
|
||||
slow_mode_update:
|
||||
title: "Yavaş Mod"
|
||||
@ -3067,9 +3058,6 @@ tr_TR:
|
||||
collapse: "daralt"
|
||||
sr_collapse_replies: "Gömülü yanıtları daralt"
|
||||
sr_date: "Gönderi tarihi"
|
||||
sr_expand_replies:
|
||||
one: "Bu gönderide %{count} yanıt var. Genişletmek için tıklayın"
|
||||
other: "Bu gönderide %{count} yanıt var. Genişletmek için tıklayın"
|
||||
expand_collapse: "genişlet/daralt"
|
||||
sr_below_embedded_posts_description: "#%{post_number} numaralı gönderiye gelen yanıtlar"
|
||||
sr_embedded_reply_description: "#%{post_number} numaralı gönderiye @%{username} adlı kullanıcının yanıtı"
|
||||
@ -3925,13 +3913,11 @@ tr_TR:
|
||||
pause_notifications:
|
||||
title: "Şunlar için bildirimleri duraklat..."
|
||||
label: "Bildirimleri duraklat"
|
||||
remaining: "%{remaining} kaldı"
|
||||
options:
|
||||
half_hour: "30 dakika"
|
||||
one_hour: "1 saat"
|
||||
two_hours: "2 saat"
|
||||
tomorrow: "Yarına kadar"
|
||||
custom: "Özel"
|
||||
set_schedule: "Bildirim zamanlaması ayarla"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3981,6 +3967,9 @@ tr_TR:
|
||||
all_categories: "Tüm kategoriler"
|
||||
all_tags: "Tüm etiketler"
|
||||
sections:
|
||||
custom:
|
||||
save: "Kaydet"
|
||||
delete: "Sil"
|
||||
about:
|
||||
header_link_text: "Hakkında"
|
||||
messages:
|
||||
@ -5171,7 +5160,6 @@ tr_TR:
|
||||
show_admin_profile: "Yönetici"
|
||||
manage_user: "Kullanıcıyı yönet"
|
||||
show_public_profile: "Herkese Açık Profili Göster"
|
||||
impersonate: "Kimliğine Bürün"
|
||||
action_logs: "Eylem Günlükleri"
|
||||
ip_lookup: "IP Arama"
|
||||
log_out: "Çıkış Yap"
|
||||
|
||||
@ -1087,11 +1087,6 @@ uk:
|
||||
profile: "Профіль"
|
||||
mute: "Приглушити"
|
||||
edit: "Редагувати налаштування"
|
||||
download_archive:
|
||||
button_text: "Завантажити все"
|
||||
confirm: "Ви впевнені, що хочете завантажити свої дописи?"
|
||||
success: "Завантаження розпочато, ви отримаєте повідомлення, коли процес завершиться."
|
||||
rate_limit_error: "Дописи можна завантажити раз на день, будь ласка, спробуйте завтра."
|
||||
new_private_message: "Нове повідомлення"
|
||||
private_message: "Повідомлення"
|
||||
private_messages: "Повідомлення"
|
||||
@ -2213,8 +2208,6 @@ uk:
|
||||
topic_template_not_modified: "Будь ласка, додайте деталі та особливості до вашої теми, відредагувавши шаблон теми."
|
||||
save_edit: "Зберегти зміни"
|
||||
overwrite_edit: "Перезаписати зміни"
|
||||
reply_original: "Відповісти в початковій темі"
|
||||
reply_here: "Відповісти тут"
|
||||
reply: "Відповісти"
|
||||
cancel: "Скасувати"
|
||||
create_topic: "Створити тему"
|
||||
@ -2798,8 +2791,6 @@ uk:
|
||||
expand_details: "розгорнути детальну інформацію"
|
||||
unread_indicator: "Поки що ніхто з учасників не прочитав останній допис цієї теми."
|
||||
suggest_create_topic: Готові <a href>почати нову розмову?</a>
|
||||
jump_reply_up: перейти до попередньої відповіді
|
||||
jump_reply_down: перейти до пізнішої відповіді
|
||||
deleted: "Тему було видалено"
|
||||
slow_mode_update:
|
||||
title: "Повільний режим"
|
||||
@ -3194,11 +3185,6 @@ uk:
|
||||
collapse: "згорнути"
|
||||
sr_collapse_replies: "Згорнути відповіді на допис"
|
||||
sr_date: "Дата допису"
|
||||
sr_expand_replies:
|
||||
one: "Цей допис має %{count} відповідь. Натисніть, щоб переглянути"
|
||||
few: "Цей допис має %{count} відповіді. Натисніть, щоб переглянути"
|
||||
many: "Цей допис має %{count} відповідей. Натисніть, щоб переглянути"
|
||||
other: "Цей допис має %{count} відповідей. Натисніть, щоб переглянути"
|
||||
expand_collapse: "розгорнути/згорнути"
|
||||
sr_below_embedded_posts_description: "Відповіді на допис #%{post_number}"
|
||||
sr_embedded_reply_description: "відповідь @%{username} на допис #%{post_number}"
|
||||
@ -4141,13 +4127,11 @@ uk:
|
||||
enabled: "Включено безпечний режим, щоб вийти з безпечного режиму, закрийте поточне вікно браузера"
|
||||
image_removed: "(зображення видалено)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} залишилось"
|
||||
options:
|
||||
half_hour: "30 хвилин"
|
||||
one_hour: "1 година"
|
||||
two_hours: "2 години"
|
||||
tomorrow: "До завтра"
|
||||
custom: "Користувацька"
|
||||
set_schedule: "Налаштування розкладу сповіщень"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -4198,6 +4182,9 @@ uk:
|
||||
all_categories: "Всі розділи"
|
||||
all_tags: "Всі теґи"
|
||||
sections:
|
||||
custom:
|
||||
save: "Зберегти"
|
||||
delete: "Видалити"
|
||||
about:
|
||||
header_link_text: "Про"
|
||||
messages:
|
||||
@ -5371,7 +5358,6 @@ uk:
|
||||
show_admin_profile: "Адмін"
|
||||
manage_user: "Керування користувачем"
|
||||
show_public_profile: "Показати публічний профіль"
|
||||
impersonate: "Втілитися"
|
||||
action_logs: "Журнал дій"
|
||||
ip_lookup: "Пошук IP"
|
||||
log_out: "Вийти"
|
||||
|
||||
@ -939,11 +939,6 @@ ur:
|
||||
profile: "پروفائل"
|
||||
mute: "خاموش کردیں"
|
||||
edit: "ترجیحات میں ترمیم کردیں"
|
||||
download_archive:
|
||||
button_text: "تمام ڈاؤن لوڈ کریں"
|
||||
confirm: "کیا آپ واقعی اپنی پوسٹس ڈاؤن لوڈ کرنا چاہتے ہیں؟"
|
||||
success: "ڈاؤن لوڈ کا آغاز کر دیا گیا ہے، عمل مکمل ہونے پر آپ کو پیغام کے ذریعے مطلع کر دیا جائے گا۔"
|
||||
rate_limit_error: "پوسٹس فی دن ایک بار ہی ڈاؤن لوڈ کی جا سکتی ہیں، براہ مہربانی کل دوبارہ کوشش کریں۔"
|
||||
new_private_message: "نیا پیغام"
|
||||
private_message: "پیغام"
|
||||
private_messages: "پیغامات"
|
||||
@ -1926,8 +1921,6 @@ ur:
|
||||
topic_template_not_modified: "براہ مہربانی ٹاپک ٹَیمپلیٹ میں ترمیم کرکے اپنے ٹاپک میں تفصیلات اور مخصوصیات شامل کریں۔"
|
||||
save_edit: "ترمیم محفوظ کریں"
|
||||
overwrite_edit: "دوسری ترمیم کے اوپر لکھ ڈالیں"
|
||||
reply_original: "حقیقی ٹاپک پر جواب دیں"
|
||||
reply_here: "یہاں جواب دیں"
|
||||
reply: "جواب"
|
||||
cancel: "منسوخ"
|
||||
create_topic: "ٹاپک بنائیں"
|
||||
@ -2187,7 +2180,6 @@ ur:
|
||||
tips:
|
||||
category_tag: "زمرہ یا ٹیگ کے لحاظ سے فلٹرز"
|
||||
author: "پوسٹ مصنف کے ذریعہ فلٹرز"
|
||||
in: "میٹا ڈیٹا کےذریعہ سے فلٹرز (مثلاً ان: عنوان، ان:ذاتی، ان:پن کیاہوا)"
|
||||
status: "موضوع کی حیثیت کے لحاظ سے فلٹرز"
|
||||
full_search: "مکمل صفحہ کی تلاش کا آغاز"
|
||||
full_search_key: "%{modifier} + درج کریں"
|
||||
@ -2389,8 +2381,6 @@ ur:
|
||||
expand_details: "موضوع کی تفصیلات کو پھیلائیں"
|
||||
unread_indicator: "کسی ممبر نے ابھی تک اِس ٹاپک کی آخری پوسٹ نہیں پڑھی ہے۔"
|
||||
suggest_create_topic: <a href>نئی گفتگو شروع</a> کرنے کے لیے تیار ہیں؟
|
||||
jump_reply_up: اِس سے پرانے جواب پر جائیں
|
||||
jump_reply_down: اِس سے نئے جواب پر جائیں
|
||||
deleted: "ٹاپک مٹادیا گیا ہے"
|
||||
slow_mode_update:
|
||||
title: "سست موڈ"
|
||||
@ -3571,13 +3561,11 @@ ur:
|
||||
enabled: "سیف موڈ فعال ہے، سیف موڈ سے باہر نکلنے کے لئے اِس براؤزر وِنڈو کو بند کریں"
|
||||
image_removed: "(تصویر ہٹا دی گئی)"
|
||||
pause_notifications:
|
||||
remaining: "%{remaining} باقی رہتا ہے..."
|
||||
options:
|
||||
half_hour: "30 منٹ"
|
||||
one_hour: "1 گھنٹہ"
|
||||
two_hours: "2 گھنٹے"
|
||||
tomorrow: "کل تک"
|
||||
custom: "اپنی مرضی کا"
|
||||
set_schedule: "اطلاع کا شیڈول مرتب کریں"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3618,6 +3606,9 @@ ur:
|
||||
more: "مزید"
|
||||
all_categories: "تمام زُمرَہ جات"
|
||||
sections:
|
||||
custom:
|
||||
save: "محفوظ کریں"
|
||||
delete: "مٹائیں"
|
||||
about:
|
||||
header_link_text: "بارے میں"
|
||||
messages:
|
||||
@ -3643,8 +3634,6 @@ ur:
|
||||
content: "ایڈمن"
|
||||
badges:
|
||||
content: "بَیج"
|
||||
everything:
|
||||
content: "تمام"
|
||||
faq:
|
||||
content: "عمومی سوالات"
|
||||
groups:
|
||||
@ -3655,7 +3644,6 @@ ur:
|
||||
content: "میری پوسٹ"
|
||||
review:
|
||||
content: "جائزہ لیں"
|
||||
until: "جب تک:"
|
||||
admin_js:
|
||||
type_to_filter: "فِلٹر کرنے کے لئے ٹائپ کریں..."
|
||||
admin:
|
||||
@ -4733,7 +4721,6 @@ ur:
|
||||
staged: "سٹَیجڈ؟"
|
||||
show_admin_profile: "ایڈمن"
|
||||
show_public_profile: "پبلک پروفائل دکھائیں"
|
||||
impersonate: "نقالی"
|
||||
action_logs: "عوامل کے لاگز"
|
||||
ip_lookup: "IP کا سراغ"
|
||||
log_out: "لاگ آُوٹ"
|
||||
|
||||
@ -906,11 +906,6 @@ vi:
|
||||
profile: "Tiểu sử"
|
||||
mute: "Im lặng"
|
||||
edit: "Tùy chỉnh"
|
||||
download_archive:
|
||||
button_text: "Tải tất c"
|
||||
confirm: "Bạn có chắc chắn muốn download các bài viết của mình?"
|
||||
success: "Quá trình tải về đã bắt đầu, bạn sẽ được thông báo qua tin nhắn khi quá trình hoàn tất."
|
||||
rate_limit_error: "Bài viết chỉ được tải về một lần mỗi người, hãy thử lại vào ngày mai."
|
||||
new_private_message: "Tin nhắn mới"
|
||||
private_message: "Tin nhắn"
|
||||
private_messages: "Tin nhắn"
|
||||
@ -1901,8 +1896,6 @@ vi:
|
||||
topic_template_not_modified: "Vui lòng thêm chi tiết và cụ thể cho chủ đề của bạn bằng cách chỉnh sửa mẫu chủ đề."
|
||||
save_edit: "Lưu chỉnh sửa"
|
||||
overwrite_edit: "Ghi đè Chỉnh sửa"
|
||||
reply_original: "Trả lời cho bài viết gốc"
|
||||
reply_here: "Trả lời đây "
|
||||
reply: "Trả lời "
|
||||
cancel: "Huỷ"
|
||||
create_topic: "Tạo chủ đề"
|
||||
@ -2381,8 +2374,6 @@ vi:
|
||||
expand_details: "mở rộng chi tiết chủ đề"
|
||||
unread_indicator: "Chưa có thành viên nào đọc bài cuối cùng của chủ đề này."
|
||||
suggest_create_topic: Bạn đã sẵn sàng để <a href>đầu một cuộc trò chuyện mới chưa?</a>
|
||||
jump_reply_up: nhảy đến những trả lời trước đó
|
||||
jump_reply_down: nhảy tới những trả lời sau đó
|
||||
deleted: "Chủ đề này đã bị xóa"
|
||||
slow_mode_update:
|
||||
title: "Chế độ chậm"
|
||||
@ -2731,8 +2722,6 @@ vi:
|
||||
collapse: "Thu nhỏ"
|
||||
sr_collapse_replies: "Thu gọn các câu trả lời đã nhúng"
|
||||
sr_date: "Ngày đăng"
|
||||
sr_expand_replies:
|
||||
other: "Bài đăng này có %{count} câu trả lời. Bấm để mở rộng"
|
||||
expand_collapse: "mở/đóng"
|
||||
locked: "MOD đã khóa bài đăng này không được chỉnh sửa"
|
||||
gap:
|
||||
@ -3524,13 +3513,11 @@ vi:
|
||||
enabled: "Chế độ an toàn được bật, để thoát khỏi chế độ an toàn, hãy đóng cửa sổ trình duyệt này"
|
||||
image_removed: "(hình ảnh đã bị xóa)"
|
||||
pause_notifications:
|
||||
remaining: "còn lại %{remaining}"
|
||||
options:
|
||||
half_hour: "30 phút"
|
||||
one_hour: "1 tiếng"
|
||||
two_hours: "2 tiếng"
|
||||
tomorrow: "Cho tới ngày mai"
|
||||
custom: "Tùy biến"
|
||||
set_schedule: "Đặt lịch thông báo"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3571,8 +3558,10 @@ vi:
|
||||
other: "%{count} mới"
|
||||
more: "Thêm"
|
||||
all_categories: "Tất cả danh mục"
|
||||
all_tags: "Tất cả các thẻ"
|
||||
sections:
|
||||
custom:
|
||||
save: "Lưu lại"
|
||||
delete: "Xóa"
|
||||
about:
|
||||
header_link_text: "Giới thiệu"
|
||||
messages:
|
||||
@ -4657,7 +4646,6 @@ vi:
|
||||
staged: "Cấp bậc?"
|
||||
show_admin_profile: "Quản trị"
|
||||
show_public_profile: "Hiển thị hồ sơ công khai"
|
||||
impersonate: "Mạo danh"
|
||||
action_logs: "Nhật ký hành động"
|
||||
ip_lookup: "Tìm kiếm địa chỉ IP"
|
||||
log_out: "Đăng xuất"
|
||||
|
||||
@ -84,7 +84,7 @@ zh_CN:
|
||||
other: "超过 %{count} 年"
|
||||
almost_x_years:
|
||||
other: "将近 %{count} 年"
|
||||
date_year: "YY 年 M 月 D 日"
|
||||
date_year: "YY 年 MMM D 日"
|
||||
medium_with_ago:
|
||||
x_minutes:
|
||||
other: "%{count} 分钟前"
|
||||
@ -916,11 +916,6 @@ zh_CN:
|
||||
profile: "个人资料"
|
||||
mute: "免打扰"
|
||||
edit: "编辑偏好设置"
|
||||
download_archive:
|
||||
button_text: "全部下载"
|
||||
confirm: "确定要下载您的帖子吗?"
|
||||
success: "下载已开始,完成后将通过消息通知您。"
|
||||
rate_limit_error: "帖子每天只能下载一次,请明天再试。"
|
||||
new_private_message: "新消息"
|
||||
private_message: "私信"
|
||||
private_messages: "消息"
|
||||
@ -2048,8 +2043,6 @@ zh_CN:
|
||||
topic_template_not_modified: "请通过编辑话题模板为您的话题添加详细信息和细节。"
|
||||
save_edit: "保存编辑"
|
||||
overwrite_edit: "覆盖编辑"
|
||||
reply_original: "回复原始话题"
|
||||
reply_here: "在此回复"
|
||||
reply: "回复"
|
||||
cancel: "取消"
|
||||
create_topic: "创建话题"
|
||||
@ -2176,7 +2169,7 @@ zh_CN:
|
||||
bookmark_reminder: "<span>%{username}</span> %{description}"
|
||||
replied: "<span>%{username}</span> %{description}"
|
||||
posted: "<span>%{username}</span> %{description}"
|
||||
watching_category_or_tag: "<span>%{username} </span>%{description}"
|
||||
watching_category_or_tag: "<span>%{username}</span> %{description}"
|
||||
edited: "<span>%{username}</span> %{description}"
|
||||
liked: "<span>%{username}</span> %{description}"
|
||||
liked_2: "<span class='double-user'>%{username}、%{username2}</span> %{description}"
|
||||
@ -2584,8 +2577,6 @@ zh_CN:
|
||||
browse_all_categories_latest_or_top: "<a href='%{basePath}/categories'>浏览所有类别</a>、<a href='%{basePath}/latest'>查看最新话题</a>或查看热门话题:"
|
||||
browse_all_tags_or_latest: "<a href='%{basePath}/tags'>浏览所有标签</a>或<a href='%{basePath}/latest'>查看最新话题</a>。"
|
||||
suggest_create_topic: 准备好<a href>开始新对话</a>了吗?
|
||||
jump_reply_up: 跳转到较早的回复
|
||||
jump_reply_down: 跳转到较晚的回复
|
||||
deleted: "该话题已被删除"
|
||||
slow_mode_update:
|
||||
title: "慢速模式"
|
||||
@ -2935,8 +2926,6 @@ zh_CN:
|
||||
collapse: "收起"
|
||||
sr_collapse_replies: "收起嵌入式回复"
|
||||
sr_date: "发布日期"
|
||||
sr_expand_replies:
|
||||
other: "此帖子有 %{count} 个回复。点击展开"
|
||||
expand_collapse: "展开/收起"
|
||||
sr_below_embedded_posts_description: "帖子#%{post_number} 回复"
|
||||
sr_embedded_reply_description: "@%{username} 回复帖子 #%{post_number}"
|
||||
@ -3746,13 +3735,11 @@ zh_CN:
|
||||
pause_notifications:
|
||||
title: "暂停通知…"
|
||||
label: "暂停通知"
|
||||
remaining: "剩余 %{remaining}"
|
||||
options:
|
||||
half_hour: "30 分钟"
|
||||
one_hour: "1 小时"
|
||||
two_hours: "2 小时"
|
||||
tomorrow: "直到明天"
|
||||
custom: "自定义"
|
||||
set_schedule: "设置通知时间表"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -3800,6 +3787,9 @@ zh_CN:
|
||||
all_categories: "所有类别"
|
||||
all_tags: "所有标签"
|
||||
sections:
|
||||
custom:
|
||||
save: "保存"
|
||||
delete: "删除"
|
||||
about:
|
||||
header_link_text: "关于"
|
||||
messages:
|
||||
@ -4982,7 +4972,6 @@ zh_CN:
|
||||
show_admin_profile: "管理员"
|
||||
manage_user: "管理用户"
|
||||
show_public_profile: "显示公开个人资料"
|
||||
impersonate: "模拟"
|
||||
action_logs: "操作日志"
|
||||
ip_lookup: "IP 查询"
|
||||
log_out: "退出"
|
||||
|
||||
@ -843,11 +843,6 @@ zh_TW:
|
||||
profile: "個人檔案"
|
||||
mute: "靜音"
|
||||
edit: "編輯喜好設定"
|
||||
download_archive:
|
||||
button_text: "全部下載"
|
||||
confirm: "你確定要下載你的貼文嗎?"
|
||||
success: "已開始下載,下載完畢後將以訊息通知您"
|
||||
rate_limit_error: "每天僅可下載貼文一次,請明天再重試。"
|
||||
new_private_message: "新訊息"
|
||||
private_message: "訊息"
|
||||
private_messages: "訊息"
|
||||
@ -1131,7 +1126,6 @@ zh_TW:
|
||||
title: "使用者卡背景"
|
||||
instructions: "背景會被置中,且默認寬度為850px。"
|
||||
change_featured_topic:
|
||||
title: "特色主題"
|
||||
instructions: "此主題的連結將顯示您的使用者卡和個人檔案上。"
|
||||
email:
|
||||
title: "電子郵件"
|
||||
@ -1302,10 +1296,6 @@ zh_TW:
|
||||
valid_for: "邀請連結只對這個郵件地址有效:%{email}"
|
||||
invite_link:
|
||||
success: "邀請連結生成成功!"
|
||||
invite:
|
||||
copy_link: "複製連結"
|
||||
show_advanced: "顯示進階選項"
|
||||
hide_advanced: "隱藏進階選項"
|
||||
bulk_invite:
|
||||
none: "此頁面上沒有邀請函顯示。"
|
||||
error: "上傳的檔案必須是 csv 格式。"
|
||||
@ -1484,7 +1474,6 @@ zh_TW:
|
||||
username: "使用者"
|
||||
password: "密碼"
|
||||
show_password: "顯示"
|
||||
second_factor_title: "兩步驟驗證"
|
||||
second_factor_description: "請輸入應用程式中的驗證碼:"
|
||||
second_factor_backup_description: "請輸入一組您的備用碼"
|
||||
caps_lock_warning: "大寫鎖定中"
|
||||
@ -1633,8 +1622,6 @@ zh_TW:
|
||||
other: "您至少必須選擇%{count}個標籤"
|
||||
save_edit: "儲存編輯"
|
||||
overwrite_edit: "覆寫編輯"
|
||||
reply_original: "回覆至原始的話題"
|
||||
reply_here: "在此回覆"
|
||||
reply: "回覆"
|
||||
cancel: "取消"
|
||||
create_topic: "開啟話題"
|
||||
@ -1771,7 +1758,6 @@ zh_TW:
|
||||
confirm_body: "成功! 通知已啟用"
|
||||
custom: "新的通知由%{username}在%{site_title}"
|
||||
titles:
|
||||
edited: "已編輯"
|
||||
liked: "新的讚"
|
||||
watching_first_post: "新話題"
|
||||
liked_consolidated: "新的讚"
|
||||
@ -1887,11 +1873,9 @@ zh_TW:
|
||||
dismiss_new: "設定新貼文為已讀"
|
||||
toggle: "批次切換選擇話題"
|
||||
actions: "批次操作"
|
||||
change_category: "設定分類..."
|
||||
close_topics: "關閉話題"
|
||||
archive_topics: "已封存的話題"
|
||||
move_messages_to_inbox: "移動到收件匣"
|
||||
notification_level: "通知..."
|
||||
choose_new_category: "為話題選擇新類別:"
|
||||
selected:
|
||||
other: "你已選擇了 <b>%{count}</b> 個話題。"
|
||||
@ -1959,8 +1943,6 @@ zh_TW:
|
||||
options: "話題選項"
|
||||
show_links: "在話題裡顯示連結"
|
||||
suggest_create_topic: 準備好 <a href>開始新的對話了嗎?</a>
|
||||
jump_reply_up: 跳到更早的回覆
|
||||
jump_reply_down: 跳到更晚的回覆
|
||||
deleted: "此話題已被刪除"
|
||||
slow_mode_update:
|
||||
title: "慢速模式"
|
||||
@ -1968,19 +1950,6 @@ zh_TW:
|
||||
enable: "啟用"
|
||||
enabled_until: "啟用直到:"
|
||||
remove: "停用"
|
||||
hours: "小時:"
|
||||
minutes: "分鐘:"
|
||||
durations:
|
||||
10_minutes: "10 分鐘"
|
||||
15_minutes: "15 分鐘"
|
||||
30_minutes: "30 分鐘"
|
||||
45_minutes: "45 分鐘"
|
||||
1_hour: "1 小時"
|
||||
2_hours: "2 小時"
|
||||
4_hours: "4 小時"
|
||||
8_hours: "8 小時"
|
||||
12_hours: "12 小時"
|
||||
24_hours: "24 小時"
|
||||
topic_status_update:
|
||||
title: "話題計時器"
|
||||
save: "設定計時器"
|
||||
@ -2088,7 +2057,6 @@ zh_TW:
|
||||
invisible: "隱藏主題"
|
||||
visible: "顯示主題"
|
||||
reset_read: "重置讀取資料"
|
||||
make_public: "設置為公共話題..."
|
||||
make_private: "設置為私訊"
|
||||
reset_bump_date: "重設上浮日期"
|
||||
feature:
|
||||
@ -2316,8 +2284,6 @@ zh_TW:
|
||||
revert_to_regular: "移除工作人員顏色"
|
||||
rebake: "重建 HTML"
|
||||
unhide: "取消隱藏"
|
||||
change_owner: "更改作者..."
|
||||
grant_badge: "升級徽章..."
|
||||
lock_post: "封鎖貼文"
|
||||
lock_post_description: "禁止發文者編輯此貼文"
|
||||
unlock_post: "解除封鎖貼文"
|
||||
@ -2325,7 +2291,6 @@ zh_TW:
|
||||
delete_topic_disallowed_modal: "您沒有權限刪除此話題。若您認為它應被刪除,請向板主檢舉並附上原因。"
|
||||
delete_topic_disallowed: "您沒有刪除此話題的權限。"
|
||||
delete_topic: "刪除話題"
|
||||
add_post_notice: "加入工作人員通知..."
|
||||
actions:
|
||||
people:
|
||||
like:
|
||||
@ -2376,13 +2341,10 @@ zh_TW:
|
||||
title: "顯示電子郵件HTML格式"
|
||||
button: "HTML"
|
||||
bookmarks:
|
||||
create: "建立書籤"
|
||||
edit: "編輯書籤"
|
||||
name: "名稱"
|
||||
options: "選項"
|
||||
actions:
|
||||
delete_bookmark:
|
||||
name: "刪除書籤"
|
||||
edit_bookmark:
|
||||
name: "編輯書籤"
|
||||
description: "編輯書籤名稱或更改提醒日期和時間"
|
||||
@ -2509,12 +2471,9 @@ zh_TW:
|
||||
moderation: "管理"
|
||||
appearance: "外觀"
|
||||
email: "電子信箱"
|
||||
list_filters:
|
||||
all: "所有話題"
|
||||
flagging:
|
||||
title: "感謝幫助社群遠離邪惡!"
|
||||
action: "檢舉貼文"
|
||||
take_action: "執行動作..."
|
||||
take_action_options:
|
||||
default:
|
||||
title: "執行動作"
|
||||
@ -2629,9 +2588,6 @@ zh_TW:
|
||||
help: "你所關注或追蹤的話題有未讀貼文"
|
||||
lower_title_with_count:
|
||||
other: "%{count} 個未讀"
|
||||
unseen:
|
||||
title: "未讀"
|
||||
lower_title: "未讀"
|
||||
new:
|
||||
lower_title_with_count:
|
||||
other: "%{count} 近期"
|
||||
@ -2772,7 +2728,6 @@ zh_TW:
|
||||
download_calendar:
|
||||
download: "下載"
|
||||
tagging:
|
||||
all_tags: "所有標籤"
|
||||
other_tags: "其他標籤"
|
||||
selector_all_tags: "所有標籤"
|
||||
selector_no_tags: "無標籤"
|
||||
@ -2838,7 +2793,6 @@ zh_TW:
|
||||
delete: "刪除"
|
||||
confirm_delete: "確定要刪除此標籤組嗎?"
|
||||
everyone_can_use: "所有使用者都能使用標籤。"
|
||||
parent_tag_placeholder: "選擇性"
|
||||
topics:
|
||||
none:
|
||||
unread: "你沒有未讀話題。"
|
||||
@ -2861,13 +2815,11 @@ zh_TW:
|
||||
safe_mode:
|
||||
enabled: "安全模式已經開啟,關閉該瀏覽器窗口以退出安全模式"
|
||||
pause_notifications:
|
||||
remaining: "剩餘 %{remaining}"
|
||||
options:
|
||||
half_hour: "30 分鐘"
|
||||
one_hour: "1 小時"
|
||||
two_hours: "2 小時"
|
||||
tomorrow: "直到明天"
|
||||
custom: "客製"
|
||||
set_schedule: "設定通知時程"
|
||||
trust_levels:
|
||||
names:
|
||||
@ -2885,6 +2837,9 @@ zh_TW:
|
||||
all_categories: "所有分類"
|
||||
all_tags: "所有標籤"
|
||||
sections:
|
||||
custom:
|
||||
save: "保存"
|
||||
delete: "刪除"
|
||||
about:
|
||||
header_link_text: "關於"
|
||||
messages:
|
||||
@ -3083,7 +3038,6 @@ zh_TW:
|
||||
user: "使用者"
|
||||
title: "API"
|
||||
created: 已建立
|
||||
never_used: (永不)
|
||||
generate: "產生"
|
||||
revoke: "撤銷"
|
||||
all_users: "所有使用者"
|
||||
@ -3453,7 +3407,6 @@ zh_TW:
|
||||
email_style:
|
||||
heading: "自訂電子郵件風格"
|
||||
css: "CSS"
|
||||
reset: "重設為預設值"
|
||||
email:
|
||||
title: "電子郵件"
|
||||
settings: "設定"
|
||||
@ -3785,7 +3738,6 @@ zh_TW:
|
||||
staged: "暫存?"
|
||||
show_admin_profile: "管理員"
|
||||
show_public_profile: "顯示公開的基本資料"
|
||||
impersonate: "檢視角度"
|
||||
action_logs: "操作紀錄"
|
||||
ip_lookup: "IP 反查"
|
||||
log_out: "登出"
|
||||
@ -3950,7 +3902,6 @@ zh_TW:
|
||||
disabled: "在使用者卡片上隱藏"
|
||||
searchable:
|
||||
title: "可搜索"
|
||||
enabled: "可搜索"
|
||||
field_types:
|
||||
text: "文字區域"
|
||||
confirm: "確認"
|
||||
|
||||
@ -3388,14 +3388,6 @@ ar:
|
||||
user_automatically_silenced:
|
||||
title: "تم كتم المستخدم تلقائيًا"
|
||||
subject_template: "تم كتم المستخدم الجديد %{username} بسبب بلاغات المجتمع"
|
||||
text_body_template: |
|
||||
هذه رسالة تلقائية.
|
||||
|
||||
تم كتم المستخدم الجديد [%{username}](%{user_url}) تلقائيًا بسبب تلقي منشورات %{username} الكثير من البلاغات من المستخدمين.
|
||||
|
||||
يُرجى [مراجعة البلاغات](%{base_url}/admin/flags). إذا تم كتم %{username} بشكلٍ غير صحيح من النشر، فانقر على زر إلغاء الكتم على [صفحة المسؤول لهذا المستخدم](%{user_url}).
|
||||
|
||||
يمكن تغيير هذا الحد من خلال إعدادات الموقع `silence_new_user`.
|
||||
spam_post_blocked:
|
||||
title: "تم حظر المنشور غير المرغوب فيه"
|
||||
subject_template: "تم حظر منشورات المستخدم الجديد %{username} بسبب الروابط المتكررة"
|
||||
@ -3486,9 +3478,6 @@ ar:
|
||||
many: "تنبيه: نحن نُرسل يوميًا %{count} رسالة إلكترونية كحدٍ أقصى. تحقَّق من الموقع لمعرفة الرسائل التي قد يتم احتجازها. شكرًا على كونك مشهورًا!"
|
||||
other: "تنبيه: نحن نُرسل يوميًا %{count} رسالة إلكترونية كحدٍ أقصى. تحقَّق من الموقع لمعرفة الرسائل التي قد يتم احتجازها. شكرًا على كونك مشهورًا!"
|
||||
in_reply_to: "ردًا على"
|
||||
unsubscribe:
|
||||
title: "إلغاء الاشتراك"
|
||||
description: "لست مهتمًا بالحصول على هذه الرسائل الإلكترونية؟ لا مشكلة! انقر أدناه لإلغاء الاشتراك على الفور:"
|
||||
reply_by_email: "يمكنك [زيارة الموضوع](%{base_url}%{url}) أو الرد على هذه الرسالة الإلكترونية للرد."
|
||||
reply_by_email_pm: "[انتقل إلى الرسالة](%{base_url}%{url}) أو قم بالرد على هذه الرسالة الإلكتروني للرد على %{participants}."
|
||||
only_reply_by_email: "قم بالرد على هذه الرسالة للرد."
|
||||
@ -3789,7 +3778,6 @@ ar:
|
||||
liked_received: "تسجيلات الإعجاب المتلقاة"
|
||||
new_users: "المستخدمون الجُدد"
|
||||
popular_topics: "الموضوعات الرائجة"
|
||||
follow_topic: "تابع هذا الموضوع"
|
||||
join_the_discussion: "قراءة المزيد"
|
||||
popular_posts: "المنشورات الرائجة"
|
||||
more_new: "الجديد لك"
|
||||
@ -3981,8 +3969,6 @@ ar:
|
||||
welcome_message_invite_only: |
|
||||
## [مرحبًا بك في %{title}](#welcome)
|
||||
مطلوب حساب. يُرجى مطالبة أحد الأعضاء الحاليين بدعوة أو تسجيل الدخول للمتابعة.
|
||||
deleted: "تم الحذف"
|
||||
image: "صورة"
|
||||
upload:
|
||||
edit_reason: "تم تنزيل نسخ محلية من الصور"
|
||||
unauthorized: "عذرًا، الملف الذي تحاول تحميله غير مسموح به (الامتدادات المسموح بها: %{authorized_extensions})."
|
||||
@ -4534,7 +4520,6 @@ ar:
|
||||
<p>استمتع، وحظًا سعيدًا في <a href='https://blog.discourse.org/2014/08/building-a-discourse-community/' target='_blank'>بناء مجتمعك الجديد!</a></p>
|
||||
search_logs:
|
||||
graph_title: "عدد مرات البحث"
|
||||
joined: "تاريخ الانضمام"
|
||||
discourse_push_notifications:
|
||||
popup:
|
||||
mentioned: 'أشار %{username} إليك في "%{topic}" - %{site_title}'
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user