зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1443928 - Add section reordering, snippets IndexedDB, strings, bug fixes to a Activity Stream r=ursula
MozReview-Commit-ID: 6Tinj9xTqvQ --HG-- extra : rebase_source : 2c68e120be7aa24615b61217a00346f7a95cd834
This commit is contained in:
Родитель
568d0a2e27
Коммит
771de40179
|
@ -65,6 +65,7 @@ for (const type of [
|
|||
"SECTION_DEREGISTER",
|
||||
"SECTION_DISABLE",
|
||||
"SECTION_ENABLE",
|
||||
"SECTION_MOVE",
|
||||
"SECTION_OPTIONS_CHANGED",
|
||||
"SECTION_REGISTER",
|
||||
"SECTION_UPDATE",
|
||||
|
@ -73,6 +74,7 @@ for (const type of [
|
|||
"SETTINGS_OPEN",
|
||||
"SET_PREF",
|
||||
"SHOW_FIREFOX_ACCOUNTS",
|
||||
"SNIPPETS_BLOCKLIST_CLEARED",
|
||||
"SNIPPETS_BLOCKLIST_UPDATED",
|
||||
"SNIPPETS_DATA",
|
||||
"SNIPPETS_RESET",
|
||||
|
|
|
@ -57,7 +57,8 @@ this.PrerenderData = new _PrerenderData({
|
|||
"section.topstories.collapsed": false,
|
||||
"feeds.section.topstories": true,
|
||||
"feeds.section.highlights": true,
|
||||
"enableWideLayout": true
|
||||
"enableWideLayout": true,
|
||||
"sectionOrder": "topsites,topstories,highlights"
|
||||
},
|
||||
// Prefs listed as invalidating will prevent the prerendered version
|
||||
// of AS from being used if their value is something other than what is listed
|
||||
|
@ -73,6 +74,7 @@ this.PrerenderData = new _PrerenderData({
|
|||
"section.highlights.collapsed",
|
||||
"section.topstories.collapsed",
|
||||
"enableWideLayout",
|
||||
"sectionOrder",
|
||||
// This means if either of these are set to their default values,
|
||||
// prerendering can be used.
|
||||
{oneOf: ["feeds.section.topstories", "feeds.section.highlights"]}
|
||||
|
|
|
@ -177,28 +177,11 @@ function Sections(prevState = INITIAL_STATE.Sections, action) {
|
|||
}
|
||||
return section;
|
||||
});
|
||||
|
||||
// Invariant: Sections array sorted in increasing order of property `order`.
|
||||
// If section doesn't exist in prevState, create a new section object. If
|
||||
// the section has an order, insert it at the correct place in the array.
|
||||
// Otherwise, prepend it and set the order to be minimal.
|
||||
// Otherwise, append it
|
||||
if (!hasMatch) {
|
||||
const initialized = !!(action.data.rows && action.data.rows.length > 0);
|
||||
let order;
|
||||
let index;
|
||||
if (prevState.length > 0) {
|
||||
order = action.data.order !== undefined ? action.data.order : prevState[0].order - 1;
|
||||
index = newState.findIndex(section => section.order >= order);
|
||||
if (index === -1) {
|
||||
index = newState.length;
|
||||
}
|
||||
} else {
|
||||
order = action.data.order !== undefined ? action.data.order : 0;
|
||||
index = 0;
|
||||
}
|
||||
|
||||
const section = Object.assign({title: "", rows: [], order, enabled: false}, action.data, {initialized});
|
||||
newState.splice(index, 0, section);
|
||||
const section = Object.assign({title: "", rows: [], enabled: false}, action.data, {initialized});
|
||||
newState.push(section);
|
||||
}
|
||||
return newState;
|
||||
case at.SECTION_UPDATE:
|
||||
|
@ -334,6 +317,10 @@ function Snippets(prevState = INITIAL_STATE.Snippets, action) {
|
|||
switch (action.type) {
|
||||
case at.SNIPPETS_DATA:
|
||||
return Object.assign({}, prevState, {initialized: true}, action.data);
|
||||
case at.SNIPPET_BLOCKED:
|
||||
return Object.assign({}, prevState, {blockList: prevState.blockList.concat(action.data)});
|
||||
case at.SNIPPETS_BLOCKLIST_CLEARED:
|
||||
return Object.assign({}, prevState, {blockList: []});
|
||||
case at.SNIPPETS_RESET:
|
||||
return INITIAL_STATE.Snippets;
|
||||
default:
|
||||
|
|
|
@ -795,6 +795,9 @@ main {
|
|||
fill: #FFF; }
|
||||
.context-menu > ul > li > a:-moz-any(:focus, :hover):-moz-any(:focus, :hover) {
|
||||
color: #FFF; }
|
||||
.context-menu > ul > li > a.disabled {
|
||||
opacity: 0.4;
|
||||
pointer-events: none; }
|
||||
|
||||
.prefs-pane {
|
||||
color: #4A4A4F;
|
||||
|
@ -1133,8 +1136,25 @@ main {
|
|||
height: 370px; }
|
||||
.wide-layout-enabled .card-outer .card-preview-image-outer {
|
||||
height: 155px; }
|
||||
.wide-layout-enabled .card-outer .card-details {
|
||||
padding: 13px 16px 12px; }
|
||||
.wide-layout-enabled .card-outer .card-text {
|
||||
max-height: 135px; } }
|
||||
max-height: 140px; }
|
||||
.wide-layout-enabled .card-outer .card-host-name {
|
||||
font-size: 12px;
|
||||
padding-bottom: 5px; }
|
||||
.wide-layout-enabled .card-outer .card-title {
|
||||
font-size: 17px;
|
||||
line-height: 23px;
|
||||
margin-bottom: 0; }
|
||||
.wide-layout-enabled .card-outer .card-text:not(.no-description) .card-title {
|
||||
max-height: 69px; }
|
||||
.wide-layout-enabled .card-outer .card-description {
|
||||
font-size: 15px;
|
||||
line-height: 23px; }
|
||||
.wide-layout-enabled .card-outer .card-context {
|
||||
bottom: 4px;
|
||||
font-size: 14px; } }
|
||||
|
||||
.manual-migration-container {
|
||||
color: #4A4A4F;
|
||||
|
@ -1180,7 +1200,10 @@ main {
|
|||
padding: 0 12px; }
|
||||
|
||||
.collapsible-section {
|
||||
padding: 10px 25px; }
|
||||
padding: 10px 25px;
|
||||
transition-delay: 100ms;
|
||||
transition-duration: 100ms;
|
||||
transition-property: background-color; }
|
||||
.collapsible-section .section-title {
|
||||
margin: 0; }
|
||||
.collapsible-section .section-title .click-target {
|
||||
|
@ -1206,7 +1229,8 @@ main {
|
|||
transition-property: opacity;
|
||||
width: 27px; }
|
||||
.collapsible-section .section-top-bar .context-menu-button:-moz-any(:active, :focus, :hover) {
|
||||
fill: #0C0C0D; }
|
||||
fill: #0C0C0D;
|
||||
opacity: 1; }
|
||||
.collapsible-section .section-top-bar .context-menu {
|
||||
top: 16px; }
|
||||
@media (max-width: 1458px) {
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -795,6 +795,9 @@ main {
|
|||
fill: #FFF; }
|
||||
.context-menu > ul > li > a:-moz-any(:focus, :hover):-moz-any(:focus, :hover) {
|
||||
color: #FFF; }
|
||||
.context-menu > ul > li > a.disabled {
|
||||
opacity: 0.4;
|
||||
pointer-events: none; }
|
||||
|
||||
.prefs-pane {
|
||||
color: #4A4A4F;
|
||||
|
@ -1133,8 +1136,25 @@ main {
|
|||
height: 370px; }
|
||||
.wide-layout-enabled .card-outer .card-preview-image-outer {
|
||||
height: 155px; }
|
||||
.wide-layout-enabled .card-outer .card-details {
|
||||
padding: 13px 16px 12px; }
|
||||
.wide-layout-enabled .card-outer .card-text {
|
||||
max-height: 135px; } }
|
||||
max-height: 140px; }
|
||||
.wide-layout-enabled .card-outer .card-host-name {
|
||||
font-size: 12px;
|
||||
padding-bottom: 5px; }
|
||||
.wide-layout-enabled .card-outer .card-title {
|
||||
font-size: 17px;
|
||||
line-height: 23px;
|
||||
margin-bottom: 0; }
|
||||
.wide-layout-enabled .card-outer .card-text:not(.no-description) .card-title {
|
||||
max-height: 69px; }
|
||||
.wide-layout-enabled .card-outer .card-description {
|
||||
font-size: 15px;
|
||||
line-height: 23px; }
|
||||
.wide-layout-enabled .card-outer .card-context {
|
||||
bottom: 4px;
|
||||
font-size: 14px; } }
|
||||
|
||||
.manual-migration-container {
|
||||
color: #4A4A4F;
|
||||
|
@ -1180,7 +1200,10 @@ main {
|
|||
padding: 0 12px; }
|
||||
|
||||
.collapsible-section {
|
||||
padding: 10px 25px; }
|
||||
padding: 10px 25px;
|
||||
transition-delay: 100ms;
|
||||
transition-duration: 100ms;
|
||||
transition-property: background-color; }
|
||||
.collapsible-section .section-title {
|
||||
margin: 0; }
|
||||
.collapsible-section .section-title .click-target {
|
||||
|
@ -1206,7 +1229,8 @@ main {
|
|||
transition-property: opacity;
|
||||
width: 27px; }
|
||||
.collapsible-section .section-top-bar .context-menu-button:-moz-any(:active, :focus, :hover) {
|
||||
fill: #0C0C0D; }
|
||||
fill: #0C0C0D;
|
||||
opacity: 1; }
|
||||
.collapsible-section .section-top-bar .context-menu {
|
||||
top: 16px; }
|
||||
@media (max-width: 1458px) {
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -795,6 +795,9 @@ main {
|
|||
fill: #FFF; }
|
||||
.context-menu > ul > li > a:-moz-any(:focus, :hover):-moz-any(:focus, :hover) {
|
||||
color: #FFF; }
|
||||
.context-menu > ul > li > a.disabled {
|
||||
opacity: 0.4;
|
||||
pointer-events: none; }
|
||||
|
||||
.prefs-pane {
|
||||
color: #4A4A4F;
|
||||
|
@ -1133,8 +1136,25 @@ main {
|
|||
height: 370px; }
|
||||
.wide-layout-enabled .card-outer .card-preview-image-outer {
|
||||
height: 155px; }
|
||||
.wide-layout-enabled .card-outer .card-details {
|
||||
padding: 13px 16px 12px; }
|
||||
.wide-layout-enabled .card-outer .card-text {
|
||||
max-height: 135px; } }
|
||||
max-height: 140px; }
|
||||
.wide-layout-enabled .card-outer .card-host-name {
|
||||
font-size: 12px;
|
||||
padding-bottom: 5px; }
|
||||
.wide-layout-enabled .card-outer .card-title {
|
||||
font-size: 17px;
|
||||
line-height: 23px;
|
||||
margin-bottom: 0; }
|
||||
.wide-layout-enabled .card-outer .card-text:not(.no-description) .card-title {
|
||||
max-height: 69px; }
|
||||
.wide-layout-enabled .card-outer .card-description {
|
||||
font-size: 15px;
|
||||
line-height: 23px; }
|
||||
.wide-layout-enabled .card-outer .card-context {
|
||||
bottom: 4px;
|
||||
font-size: 14px; } }
|
||||
|
||||
.manual-migration-container {
|
||||
color: #4A4A4F;
|
||||
|
@ -1180,7 +1200,10 @@ main {
|
|||
padding: 0 12px; }
|
||||
|
||||
.collapsible-section {
|
||||
padding: 10px 25px; }
|
||||
padding: 10px 25px;
|
||||
transition-delay: 100ms;
|
||||
transition-duration: 100ms;
|
||||
transition-property: background-color; }
|
||||
.collapsible-section .section-title {
|
||||
margin: 0; }
|
||||
.collapsible-section .section-title .click-target {
|
||||
|
@ -1206,7 +1229,8 @@ main {
|
|||
transition-property: opacity;
|
||||
width: 27px; }
|
||||
.collapsible-section .section-top-bar .context-menu-button:-moz-any(:active, :focus, :hover) {
|
||||
fill: #0C0C0D; }
|
||||
fill: #0C0C0D;
|
||||
opacity: 1; }
|
||||
.collapsible-section .section-top-bar .context-menu {
|
||||
top: 16px; }
|
||||
@media (max-width: 1458px) {
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -106,7 +106,7 @@ const actionTypes = {};
|
|||
/* harmony export (immutable) */ __webpack_exports__["b"] = actionTypes;
|
||||
|
||||
|
||||
for (const type of ["ARCHIVE_FROM_POCKET", "BLOCK_URL", "BOOKMARK_URL", "DELETE_BOOKMARK_BY_ID", "DELETE_FROM_POCKET", "DELETE_HISTORY_URL", "DELETE_HISTORY_URL_CONFIRM", "DIALOG_CANCEL", "DIALOG_OPEN", "DISABLE_ONBOARDING", "INIT", "MIGRATION_CANCEL", "MIGRATION_COMPLETED", "MIGRATION_START", "NEW_TAB_INIT", "NEW_TAB_INITIAL_STATE", "NEW_TAB_LOAD", "NEW_TAB_REHYDRATED", "NEW_TAB_STATE_REQUEST", "NEW_TAB_UNLOAD", "OPEN_LINK", "OPEN_NEW_WINDOW", "OPEN_PRIVATE_WINDOW", "PAGE_PRERENDERED", "PLACES_BOOKMARK_ADDED", "PLACES_BOOKMARK_CHANGED", "PLACES_BOOKMARK_REMOVED", "PLACES_HISTORY_CLEARED", "PLACES_LINKS_DELETED", "PLACES_LINK_BLOCKED", "PLACES_SAVED_TO_POCKET", "PREFS_INITIAL_VALUES", "PREF_CHANGED", "RICH_ICON_MISSING", "SAVE_SESSION_PERF_DATA", "SAVE_TO_POCKET", "SCREENSHOT_UPDATED", "SECTION_DEREGISTER", "SECTION_DISABLE", "SECTION_ENABLE", "SECTION_OPTIONS_CHANGED", "SECTION_REGISTER", "SECTION_UPDATE", "SECTION_UPDATE_CARD", "SETTINGS_CLOSE", "SETTINGS_OPEN", "SET_PREF", "SHOW_FIREFOX_ACCOUNTS", "SNIPPETS_BLOCKLIST_UPDATED", "SNIPPETS_DATA", "SNIPPETS_RESET", "SNIPPET_BLOCKED", "SYSTEM_TICK", "TELEMETRY_IMPRESSION_STATS", "TELEMETRY_PERFORMANCE_EVENT", "TELEMETRY_UNDESIRED_EVENT", "TELEMETRY_USER_EVENT", "TOP_SITES_CANCEL_EDIT", "TOP_SITES_EDIT", "TOP_SITES_INSERT", "TOP_SITES_PIN", "TOP_SITES_UNPIN", "TOP_SITES_UPDATED", "TOTAL_BOOKMARKS_REQUEST", "TOTAL_BOOKMARKS_RESPONSE", "UNINIT", "WEBEXT_CLICK", "WEBEXT_DISMISS"]) {
|
||||
for (const type of ["ARCHIVE_FROM_POCKET", "BLOCK_URL", "BOOKMARK_URL", "DELETE_BOOKMARK_BY_ID", "DELETE_FROM_POCKET", "DELETE_HISTORY_URL", "DELETE_HISTORY_URL_CONFIRM", "DIALOG_CANCEL", "DIALOG_OPEN", "DISABLE_ONBOARDING", "INIT", "MIGRATION_CANCEL", "MIGRATION_COMPLETED", "MIGRATION_START", "NEW_TAB_INIT", "NEW_TAB_INITIAL_STATE", "NEW_TAB_LOAD", "NEW_TAB_REHYDRATED", "NEW_TAB_STATE_REQUEST", "NEW_TAB_UNLOAD", "OPEN_LINK", "OPEN_NEW_WINDOW", "OPEN_PRIVATE_WINDOW", "PAGE_PRERENDERED", "PLACES_BOOKMARK_ADDED", "PLACES_BOOKMARK_CHANGED", "PLACES_BOOKMARK_REMOVED", "PLACES_HISTORY_CLEARED", "PLACES_LINKS_DELETED", "PLACES_LINK_BLOCKED", "PLACES_SAVED_TO_POCKET", "PREFS_INITIAL_VALUES", "PREF_CHANGED", "RICH_ICON_MISSING", "SAVE_SESSION_PERF_DATA", "SAVE_TO_POCKET", "SCREENSHOT_UPDATED", "SECTION_DEREGISTER", "SECTION_DISABLE", "SECTION_ENABLE", "SECTION_MOVE", "SECTION_OPTIONS_CHANGED", "SECTION_REGISTER", "SECTION_UPDATE", "SECTION_UPDATE_CARD", "SETTINGS_CLOSE", "SETTINGS_OPEN", "SET_PREF", "SHOW_FIREFOX_ACCOUNTS", "SNIPPETS_BLOCKLIST_CLEARED", "SNIPPETS_BLOCKLIST_UPDATED", "SNIPPETS_DATA", "SNIPPETS_RESET", "SNIPPET_BLOCKED", "SYSTEM_TICK", "TELEMETRY_IMPRESSION_STATS", "TELEMETRY_PERFORMANCE_EVENT", "TELEMETRY_UNDESIRED_EVENT", "TELEMETRY_USER_EVENT", "TOP_SITES_CANCEL_EDIT", "TOP_SITES_EDIT", "TOP_SITES_INSERT", "TOP_SITES_PIN", "TOP_SITES_UNPIN", "TOP_SITES_UPDATED", "TOTAL_BOOKMARKS_REQUEST", "TOTAL_BOOKMARKS_RESPONSE", "UNINIT", "WEBEXT_CLICK", "WEBEXT_DISMISS"]) {
|
||||
actionTypes[type] = type;
|
||||
}
|
||||
|
||||
|
@ -649,28 +649,11 @@ function Sections(prevState = INITIAL_STATE.Sections, action) {
|
|||
}
|
||||
return section;
|
||||
});
|
||||
|
||||
// Invariant: Sections array sorted in increasing order of property `order`.
|
||||
// If section doesn't exist in prevState, create a new section object. If
|
||||
// the section has an order, insert it at the correct place in the array.
|
||||
// Otherwise, prepend it and set the order to be minimal.
|
||||
// Otherwise, append it
|
||||
if (!hasMatch) {
|
||||
const initialized = !!(action.data.rows && action.data.rows.length > 0);
|
||||
let order;
|
||||
let index;
|
||||
if (prevState.length > 0) {
|
||||
order = action.data.order !== undefined ? action.data.order : prevState[0].order - 1;
|
||||
index = newState.findIndex(section => section.order >= order);
|
||||
if (index === -1) {
|
||||
index = newState.length;
|
||||
}
|
||||
} else {
|
||||
order = action.data.order !== undefined ? action.data.order : 0;
|
||||
index = 0;
|
||||
}
|
||||
|
||||
const section = Object.assign({ title: "", rows: [], order, enabled: false }, action.data, { initialized });
|
||||
newState.splice(index, 0, section);
|
||||
const section = Object.assign({ title: "", rows: [], enabled: false }, action.data, { initialized });
|
||||
newState.push(section);
|
||||
}
|
||||
return newState;
|
||||
case Actions["b" /* actionTypes */].SECTION_UPDATE:
|
||||
|
@ -803,6 +786,10 @@ function Snippets(prevState = INITIAL_STATE.Snippets, action) {
|
|||
switch (action.type) {
|
||||
case Actions["b" /* actionTypes */].SNIPPETS_DATA:
|
||||
return Object.assign({}, prevState, { initialized: true }, action.data);
|
||||
case Actions["b" /* actionTypes */].SNIPPET_BLOCKED:
|
||||
return Object.assign({}, prevState, { blockList: prevState.blockList.concat(action.data) });
|
||||
case Actions["b" /* actionTypes */].SNIPPETS_BLOCKLIST_CLEARED:
|
||||
return Object.assign({}, prevState, { blockList: [] });
|
||||
case Actions["b" /* actionTypes */].SNIPPETS_RESET:
|
||||
return INITIAL_STATE.Snippets;
|
||||
default:
|
||||
|
@ -1006,13 +993,13 @@ const LinkMenuOptions = {
|
|||
action_position: index
|
||||
})
|
||||
}),
|
||||
DeleteUrl: (site, index, eventSource) => ({
|
||||
DeleteUrl: (site, index, eventSource, isEnabled, siteInfo) => ({
|
||||
id: "menu_action_delete",
|
||||
icon: "delete",
|
||||
action: {
|
||||
type: Actions["b" /* actionTypes */].DIALOG_OPEN,
|
||||
data: {
|
||||
onConfirm: [Actions["a" /* actionCreators */].AlsoToMain({ type: Actions["b" /* actionTypes */].DELETE_HISTORY_URL, data: { url: site.url, pocket_id: site.pocket_id, forceBlock: site.bookmarkGuid } }), Actions["a" /* actionCreators */].UserEvent({ event: "DELETE", source: eventSource, action_position: index })],
|
||||
onConfirm: [Actions["a" /* actionCreators */].AlsoToMain({ type: Actions["b" /* actionTypes */].DELETE_HISTORY_URL, data: { url: site.url, pocket_id: site.pocket_id, forceBlock: site.bookmarkGuid } }), Actions["a" /* actionCreators */].UserEvent(Object.assign({ event: "DELETE", source: eventSource, action_position: index }, siteInfo))],
|
||||
eventSource,
|
||||
body_string_id: ["confirm_history_delete_p1", "confirm_history_delete_notice_p2"],
|
||||
confirm_button_string_id: "menu_action_delete",
|
||||
|
@ -1084,7 +1071,7 @@ const LinkMenuOptions = {
|
|||
CheckPinTopSite: (site, index) => site.isPinned ? LinkMenuOptions.UnpinTopSite(site) : LinkMenuOptions.PinTopSite(site, index),
|
||||
CheckSavedToPocket: (site, index) => site.pocket_id ? LinkMenuOptions.DeleteFromPocket(site) : LinkMenuOptions.SaveToPocket(site, index),
|
||||
CheckBookmarkOrArchive: site => site.pocket_id ? LinkMenuOptions.ArchiveFromPocket(site) : LinkMenuOptions.CheckBookmark(site),
|
||||
CheckDeleteHistoryOrEmpty: (site, index, eventSource) => site.pocket_id ? LinkMenuOptions.EmptyItem() : LinkMenuOptions.DeleteUrl(site, index, eventSource),
|
||||
CheckDeleteHistoryOrEmpty: (site, index, eventSource, isEnabled, siteInfo) => site.pocket_id ? LinkMenuOptions.EmptyItem() : LinkMenuOptions.DeleteUrl(site, index, eventSource, isEnabled, siteInfo),
|
||||
OpenInPrivateWindow: (site, index, eventSource, isEnabled) => isEnabled ? _OpenInPrivateWindow(site) : LinkMenuOptions.EmptyItem()
|
||||
};
|
||||
// EXTERNAL MODULE: external "React"
|
||||
|
@ -1104,23 +1091,24 @@ const DEFAULT_SITE_MENU_OPTIONS = ["CheckPinTopSite", "EditTopSite", "Separator"
|
|||
class LinkMenu__LinkMenu extends external__React__default.a.PureComponent {
|
||||
getOptions() {
|
||||
const { props } = this;
|
||||
const { site, index, source, isPrivateBrowsingEnabled } = props;
|
||||
const { site, index, source, isPrivateBrowsingEnabled, siteInfo } = props;
|
||||
|
||||
// Handle special case of default site
|
||||
const propOptions = !site.isDefault ? props.options : DEFAULT_SITE_MENU_OPTIONS;
|
||||
|
||||
const options = propOptions.map(o => LinkMenuOptions[o](site, index, source, isPrivateBrowsingEnabled)).map(option => {
|
||||
const options = propOptions.map(o => LinkMenuOptions[o](site, index, source, isPrivateBrowsingEnabled, siteInfo)).map(option => {
|
||||
const { action, impression, id, string_id, type, userEvent } = option;
|
||||
if (!type && id) {
|
||||
option.label = props.intl.formatMessage({ id: string_id || id });
|
||||
option.onClick = () => {
|
||||
props.dispatch(action);
|
||||
if (userEvent) {
|
||||
props.dispatch(Actions["a" /* actionCreators */].UserEvent({
|
||||
const userEventData = Object.assign({
|
||||
event: userEvent,
|
||||
source,
|
||||
action_position: index
|
||||
}));
|
||||
}, siteInfo);
|
||||
props.dispatch(Actions["a" /* actionCreators */].UserEvent(userEventData));
|
||||
}
|
||||
if (impression && props.shouldSendImpressionStats) {
|
||||
props.dispatch(impression);
|
||||
|
@ -1165,6 +1153,7 @@ class ContextMenu extends __WEBPACK_IMPORTED_MODULE_0_react___default.a.PureComp
|
|||
constructor(props) {
|
||||
super(props);
|
||||
this.hideContext = this.hideContext.bind(this);
|
||||
this.onClick = this.onClick.bind(this);
|
||||
}
|
||||
|
||||
hideContext() {
|
||||
|
@ -1181,10 +1170,17 @@ class ContextMenu extends __WEBPACK_IMPORTED_MODULE_0_react___default.a.PureComp
|
|||
global.removeEventListener("click", this.hideContext);
|
||||
}
|
||||
|
||||
onClick(event) {
|
||||
// Eat all clicks on the context menu so they don't bubble up to window.
|
||||
// This prevents the context menu from closing when clicking disabled items
|
||||
// or the separators.
|
||||
event.stopPropagation();
|
||||
}
|
||||
|
||||
render() {
|
||||
return __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement(
|
||||
"span",
|
||||
{ className: "context-menu" },
|
||||
{ className: "context-menu", onClick: this.onClick },
|
||||
__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement(
|
||||
"ul",
|
||||
{ role: "menu", className: "context-menu-list" },
|
||||
|
@ -1233,7 +1229,7 @@ class ContextMenuItem extends __WEBPACK_IMPORTED_MODULE_0_react___default.a.Pure
|
|||
{ role: "menuitem", className: "context-menu-item" },
|
||||
__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement(
|
||||
"a",
|
||||
{ onClick: this.onClick, onKeyDown: this.onKeyDown, tabIndex: "0" },
|
||||
{ onClick: this.onClick, onKeyDown: this.onKeyDown, tabIndex: "0", className: option.disabled ? "disabled" : "" },
|
||||
option.icon && __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span", { className: `icon icon-spacer icon-${option.icon}` }),
|
||||
option.label
|
||||
)
|
||||
|
@ -1414,7 +1410,7 @@ class _CollapsibleSection extends __WEBPACK_IMPORTED_MODULE_3_react___default.a.
|
|||
const isCollapsible = this.props.prefName in this.props.Prefs.values;
|
||||
const isCollapsed = getCollapsed(this.props);
|
||||
const { enableAnimation, isAnimating, maxHeight, menuButtonHover, showContextMenu } = this.state;
|
||||
const { id, eventSource, disclaimer, title, extraMenuOptions, prefName, showPrefName, privacyNoticeURL, dispatch } = this.props;
|
||||
const { id, eventSource, disclaimer, title, extraMenuOptions, prefName, showPrefName, privacyNoticeURL, dispatch, isFirst, isLast } = this.props;
|
||||
const disclaimerPref = `section.${id}.showDisclaimer`;
|
||||
const needsDisclaimer = disclaimer && this.props.Prefs.values[disclaimerPref];
|
||||
const active = menuButtonHover || showContextMenu;
|
||||
|
@ -1453,6 +1449,7 @@ class _CollapsibleSection extends __WEBPACK_IMPORTED_MODULE_3_react___default.a.
|
|||
)
|
||||
),
|
||||
showContextMenu && __WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_4_content_src_components_SectionMenu_SectionMenu__["a" /* SectionMenu */], {
|
||||
id: id,
|
||||
extraOptions: extraMenuOptions,
|
||||
eventSource: eventSource,
|
||||
showPrefName: showPrefName,
|
||||
|
@ -1460,6 +1457,8 @@ class _CollapsibleSection extends __WEBPACK_IMPORTED_MODULE_3_react___default.a.
|
|||
privacyNoticeURL: privacyNoticeURL,
|
||||
isCollapsed: isCollapsed,
|
||||
onUpdate: this.onMenuUpdate,
|
||||
isFirst: isFirst,
|
||||
isLast: isLast,
|
||||
dispatch: dispatch })
|
||||
)
|
||||
),
|
||||
|
@ -1967,12 +1966,24 @@ class TopSite extends __WEBPACK_IMPORTED_MODULE_4_react___default.a.PureComponen
|
|||
this.onMenuUpdate = this.onMenuUpdate.bind(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Report to telemetry additional information about the item.
|
||||
*/
|
||||
_getTelemetryInfo() {
|
||||
const value = { icon_type: this.props.link.iconType };
|
||||
// Filter out "not_pinned" type for being the default
|
||||
if (this.props.link.isPinned) {
|
||||
value.card_type = "pinned";
|
||||
}
|
||||
return { value };
|
||||
}
|
||||
|
||||
userEvent(event) {
|
||||
this.props.dispatch(__WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["a" /* actionCreators */].UserEvent({
|
||||
this.props.dispatch(__WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["a" /* actionCreators */].UserEvent(Object.assign({
|
||||
event,
|
||||
source: __WEBPACK_IMPORTED_MODULE_2__TopSitesConstants__["d" /* TOP_SITES_SOURCE */],
|
||||
action_position: this.props.index
|
||||
}));
|
||||
}, this._getTelemetryInfo())));
|
||||
}
|
||||
|
||||
onLinkClick(ev) {
|
||||
|
@ -2015,6 +2026,7 @@ class TopSite extends __WEBPACK_IMPORTED_MODULE_4_react___default.a.PureComponen
|
|||
onUpdate: this.onMenuUpdate,
|
||||
options: __WEBPACK_IMPORTED_MODULE_2__TopSitesConstants__["c" /* TOP_SITES_CONTEXT_MENU_OPTIONS */],
|
||||
site: link,
|
||||
siteInfo: this._getTelemetryInfo(),
|
||||
source: __WEBPACK_IMPORTED_MODULE_2__TopSitesConstants__["d" /* TOP_SITES_SOURCE */] })
|
||||
)
|
||||
);
|
||||
|
@ -2198,7 +2210,7 @@ class _TopSiteList extends __WEBPACK_IMPORTED_MODULE_4_react___default.a.PureCom
|
|||
const maxNarrowVisibleIndex = props.TopSitesRows * 6;
|
||||
|
||||
for (let i = 0, l = topSites.length; i < l; i++) {
|
||||
const link = topSites[i];
|
||||
const link = topSites[i] && Object.assign({}, topSites[i], { iconType: this.props.topSiteIconType(topSites[i]) });
|
||||
const slotProps = {
|
||||
key: link ? link.url : holeIndex++,
|
||||
index: i
|
||||
|
@ -2323,6 +2335,7 @@ class SnippetsMap extends Map {
|
|||
|
||||
clear() {
|
||||
super.clear();
|
||||
this._dispatch(__WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["a" /* actionCreators */].OnlyToMain({ type: __WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["b" /* actionTypes */].SNIPPETS_BLOCKLIST_CLEARED }));
|
||||
return this._dbTransaction(db => db.clear());
|
||||
}
|
||||
|
||||
|
@ -2344,7 +2357,7 @@ class SnippetsMap extends Map {
|
|||
const { blockList } = this;
|
||||
if (!blockList.includes(id)) {
|
||||
blockList.push(id);
|
||||
this._dispatch(__WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["a" /* actionCreators */].AlsoToMain({ type: __WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["b" /* actionTypes */].SNIPPETS_BLOCKLIST_UPDATED, data: blockList }));
|
||||
this._dispatch(__WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["a" /* actionCreators */].AlsoToMain({ type: __WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["b" /* actionTypes */].SNIPPETS_BLOCKLIST_UPDATED, data: id }));
|
||||
await this.set("blockList", blockList);
|
||||
}
|
||||
}
|
||||
|
@ -2460,7 +2473,9 @@ class SnippetsMap extends Map {
|
|||
let cursor = event.target.result;
|
||||
// Populate the cache from the persistent storage.
|
||||
if (cursor) {
|
||||
this.set(cursor.key, cursor.value);
|
||||
if (cursor.value !== "blockList") {
|
||||
this.set(cursor.key, cursor.value);
|
||||
}
|
||||
cursor.continue();
|
||||
} else {
|
||||
// We are done.
|
||||
|
@ -2563,8 +2578,10 @@ class SnippetsProvider {
|
|||
|
||||
_onAction(msg) {
|
||||
if (msg.data.type === __WEBPACK_IMPORTED_MODULE_0_common_Actions_jsm__["b" /* actionTypes */].SNIPPET_BLOCKED) {
|
||||
this.snippetsMap.set("blockList", msg.data.data);
|
||||
document.getElementById("snippets-container").style.display = "none";
|
||||
if (!this.snippetsMap.blockList.includes(msg.data.data)) {
|
||||
this.snippetsMap.set("blockList", this.snippetsMap.blockList.concat(msg.data.data));
|
||||
document.getElementById("snippets-container").style.display = "none";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2601,7 +2618,11 @@ class SnippetsProvider {
|
|||
|
||||
// Cache app data values so they can be accessible from gSnippetsMap
|
||||
for (const key of Object.keys(this.appData)) {
|
||||
this.snippetsMap.set(`appData.${key}`, this.appData[key]);
|
||||
if (key === "blockList") {
|
||||
this.snippetsMap.set("blockList", this.appData[key]);
|
||||
} else {
|
||||
this.snippetsMap.set(`appData.${key}`, this.appData[key]);
|
||||
}
|
||||
}
|
||||
|
||||
// Refresh snippets, if enough time has passed.
|
||||
|
@ -3105,7 +3126,8 @@ var PrerenderData = new _PrerenderData({
|
|||
"section.topstories.collapsed": false,
|
||||
"feeds.section.topstories": true,
|
||||
"feeds.section.highlights": true,
|
||||
"enableWideLayout": true
|
||||
"enableWideLayout": true,
|
||||
"sectionOrder": "topsites,topstories,highlights"
|
||||
},
|
||||
// Prefs listed as invalidating will prevent the prerendered version
|
||||
// of AS from being used if their value is something other than what is listed
|
||||
|
@ -3113,7 +3135,7 @@ var PrerenderData = new _PrerenderData({
|
|||
// too different for the prerendered version to be used. Unfortunately, this
|
||||
// will result in users who have modified some of their preferences not being
|
||||
// able to get the benefits of prerendering.
|
||||
validation: ["showTopSites", "showSearch", "topSitesRows", "collapseTopSites", "section.highlights.collapsed", "section.topstories.collapsed", "enableWideLayout",
|
||||
validation: ["showTopSites", "showSearch", "topSitesRows", "collapseTopSites", "section.highlights.collapsed", "section.topstories.collapsed", "enableWideLayout", "sectionOrder",
|
||||
// This means if either of these are set to their default values,
|
||||
// prerendering can be used.
|
||||
{ oneOf: ["feeds.section.topstories", "feeds.section.highlights"] }],
|
||||
|
@ -3239,9 +3261,6 @@ const Search = Object(external__ReactRedux_["connect"])()(Object(external__React
|
|||
// EXTERNAL MODULE: ./system-addon/content-src/components/Sections/Sections.jsx
|
||||
var Sections = __webpack_require__(18);
|
||||
|
||||
// EXTERNAL MODULE: ./system-addon/content-src/components/TopSites/TopSites.jsx
|
||||
var TopSites = __webpack_require__(22);
|
||||
|
||||
// CONCATENATED MODULE: ./system-addon/content-src/components/Base/Base.jsx
|
||||
|
||||
|
||||
|
@ -3255,7 +3274,6 @@ var TopSites = __webpack_require__(22);
|
|||
|
||||
|
||||
|
||||
|
||||
// Add the locale data for pluralization and relative-time formatting for now,
|
||||
// this just uses english locale data. We can make this more sophisticated if
|
||||
// more features are needed.
|
||||
|
@ -3351,7 +3369,6 @@ class Base_BaseContent extends external__React__default.a.PureComponent {
|
|||
{ className: "non-collapsible-section" },
|
||||
external__React__default.a.createElement(ManualMigration, null)
|
||||
),
|
||||
prefs.showTopSites && external__React__default.a.createElement(TopSites["a" /* TopSites */], null),
|
||||
external__React__default.a.createElement(Sections["a" /* Sections */], null)
|
||||
),
|
||||
external__React__default.a.createElement(ConfirmDialog, null)
|
||||
|
@ -3403,6 +3420,7 @@ const Base = Object(external__ReactRedux_["connect"])(state => ({ App: state.App
|
|||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react__ = __webpack_require__(1);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react__);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_content_src_components_Topics_Topics__ = __webpack_require__(21);
|
||||
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_content_src_components_TopSites_TopSites__ = __webpack_require__(22);
|
||||
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
||||
|
||||
|
||||
|
@ -3414,6 +3432,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|||
|
||||
|
||||
|
||||
|
||||
const VISIBLE = "visible";
|
||||
const VISIBILITY_CHANGE_EVENT = "visibilitychange";
|
||||
const CARDS_PER_ROW = 3;
|
||||
|
@ -3460,7 +3479,7 @@ class Section extends __WEBPACK_IMPORTED_MODULE_6_react___default.a.PureComponen
|
|||
props.document.removeEventListener(VISIBILITY_CHANGE_EVENT, this._onVisibilityChange);
|
||||
}
|
||||
|
||||
// When the page becoems visible, send the impression stats ping if the section isn't collapsed.
|
||||
// When the page becomes visible, send the impression stats ping if the section isn't collapsed.
|
||||
this._onVisibilityChange = () => {
|
||||
if (props.document.visibilityState === VISIBLE) {
|
||||
const { id, Prefs } = this.props;
|
||||
|
@ -3501,6 +3520,12 @@ class Section extends __WEBPACK_IMPORTED_MODULE_6_react___default.a.PureComponen
|
|||
}
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
if (this._onVisibilityChange) {
|
||||
this.props.document.removeEventListener(VISIBILITY_CHANGE_EVENT, this._onVisibilityChange);
|
||||
}
|
||||
}
|
||||
|
||||
needsImpressionStats(cards) {
|
||||
if (!this.impressionCardGuids || this.impressionCardGuids.length !== cards.length) {
|
||||
return true;
|
||||
|
@ -3531,7 +3556,7 @@ class Section extends __WEBPACK_IMPORTED_MODULE_6_react___default.a.PureComponen
|
|||
id, eventSource, title, icon, rows,
|
||||
emptyState, dispatch, maxRows,
|
||||
contextMenuOptions, initialized, disclaimer,
|
||||
pref, privacyNoticeURL
|
||||
pref, privacyNoticeURL, isFirst, isLast
|
||||
} = this.props;
|
||||
const maxCards = CARDS_PER_ROW * maxRows;
|
||||
|
||||
|
@ -3562,6 +3587,8 @@ class Section extends __WEBPACK_IMPORTED_MODULE_6_react___default.a.PureComponen
|
|||
showPrefName: pref && pref.feed || id,
|
||||
privacyNoticeURL: privacyNoticeURL,
|
||||
Prefs: this.props.Prefs,
|
||||
isFirst: isFirst,
|
||||
isLast: isLast,
|
||||
dispatch: this.props.dispatch },
|
||||
!shouldShowEmptyState && __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
|
||||
"ul",
|
||||
|
@ -3599,17 +3626,41 @@ Section.defaultProps = {
|
|||
title: ""
|
||||
};
|
||||
|
||||
const SectionIntl = Object(__WEBPACK_IMPORTED_MODULE_1_react_intl__["injectIntl"])(Section);
|
||||
const SectionIntl = Object(__WEBPACK_IMPORTED_MODULE_5_react_redux__["connect"])(state => ({ Prefs: state.Prefs }))(Object(__WEBPACK_IMPORTED_MODULE_1_react_intl__["injectIntl"])(Section));
|
||||
/* unused harmony export SectionIntl */
|
||||
|
||||
|
||||
class _Sections extends __WEBPACK_IMPORTED_MODULE_6_react___default.a.PureComponent {
|
||||
renderSections() {
|
||||
const sections = [];
|
||||
const enabledSections = this.props.Sections.filter(section => section.enabled);
|
||||
const { sectionOrder, showTopSites } = this.props.Prefs.values;
|
||||
// Enabled sections doesn't include Top Sites, so we add it if enabled.
|
||||
const expectedCount = enabledSections.length + ~~showTopSites;
|
||||
|
||||
for (const sectionId of sectionOrder.split(",")) {
|
||||
const commonProps = {
|
||||
key: sectionId,
|
||||
isFirst: sections.length === 0,
|
||||
isLast: sections.length === expectedCount - 1
|
||||
};
|
||||
if (sectionId === "topsites" && showTopSites) {
|
||||
sections.push(__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_8_content_src_components_TopSites_TopSites__["a" /* TopSites */], commonProps));
|
||||
} else {
|
||||
const section = enabledSections.find(s => s.id === sectionId);
|
||||
if (section) {
|
||||
sections.push(__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(SectionIntl, _extends({}, section, commonProps)));
|
||||
}
|
||||
}
|
||||
}
|
||||
return sections;
|
||||
}
|
||||
|
||||
render() {
|
||||
const sections = this.props.Sections;
|
||||
return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
|
||||
"div",
|
||||
{ className: "sections-list" },
|
||||
sections.filter(section => section.enabled).map(section => __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(SectionIntl, _extends({ key: section.id }, section, { Prefs: this.props.Prefs, dispatch: this.props.dispatch })))
|
||||
this.renderSections()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -3735,6 +3786,18 @@ class Card_Card extends external__React__default.a.PureComponent {
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Report to telemetry additional information about the item.
|
||||
*/
|
||||
_getTelemetryInfo() {
|
||||
// Filter out "history" type for being the default
|
||||
if (this.props.link.type !== "history") {
|
||||
return { value: { card_type: this.props.link.type } };
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
onLinkClick(event) {
|
||||
event.preventDefault();
|
||||
const { altKey, button, ctrlKey, metaKey, shiftKey } = event;
|
||||
|
@ -3750,11 +3813,11 @@ class Card_Card extends external__React__default.a.PureComponent {
|
|||
action_position: this.props.index
|
||||
}));
|
||||
} else {
|
||||
this.props.dispatch(Actions["a" /* actionCreators */].UserEvent({
|
||||
this.props.dispatch(Actions["a" /* actionCreators */].UserEvent(Object.assign({
|
||||
event: "CLICK",
|
||||
source: this.props.eventSource,
|
||||
action_position: this.props.index
|
||||
}));
|
||||
}, this._getTelemetryInfo())));
|
||||
|
||||
if (this.props.shouldSendImpressionStats) {
|
||||
this.props.dispatch(Actions["a" /* actionCreators */].ImpressionStats({
|
||||
|
@ -3866,6 +3929,7 @@ class Card_Card extends external__React__default.a.PureComponent {
|
|||
onUpdate: this.onMenuUpdate,
|
||||
options: link.contextMenuOptions || contextMenuOptions,
|
||||
site: link,
|
||||
siteInfo: this._getTelemetryInfo(),
|
||||
shouldSendImpressionStats: shouldSendImpressionStats })
|
||||
);
|
||||
}
|
||||
|
@ -3907,6 +3971,26 @@ var external__React__default = /*#__PURE__*/__webpack_require__.n(external__Reac
|
|||
*/
|
||||
const SectionMenuOptions = {
|
||||
Separator: () => ({ type: "separator" }),
|
||||
MoveUp: section => ({
|
||||
id: "section_menu_action_move_up",
|
||||
icon: "arrowhead-up",
|
||||
action: Actions["a" /* actionCreators */].OnlyToMain({
|
||||
type: Actions["b" /* actionTypes */].SECTION_MOVE,
|
||||
data: { id: section.id, direction: -1 }
|
||||
}),
|
||||
userEvent: "SECTION_MENU_MOVE_UP",
|
||||
disabled: !!section.isFirst
|
||||
}),
|
||||
MoveDown: section => ({
|
||||
id: "section_menu_action_move_down",
|
||||
icon: "arrowhead-down",
|
||||
action: Actions["a" /* actionCreators */].OnlyToMain({
|
||||
type: Actions["b" /* actionTypes */].SECTION_MOVE,
|
||||
data: { id: section.id, direction: +1 }
|
||||
}),
|
||||
userEvent: "SECTION_MENU_MOVE_DOWN",
|
||||
disabled: !!section.isLast
|
||||
}),
|
||||
RemoveSection: section => ({
|
||||
id: "section_menu_action_remove_section",
|
||||
icon: "dismiss",
|
||||
|
@ -3955,7 +4039,7 @@ const SectionMenuOptions = {
|
|||
|
||||
|
||||
|
||||
const DEFAULT_SECTION_MENU_OPTIONS = ["RemoveSection", "CheckCollapsed", "Separator", "ManageSection"];
|
||||
const DEFAULT_SECTION_MENU_OPTIONS = ["MoveUp", "MoveDown", "Separator", "RemoveSection", "CheckCollapsed", "Separator", "ManageSection"];
|
||||
|
||||
class SectionMenu__SectionMenu extends external__React__default.a.PureComponent {
|
||||
getOptions() {
|
||||
|
@ -4094,6 +4178,22 @@ class Topics extends __WEBPACK_IMPORTED_MODULE_1_react___default.a.PureComponent
|
|||
|
||||
|
||||
|
||||
function topSiteIconType(link) {
|
||||
if (link.tippyTopIcon || link.faviconRef === "tippytop") {
|
||||
return "tippytop";
|
||||
}
|
||||
if (link.faviconSize >= __WEBPACK_IMPORTED_MODULE_1__TopSitesConstants__["b" /* MIN_RICH_FAVICON_SIZE */]) {
|
||||
return "rich_icon";
|
||||
}
|
||||
if (link.screenshot && link.faviconSize >= __WEBPACK_IMPORTED_MODULE_1__TopSitesConstants__["a" /* MIN_CORNER_FAVICON_SIZE */]) {
|
||||
return "screenshot_with_icon";
|
||||
}
|
||||
if (link.screenshot) {
|
||||
return "screenshot";
|
||||
}
|
||||
return "no_image";
|
||||
}
|
||||
|
||||
/**
|
||||
* Iterates through TopSites and counts types of images.
|
||||
* @param acc Accumulator for reducer.
|
||||
|
@ -4101,18 +4201,7 @@ class Topics extends __WEBPACK_IMPORTED_MODULE_1_react___default.a.PureComponent
|
|||
*/
|
||||
function countTopSitesIconsTypes(topSites) {
|
||||
const countTopSitesTypes = (acc, link) => {
|
||||
if (link.tippyTopIcon || link.faviconRef === "tippytop") {
|
||||
acc.tippytop++;
|
||||
} else if (link.faviconSize >= __WEBPACK_IMPORTED_MODULE_1__TopSitesConstants__["b" /* MIN_RICH_FAVICON_SIZE */]) {
|
||||
acc.rich_icon++;
|
||||
} else if (link.screenshot && link.faviconSize >= __WEBPACK_IMPORTED_MODULE_1__TopSitesConstants__["a" /* MIN_CORNER_FAVICON_SIZE */]) {
|
||||
acc.screenshot_with_icon++;
|
||||
} else if (link.screenshot) {
|
||||
acc.screenshot++;
|
||||
} else {
|
||||
acc.no_image++;
|
||||
}
|
||||
|
||||
acc[topSiteIconType(link)]++;
|
||||
return acc;
|
||||
};
|
||||
|
||||
|
@ -4186,14 +4275,17 @@ class _TopSites extends __WEBPACK_IMPORTED_MODULE_6_react___default.a.PureCompon
|
|||
{
|
||||
className: "top-sites",
|
||||
icon: "topsites",
|
||||
id: "topsites",
|
||||
title: props.intl.formatMessage({ id: "header_top_sites" }),
|
||||
extraMenuOptions: ["AddTopSite"],
|
||||
prefName: "collapseTopSites",
|
||||
showPrefName: "showTopSites",
|
||||
eventSource: __WEBPACK_IMPORTED_MODULE_1__TopSitesConstants__["d" /* TOP_SITES_SOURCE */],
|
||||
Prefs: props.Prefs,
|
||||
isFirst: props.isFirst,
|
||||
isLast: props.isLast,
|
||||
dispatch: props.dispatch },
|
||||
__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__TopSite__["b" /* TopSiteList */], { TopSites: props.TopSites, TopSitesRows: props.TopSitesRows, dispatch: props.dispatch, intl: props.intl }),
|
||||
__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__TopSite__["b" /* TopSiteList */], { TopSites: props.TopSites, TopSitesRows: props.TopSitesRows, dispatch: props.dispatch, intl: props.intl, topSiteIconType: topSiteIconType }),
|
||||
__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
|
||||
"div",
|
||||
{ className: "edit-topsites-wrapper" },
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -8,7 +8,7 @@
|
|||
<em:type>2</em:type>
|
||||
<em:bootstrap>true</em:bootstrap>
|
||||
<em:unpack>false</em:unpack>
|
||||
<em:version>2018.03.01.1281-6a7c8294</em:version>
|
||||
<em:version>2018.03.08.1020-3f4bcec7</em:version>
|
||||
<em:name>Activity Stream</em:name>
|
||||
<em:description>A rich visual history feed and a reimagined home page make it easier than ever to find exactly what you're looking for in Firefox.</em:description>
|
||||
<em:multiprocessCompatible>true</em:multiprocessCompatible>
|
||||
|
|
|
@ -118,7 +118,7 @@ const PREFS_CONFIG = new Map([
|
|||
}],
|
||||
["telemetry.ut.events", {
|
||||
title: "Enable Unified Telemetry event data collection",
|
||||
value: !AppConstants.RELEASE_OR_BETA,
|
||||
value: AppConstants.EARLY_BETA_OR_EARLIER,
|
||||
value_local_dev: false
|
||||
}],
|
||||
["telemetry.ping.endpoint", {
|
||||
|
@ -148,6 +148,10 @@ const PREFS_CONFIG = new Map([
|
|||
["enableWideLayout", {
|
||||
title: "Enable the wider layout (8 topsites per row and larger pocket+highlight cards)",
|
||||
value: true
|
||||
}],
|
||||
["sectionOrder", {
|
||||
title: "The rendering order for the sections",
|
||||
value: "topsites,topstories,highlights"
|
||||
}]
|
||||
]);
|
||||
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
ChromeUtils.defineModuleGetter(this, "IndexedDB", "resource://gre/modules/IndexedDB.jsm");
|
||||
|
||||
this.ActivityStreamStorage = class ActivityStreamStorage {
|
||||
constructor(storeName) {
|
||||
this.dbName = "ActivityStream";
|
||||
this.dbVersion = 2;
|
||||
this.storeName = storeName;
|
||||
|
||||
this._db = null;
|
||||
}
|
||||
|
||||
get db() {
|
||||
if (!this._db) {
|
||||
throw new Error("It looks like the db connection has not initialized yet. Are you use .init was called?");
|
||||
}
|
||||
return this._db;
|
||||
}
|
||||
|
||||
getStore() {
|
||||
return this.db.objectStore(this.storeName, "readwrite");
|
||||
}
|
||||
|
||||
get(key) {
|
||||
return this.getStore().get(key);
|
||||
}
|
||||
|
||||
set(key, value) {
|
||||
return this.getStore().put(value, key);
|
||||
}
|
||||
|
||||
_openDatabase() {
|
||||
return IndexedDB.open(this.dbName, {version: this.dbVersion}, db => {
|
||||
db.createObjectStore(this.storeName);
|
||||
});
|
||||
}
|
||||
|
||||
async init() {
|
||||
this._db = await this._openDatabase();
|
||||
}
|
||||
};
|
||||
|
||||
const EXPORTED_SYMBOLS = ["ActivityStreamStorage"];
|
|
@ -55,8 +55,7 @@ this.HighlightsFeed = class HighlightsFeed {
|
|||
}
|
||||
|
||||
filterForThumbnailExpiration(callback) {
|
||||
const sectionIndex = SectionsManager.sections.get(SECTION_ID).order;
|
||||
const state = this.store.getState().Sections[sectionIndex];
|
||||
const state = this.store.getState().Sections.find(section => section.id === SECTION_ID);
|
||||
|
||||
callback(state && state.initialized ? state.rows.reduce((acc, site) => {
|
||||
// Screenshots call in `fetchImage` will search for preview_image_url or
|
||||
|
@ -140,8 +139,7 @@ this.HighlightsFeed = class HighlightsFeed {
|
|||
}
|
||||
}
|
||||
|
||||
const sectionIndex = SectionsManager.sections.get(SECTION_ID).order;
|
||||
const {initialized} = this.store.getState().Sections[sectionIndex];
|
||||
const {initialized} = this.store.getState().Sections.find(section => section.id === SECTION_ID);
|
||||
// Broadcast when required or if it is the first update.
|
||||
const shouldBroadcast = options.broadcast || !initialized;
|
||||
|
||||
|
|
|
@ -48,7 +48,6 @@ const BUILT_IN_SECTIONS = {
|
|||
icon: "check"
|
||||
},
|
||||
shouldSendImpressionStats: true,
|
||||
order: 0,
|
||||
dedupeFrom: ["highlights"]
|
||||
}),
|
||||
"feeds.section.highlights": options => ({
|
||||
|
@ -67,8 +66,7 @@ const BUILT_IN_SECTIONS = {
|
|||
message: {id: "highlights_empty_state"},
|
||||
icon: "highlights"
|
||||
},
|
||||
shouldSendImpressionStats: false,
|
||||
order: 1
|
||||
shouldSendImpressionStats: false
|
||||
})
|
||||
};
|
||||
|
||||
|
@ -116,7 +114,7 @@ const SectionsManager = {
|
|||
options = JSON.parse(optionsPrefValue);
|
||||
} catch (e) {
|
||||
options = {};
|
||||
Cu.reportError("Problem parsing options pref", e);
|
||||
Cu.reportError(`Problem parsing options pref for ${feedPrefName}`);
|
||||
}
|
||||
const section = BUILT_IN_SECTIONS[feedPrefName](options);
|
||||
section.pref.feed = feedPrefName;
|
||||
|
@ -282,6 +280,13 @@ class SectionsFeed {
|
|||
onAddSection(event, id, options) {
|
||||
if (options) {
|
||||
this.store.dispatch(ac.BroadcastToContent({type: at.SECTION_REGISTER, data: Object.assign({id}, options)}));
|
||||
|
||||
// Make sure the section is in sectionOrder pref. Otherwise, prepend it.
|
||||
const orderedSections = this.orderedSectionIds;
|
||||
if (!orderedSections.includes(id)) {
|
||||
orderedSections.unshift(id);
|
||||
this.store.dispatch(ac.SetPref("sectionOrder", orderedSections.join(",")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -303,6 +308,49 @@ class SectionsFeed {
|
|||
}
|
||||
}
|
||||
|
||||
get orderedSectionIds() {
|
||||
return this.store.getState().Prefs.values.sectionOrder.split(",");
|
||||
}
|
||||
|
||||
get enabledSectionIds() {
|
||||
let sections = this.store.getState().Sections.filter(section => section.enabled).map(s => s.id);
|
||||
// Top Sites is a special case. Append if show pref is on.
|
||||
if (this.store.getState().Prefs.values.showTopSites) {
|
||||
sections.push("topsites");
|
||||
}
|
||||
return sections;
|
||||
}
|
||||
|
||||
moveSection(id, direction) {
|
||||
const orderedSections = this.orderedSectionIds;
|
||||
const enabledSections = this.enabledSectionIds;
|
||||
let index = orderedSections.indexOf(id);
|
||||
orderedSections.splice(index, 1);
|
||||
if (direction > 0) {
|
||||
// "Move Down"
|
||||
while (index < orderedSections.length) {
|
||||
// If the section at the index is enabled/visible, insert moved section after.
|
||||
// Otherwise, move on to the next spot and check it.
|
||||
if (enabledSections.includes(orderedSections[index++])) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// "Move Up"
|
||||
while (index > 0) {
|
||||
// If the section at the previous index is enabled/visible, insert moved section there.
|
||||
// Otherwise, move on to the previous spot and check it.
|
||||
index--;
|
||||
if (enabledSections.includes(orderedSections[index])) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
orderedSections.splice(index, 0, id);
|
||||
this.store.dispatch(ac.SetPref("sectionOrder", orderedSections.join(",")));
|
||||
}
|
||||
|
||||
onAction(action) {
|
||||
switch (action.type) {
|
||||
case at.INIT:
|
||||
|
@ -336,6 +384,9 @@ class SectionsFeed {
|
|||
case at.SECTION_ENABLE:
|
||||
SectionsManager.enableSection(action.data);
|
||||
break;
|
||||
case at.SECTION_MOVE:
|
||||
this.moveSection(action.data.id, action.data.direction);
|
||||
break;
|
||||
case at.UNINIT:
|
||||
this.uninit();
|
||||
break;
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
||||
const {actionTypes: at, actionCreators: ac} = ChromeUtils.import("resource://activity-stream/common/Actions.jsm", {});
|
||||
const {ActivityStreamStorage} = ChromeUtils.import("resource://activity-stream/lib/ActivityStreamStorage.jsm", {});
|
||||
|
||||
ChromeUtils.defineModuleGetter(this, "AddonManager",
|
||||
"resource://gre/modules/AddonManager.jsm");
|
||||
|
@ -38,6 +39,7 @@ this.SnippetsFeed = class SnippetsFeed {
|
|||
this._refresh = this._refresh.bind(this);
|
||||
this._totalBookmarks = null;
|
||||
this._totalBookmarksLastUpdated = null;
|
||||
this._storage = new ActivityStreamStorage("snippets");
|
||||
}
|
||||
|
||||
get snippetsURL() {
|
||||
|
@ -126,6 +128,19 @@ this.SnippetsFeed = class SnippetsFeed {
|
|||
this.store.dispatch(ac.BroadcastToContent({type: at.SNIPPETS_DATA, data}));
|
||||
}
|
||||
|
||||
async _saveBlockedSnippet(snippetId) {
|
||||
const blockList = await this._getBlockList() || [];
|
||||
return this._storage.set("blockList", blockList.concat([snippetId]));
|
||||
}
|
||||
|
||||
_getBlockList() {
|
||||
return this._storage.get("blockList");
|
||||
}
|
||||
|
||||
_clearBlockList() {
|
||||
return this._storage.set("blockList", []);
|
||||
}
|
||||
|
||||
async _refresh() {
|
||||
const profileInfo = await this.getProfileInfo();
|
||||
const data = {
|
||||
|
@ -139,7 +154,8 @@ this.SnippetsFeed = class SnippetsFeed {
|
|||
selectedSearchEngine: await this.getSelectedSearchEngine(),
|
||||
defaultBrowser: this.isDefaultBrowser(),
|
||||
isDevtoolsUser: this.isDevtoolsUser(),
|
||||
addonInfo: await this.getAddonInfo()
|
||||
addonInfo: await this.getAddonInfo(),
|
||||
blockList: await this._getBlockList() || []
|
||||
};
|
||||
this._dispatchChanges(data);
|
||||
}
|
||||
|
@ -152,6 +168,7 @@ this.SnippetsFeed = class SnippetsFeed {
|
|||
}
|
||||
|
||||
async init() {
|
||||
await this._storage.init();
|
||||
await this._refresh();
|
||||
Services.prefs.addObserver(ONBOARDING_FINISHED_PREF, this._refresh);
|
||||
Services.prefs.addObserver(SNIPPETS_URL_PREF, this._refresh);
|
||||
|
@ -187,8 +204,12 @@ this.SnippetsFeed = class SnippetsFeed {
|
|||
this.showFirefoxAccounts(action._target.browser);
|
||||
break;
|
||||
case at.SNIPPETS_BLOCKLIST_UPDATED:
|
||||
this._saveBlockedSnippet(action.data);
|
||||
this.store.dispatch(ac.BroadcastToContent({type: at.SNIPPET_BLOCKED, data: action.data}));
|
||||
break;
|
||||
case at.SNIPPETS_BLOCKLIST_CLEARED:
|
||||
this._clearBlockList();
|
||||
break;
|
||||
case at.TOTAL_BOOKMARKS_REQUEST:
|
||||
this.getTotalBookmarksCount(action._target.browser);
|
||||
break;
|
||||
|
|
|
@ -360,7 +360,7 @@ this.TelemetryFeed = class TelemetryFeed {
|
|||
}
|
||||
|
||||
sendUTEvent(event_object, eventFunction) {
|
||||
if (this.eventTelemetryEnabled) {
|
||||
if (this.telemetryEnabled && this.eventTelemetryEnabled) {
|
||||
eventFunction(event_object);
|
||||
}
|
||||
}
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Yeny me {search_engine_name}",
|
||||
"search_web_placeholder": "Yeny kakube",
|
||||
"search_settings": "Lok ter me yeny",
|
||||
"section_info_option": "Ngec",
|
||||
"section_info_send_feedback": "Cwal adwogi",
|
||||
"section_info_privacy_notice": "Ngec me mung",
|
||||
"section_disclaimer_topstories": "Lok ma mit loyo i kakube, ki yero malube ki ngo ma ikwano. Ki ii Pocket, kombedi dong but Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Nong ngec kit ma tyo kwede.",
|
||||
"section_disclaimer_topstories_buttontext": "Eyo, aniang",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "dakika{number}",
|
||||
"time_label_hour": "cawa{number}",
|
||||
"time_label_day": "nino{number}",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Yub potbuk me dirica matidi mamegi manyen",
|
||||
"settings_pane_header": "Ter me dirica matidi manyen",
|
||||
"settings_pane_body2": "Yer ngo ma i neno i potbuk man.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Nong kakube ma ilimo loyo.",
|
||||
"settings_pane_topsites_options_showmore": "Nyut rek ariyo",
|
||||
"settings_pane_bookmarks_header": "Alamabuk ma cocoki",
|
||||
"settings_pane_bookmarks_body": "Alamabukke ni ma kicweyo manyen i kabedo acel macek.",
|
||||
"settings_pane_visit_again_header": "Lim Kidoco",
|
||||
"settings_pane_visit_again_body": "Firefox bi nyuti but gin mukato me yeny mamegi ma itwero mito me poo ikome onyo dok cen iyie.",
|
||||
"settings_pane_highlights_header": "Wiye madito",
|
||||
"settings_pane_highlights_body2": "Nong yoo ni cen i jami mamit ma ilimo gi cokcokki onyo iketo alamabuk.",
|
||||
"settings_pane_highlights_options_bookmarks": "Alamabuk",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Otum",
|
||||
"settings_pane_topstories_options_sponsored": "Nyut lok ma ki cwako",
|
||||
"edit_topsites_button_text": "Yubi",
|
||||
"edit_topsites_button_label": "Yub bute pi kakubi ni ma giloyo",
|
||||
"edit_topsites_showmore_button": "Nyut mukene",
|
||||
"edit_topsites_showless_button": "Nyut manok",
|
||||
"edit_topsites_done_button": "Otum",
|
||||
"edit_topsites_pin_button": "Mwon kakube man",
|
||||
"edit_topsites_unpin_button": "War kakube man",
|
||||
"edit_topsites_edit_button": "Yub kakube man",
|
||||
"edit_topsites_dismiss_button": "Kwer kakube man",
|
||||
"edit_topsites_add_button": "Medi",
|
||||
"topsites_form_add_header": "Kakube maloyo manyen",
|
||||
"topsites_form_edit_header": "Yub Kakube maloyo",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Ket wiye",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Coo onyo mwon URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Medi",
|
||||
"topsites_form_save_button": "Gwoki",
|
||||
"topsites_form_cancel_button": "Kwer",
|
||||
"topsites_form_url_validation": "URL ma tye atir mite",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Lok macuk gi lamal:",
|
||||
"pocket_read_even_more": "Nen Lok mapol",
|
||||
"pocket_feedback_header": "Kakube maber loyo, dano makato milion 25 aye oyubo.",
|
||||
"pocket_description": "Nong jami me rwom ma lamal ma itwero keng woko, ki kony ma aa ki bot Pocket, dong tye but Mozilla.",
|
||||
"highlights_empty_state": "Cak yeny, ka wa binyuto coc akwana mabeco, video, ki potbuk mukene ma ilimo cokcokki onyo ma kiketo alamabuk kany.",
|
||||
"topstories_empty_state": "Ityeko weng. Rot doki lacen pi lok madito mapol ki bot {provider}. Pe itwero kuro? Yer lok macuke lamal me nongo lok mabeco mapol ki i but kakube.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Med Kakube maloyo"
|
||||
"section_info_option": "Ngec",
|
||||
"section_info_privacy_notice": "Ngec me mung",
|
||||
"settings_pane_bookmarks_body": "Alamabukke ni ma kicweyo manyen i kabedo acel macek.",
|
||||
"settings_pane_visit_again_body": "Firefox bi nyuti but gin mukato me yeny mamegi ma itwero mito me poo ikome onyo dok cen iyie.",
|
||||
"edit_topsites_button_label": "Yub bute pi kakubi ni ma giloyo",
|
||||
"edit_topsites_showmore_button": "Nyut mukene",
|
||||
"edit_topsites_showless_button": "Nyut manok",
|
||||
"edit_topsites_done_button": "Otum",
|
||||
"edit_topsites_pin_button": "Mwon kakube man",
|
||||
"edit_topsites_unpin_button": "War kakube man",
|
||||
"edit_topsites_dismiss_button": "Kwer kakube man",
|
||||
"edit_topsites_add_button": "Medi",
|
||||
"edit_topsites_add_button_tooltip": "Med Kakube maloyo",
|
||||
"pocket_feedback_header": "Kakube maber loyo, dano makato milion 25 aye oyubo."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "No tiens encara marcapachinas.",
|
||||
"header_stories_from": "dende",
|
||||
"context_menu_button_sr": "Ubrir menú contextual pa {title}",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Ubrir lo menú contextual d'a sección",
|
||||
"type_label_visited": "Vesitau",
|
||||
"type_label_bookmarked": "Con marcapachinas",
|
||||
"type_label_synced": "Sincronizau dende belatro dispositivo",
|
||||
"type_label_recommended": "Tendencia",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Alzau en Pocket",
|
||||
"type_label_open": "Ubierto",
|
||||
"type_label_topic": "Tema",
|
||||
"type_label_now": "Agora",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Yes seguro que quiers borrar totas las instancias d'esta pachina en o tuyo historial?",
|
||||
"confirm_history_delete_notice_p2": "Esta acción no se puede desfer.",
|
||||
"menu_action_save_to_pocket": "Alzar en Pocket",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Borrar de Pocket",
|
||||
"menu_action_archive_pocket": "Archivar en Pocket",
|
||||
"search_for_something_with": "Mirar {search_term} con:",
|
||||
"search_button": "Mirar",
|
||||
"search_header": "Mirar con {search_engine_name}",
|
||||
"search_web_placeholder": "Mirar en o Web",
|
||||
"search_settings": "Cambiar achustes de busqueda",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Ninviar opinión",
|
||||
"section_info_privacy_notice": "Aviso de privvacidat",
|
||||
"section_disclaimer_topstories": "Los articlos mas interesants d'o web, triaus en función d'o que gosas leyer. Gracias a lo Pocket, que agora ya fa parte de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Aprende cómo funciona",
|
||||
"section_disclaimer_topstories_buttontext": "Entendiu",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Personaliza la tuya pachina de Nueva Pestanya",
|
||||
"settings_pane_header": "Preferencias de Nueva Pestanya",
|
||||
"settings_pane_body2": "Tría lo que veyes en esta pachina.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Accede a los puestos web que mas vesitas.",
|
||||
"settings_pane_topsites_options_showmore": "Amostrar dos ringleras",
|
||||
"settings_pane_bookmarks_header": "Marcapachinas recients",
|
||||
"settings_pane_bookmarks_body": "Los marcapachinas que vas creando, a l'alcanz d'a man.",
|
||||
"settings_pane_visit_again_header": "Tornar a vesitar",
|
||||
"settings_pane_visit_again_body": "Firefox t'amostrará partes d'o tuyo historial de busqueda que podrías querer remerar u tornar enta ellas.",
|
||||
"settings_pane_highlights_header": "Destacaus",
|
||||
"settings_pane_highlights_body2": "Torna a trobar lo mas interesant que has vesitau en zagueras, u que has marcau con marcapchinas.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marcapachinas",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Feito",
|
||||
"settings_pane_topstories_options_sponsored": "Amostrar articlos patrocinaus",
|
||||
"edit_topsites_button_text": "Editar",
|
||||
"edit_topsites_button_label": "Personaliza la tuya sección de Puestos mas vesitaus",
|
||||
"edit_topsites_showmore_button": "Amostrar-ne mas",
|
||||
"edit_topsites_showless_button": "Amostrar-ne menos",
|
||||
"edit_topsites_done_button": "Feito",
|
||||
"edit_topsites_pin_button": "Clava este puesto",
|
||||
"edit_topsites_unpin_button": "Desclava este puesto",
|
||||
"edit_topsites_edit_button": "Editar este puesto",
|
||||
"edit_topsites_dismiss_button": "Retira este puesto",
|
||||
"edit_topsites_add_button": "Anyadir",
|
||||
"topsites_form_add_header": "Nuevo puesto popular",
|
||||
"topsites_form_edit_header": "Editar lo puesto popular",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Titol",
|
||||
"topsites_form_title_placeholder": "Escribir un titol",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Triar u apegar una adreza web",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Anyadir",
|
||||
"topsites_form_save_button": "Alzar",
|
||||
"topsites_form_cancel_button": "Cancelar",
|
||||
"topsites_form_url_validation": "Fa falta una URL valida",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Temas populars:",
|
||||
"pocket_read_even_more": "Amostrar mas articlos",
|
||||
"pocket_feedback_header": "Lo millor d'o web, triau per mas de 25 millons de personas.",
|
||||
"pocket_description": "Descubre gracias a Pocket, que dende agora fa parte de Mozilla, contenius d'alta calidat que d'atra manera te puetz perder.",
|
||||
"highlights_empty_state": "Empecipia a navegar, y t'iremos amostrando aquí grans articlos, videos y atras pachinas que has vesitau u marcau en zagueras.",
|
||||
"topstories_empty_state": "Ya ye tot per agora. Torna mas ta debant pa veyer mas articlos populars de {provider}. No i puetz aguardar? Tría un tema popular pa descubrir los articlos mas interesants de tot lo web.",
|
||||
"manual_migration_explanation2": "Preba lo Firefox con as adrezas d'interés, l'historial y las claus de belatro navegador.",
|
||||
"manual_migration_cancel_button": "No, gracias",
|
||||
"manual_migration_import_button": "Importar-lo agora",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Anyadir un puesto popular"
|
||||
"error_fallback_default_info": "Oi, ha fallau bella cosa en a carga d'este conteniu.",
|
||||
"error_fallback_default_refresh_suggestion": "Refrescar la pachina pa tornar-lo a intentar.",
|
||||
"section_menu_action_remove_section": "Borrar la sección",
|
||||
"section_menu_action_collapse_section": "Plegar la sección",
|
||||
"section_menu_action_expand_section": "Desplegar la sección",
|
||||
"section_menu_action_manage_section": "Chestionar la sección",
|
||||
"section_menu_action_add_topsite": "Anyadir un puesto popular",
|
||||
"section_menu_action_move_up": "Puyar",
|
||||
"section_menu_action_move_down": "Baixar",
|
||||
"section_menu_action_privacy_notice": "Nota sobre privacidat",
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Aviso de privvacidat",
|
||||
"settings_pane_bookmarks_body": "Los marcapachinas que vas creando, a l'alcanz d'a man.",
|
||||
"settings_pane_visit_again_body": "Firefox t'amostrará partes d'o tuyo historial de busqueda que podrías querer remerar u tornar enta ellas.",
|
||||
"edit_topsites_button_label": "Personaliza la tuya sección de Puestos mas vesitaus",
|
||||
"edit_topsites_showmore_button": "Amostrar-ne mas",
|
||||
"edit_topsites_showless_button": "Amostrar-ne menos",
|
||||
"edit_topsites_done_button": "Feito",
|
||||
"edit_topsites_pin_button": "Clava este puesto",
|
||||
"edit_topsites_unpin_button": "Desclava este puesto",
|
||||
"edit_topsites_dismiss_button": "Retira este puesto",
|
||||
"edit_topsites_add_button": "Anyadir",
|
||||
"pocket_feedback_header": "Lo millor d'o web, triau per mas de 25 millons de personas."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "بحث {search_engine_name}",
|
||||
"search_web_placeholder": "ابحث في الوِب",
|
||||
"search_settings": "غيّر إعدادات البحث",
|
||||
"section_info_option": "المعلومات",
|
||||
"section_info_send_feedback": "أرسل انطباعك",
|
||||
"section_info_privacy_notice": "تنويه الخصوصية",
|
||||
"section_disclaimer_topstories": "أكثر القصص تشويقًا على الإنترنت، مختارة بعناية بناء على ما تقرأه. من بوكِت، و الذي أصبح جزءًا من موزيلا.",
|
||||
"section_disclaimer_topstories_linktext": "اطلع على طريقة عملها.",
|
||||
"section_disclaimer_topstories_buttontext": "حسنًا، فهمت",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} دقيقة",
|
||||
"time_label_hour": "{number} ساعة",
|
||||
"time_label_day": "{number} يوم",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "خصص صفحة اللسان الجديد",
|
||||
"settings_pane_header": "تفضيلات صفحة اللسان الجديد",
|
||||
"settings_pane_body2": "اختر ماتريد ان تراه في هذه الصفحه.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "وصول للمواقع التي تزورها أكثر.",
|
||||
"settings_pane_topsites_options_showmore": "اعرض صفّين",
|
||||
"settings_pane_bookmarks_header": "أحدث العلامات",
|
||||
"settings_pane_bookmarks_body": "علاماتك المعلّمة حديثًا في مكان واحد.",
|
||||
"settings_pane_visit_again_header": "زرها مجددا",
|
||||
"settings_pane_visit_again_body": "سيعرض لك فَيَرفُكس بعضًا من تأريخ تصفحك الذي قد تود تذكّره لاحقًا.",
|
||||
"settings_pane_highlights_header": "أهم الأحداث",
|
||||
"settings_pane_highlights_body2": "ارجع للأشياء المهمة التي زرتها مؤخرًا أو العلامات.",
|
||||
"settings_pane_highlights_options_bookmarks": "العلامات",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "تمّ",
|
||||
"settings_pane_topstories_options_sponsored": "اعرض الأخبار الممولة",
|
||||
"edit_topsites_button_text": "حرِّر",
|
||||
"edit_topsites_button_label": "خصص قسم المواقع الأكثر زيارة",
|
||||
"edit_topsites_showmore_button": "اعرض المزيد",
|
||||
"edit_topsites_showless_button": "اعرض أقل",
|
||||
"edit_topsites_done_button": "تمّ",
|
||||
"edit_topsites_pin_button": "ثبّت هذا الموقع",
|
||||
"edit_topsites_unpin_button": "افصل هذا الموقع",
|
||||
"edit_topsites_edit_button": "حرّر هذا الموقع",
|
||||
"edit_topsites_dismiss_button": "احذف هذا الموقع",
|
||||
"edit_topsites_add_button": "أضِفْ",
|
||||
"topsites_form_add_header": "موقع شائع جديد",
|
||||
"topsites_form_edit_header": "حرّر الموقع الشائع",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "أدخل عنوانًا",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "اكتب أو ألصق مسارًا",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "أضِفْ",
|
||||
"topsites_form_save_button": "احفظ",
|
||||
"topsites_form_cancel_button": "ألغِ",
|
||||
"topsites_form_url_validation": "مطلوب مسار صالح",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "المواضيع الشائعة:",
|
||||
"pocket_read_even_more": "اعرض المزيد من الأخبار",
|
||||
"pocket_feedback_header": "أفضل ما في الوِب، انتقاها أكثر من ٢٥ مليون شخص.",
|
||||
"pocket_description": "اكتشف محتوى عالي الجودة لربما قد فاتك دون هذا، بماسعدة من Pocket الذي أصبح الآن جزءا من موزيلا.",
|
||||
"highlights_empty_state": "ابدأ التصفح وسنعرض أمامك بعض المقالات والفيديوهات والمواقع الأخرى التي زرتها حديثا أو أضفتها إلى العلامات هنا.",
|
||||
"topstories_empty_state": "لا جديد. تحقق لاحقًا للحصول على مزيد من أهم الأخبار من {provider}. لا يمكنك الانتظار؟ اختر موضوعًا شائعًا للعثور على المزيد من القصص الرائعة من جميع أنحاء الوِب.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "أضف موقعًا شائعًا"
|
||||
"section_info_option": "المعلومات",
|
||||
"section_info_privacy_notice": "تنويه الخصوصية",
|
||||
"settings_pane_bookmarks_body": "علاماتك المعلّمة حديثًا في مكان واحد.",
|
||||
"settings_pane_visit_again_body": "سيعرض لك فَيَرفُكس بعضًا من تأريخ تصفحك الذي قد تود تذكّره لاحقًا.",
|
||||
"edit_topsites_button_label": "خصص قسم المواقع الأكثر زيارة",
|
||||
"edit_topsites_showmore_button": "اعرض المزيد",
|
||||
"edit_topsites_showless_button": "اعرض أقل",
|
||||
"edit_topsites_done_button": "تمّ",
|
||||
"edit_topsites_pin_button": "ثبّت هذا الموقع",
|
||||
"edit_topsites_unpin_button": "افصل هذا الموقع",
|
||||
"edit_topsites_dismiss_button": "احذف هذا الموقع",
|
||||
"edit_topsites_add_button": "أضِفْ",
|
||||
"edit_topsites_add_button_tooltip": "أضف موقعًا شائعًا",
|
||||
"pocket_feedback_header": "أفضل ما في الوِب، انتقاها أكثر من ٢٥ مليون شخص."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Gueta en {search_engine_name}",
|
||||
"search_web_placeholder": "Guetar na web",
|
||||
"search_settings": "Camudar axustes de gueta",
|
||||
"section_info_option": "Información",
|
||||
"section_info_send_feedback": "Unviar comentarios",
|
||||
"section_info_privacy_notice": "Nota de privacidá",
|
||||
"section_disclaimer_topstories": "The most interesting stories on the web, selected based on what you read. From Pocket, now part of Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Deprendi cómo furrula.",
|
||||
"section_disclaimer_topstories_buttontext": "Val, píllolo",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Personalizar páxina Llingüeta nueva",
|
||||
"settings_pane_header": "Preferencies de Llingüeta nueva",
|
||||
"settings_pane_body2": "Escueyi qué quies ver nesta páxina",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Acceder a les webs que más visites.",
|
||||
"settings_pane_topsites_options_showmore": "Amosar dos fileres",
|
||||
"settings_pane_bookmarks_header": "Marcadores recientes",
|
||||
"settings_pane_bookmarks_body": "Los marcadores recién fechos, nun llugar accesible.",
|
||||
"settings_pane_visit_again_header": "Visitar de nueves",
|
||||
"settings_pane_visit_again_body": "Firefox va amosate partes del to historial de navegación que a lo meyor prestaríate remembrar o volver visitar.",
|
||||
"settings_pane_highlights_header": "Destacaos",
|
||||
"settings_pane_highlights_body2": "Atopa otra vegada les coses interesantes que yá visitaras o marcaras.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marcadores",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Fecho",
|
||||
"settings_pane_topstories_options_sponsored": "Amosar hestories patrocinaes",
|
||||
"edit_topsites_button_text": "Editar",
|
||||
"edit_topsites_button_label": "Personalizar la seición de Más visitaos",
|
||||
"edit_topsites_showmore_button": "Amosar más",
|
||||
"edit_topsites_showless_button": "Amosar menos",
|
||||
"edit_topsites_done_button": "Fecho",
|
||||
"edit_topsites_pin_button": "Fixar esti sitiu",
|
||||
"edit_topsites_unpin_button": "Desfixar esti sitiu",
|
||||
"edit_topsites_edit_button": "Editar esti sitiu",
|
||||
"edit_topsites_dismiss_button": "Escartar esti sitiu",
|
||||
"edit_topsites_add_button": "Amestar",
|
||||
"topsites_form_add_header": "Nuevu Sitiu más visitáu",
|
||||
"topsites_form_edit_header": "Editar Sitiu más visitáu",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Introducir títulu",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Escribi o apega una URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Amestar",
|
||||
"topsites_form_save_button": "Guardar",
|
||||
"topsites_form_cancel_button": "Encaboxar",
|
||||
"topsites_form_url_validation": "Ríquese una URL válida",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Temes populares:",
|
||||
"pocket_read_even_more": "Ver más histories",
|
||||
"pocket_feedback_header": "The best of the web, curated by over 25 million people.",
|
||||
"pocket_description": "Discover high-quality content you might otherwise miss, with help from Pocket, now part of Mozilla.",
|
||||
"highlights_empty_state": "Start browsing, and we’ll show some of the great articles, videos, and other pages you’ve recently visited or bookmarked here.",
|
||||
"topstories_empty_state": "You’ve caught up. Check back later for more top stories from {provider}. Can’t wait? Select a popular topic to find more great stories from around the web.",
|
||||
|
@ -111,5 +113,17 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Información",
|
||||
"section_info_privacy_notice": "Nota de privacidá",
|
||||
"settings_pane_bookmarks_body": "Los marcadores recién fechos, nun llugar accesible.",
|
||||
"settings_pane_visit_again_body": "Firefox va amosate partes del to historial de navegación que a lo meyor prestaríate remembrar o volver visitar.",
|
||||
"edit_topsites_button_label": "Personalizar la seición de Más visitaos",
|
||||
"edit_topsites_showmore_button": "Amosar más",
|
||||
"edit_topsites_showless_button": "Amosar menos",
|
||||
"edit_topsites_done_button": "Fecho",
|
||||
"edit_topsites_pin_button": "Fixar esti sitiu",
|
||||
"edit_topsites_unpin_button": "Desfixar esti sitiu",
|
||||
"edit_topsites_dismiss_button": "Escartar esti sitiu",
|
||||
"edit_topsites_add_button": "Amestar"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Hələlik heç əlfəcininiz yoxdur.",
|
||||
"header_stories_from": "qaynaq:",
|
||||
"context_menu_button_sr": "{title} üçün kontekst menyusunu aç",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Kontekst menyusu bölməsini aç",
|
||||
"type_label_visited": "Ziyarət edilib",
|
||||
"type_label_bookmarked": "Əlfəcinlənib",
|
||||
"type_label_synced": "Digər cihazdan sync edilib",
|
||||
"type_label_recommended": "Populyar",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Pocket-ə saxlandı",
|
||||
"type_label_open": "Açıq",
|
||||
"type_label_topic": "Mövzu",
|
||||
"type_label_now": "İndi",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Bu səhifənin bütün parçalarını tarixçənizdən silmək istədiyinizə əminsiniz?",
|
||||
"confirm_history_delete_notice_p2": "Bu əməliyyat geri alına bilməz.",
|
||||
"menu_action_save_to_pocket": "Pocket-ə Saxla",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Pocket-dən sil",
|
||||
"menu_action_archive_pocket": "Pocket-də arxivləşdir",
|
||||
"search_for_something_with": "{search_term} üçün bununla axtar:",
|
||||
"search_button": "Axtar",
|
||||
"search_header": "{search_engine_name} Axtarış",
|
||||
"search_web_placeholder": "İnternetdə Axtar",
|
||||
"search_settings": "Axtarış Tənzimləmələrini Dəyiş",
|
||||
"section_info_option": "Məlumat",
|
||||
"section_info_send_feedback": "Əks-əlaqə göndər",
|
||||
"section_info_privacy_notice": "Məxfilik Bildirişi",
|
||||
"section_disclaimer_topstories": "Nələr oxuduğunuza əsasən seçilmiş internetin ən maraqlı hekayələri. Pocket-dən, artıq Mozillanın bir hissəsi.",
|
||||
"section_disclaimer_topstories_linktext": "Necə işlədiyini öyrənin.",
|
||||
"section_disclaimer_topstories_buttontext": "Tamam, başa düşdüm",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}d",
|
||||
"time_label_hour": "{number}s",
|
||||
"time_label_day": "{number}g",
|
||||
"prefs_home_header": "Firefox Ev Məzmunu",
|
||||
"prefs_home_description": "Firefox Evdə hansı məzmunları görmək istədiyinizi seçin.",
|
||||
"prefs_restore_defaults_button": "İlkin seçənəkləri bərpa et",
|
||||
"prefs_section_rows_option": "{num} sətir;{num} sətir",
|
||||
"prefs_search_header": "Web Axtarış",
|
||||
"prefs_topsites_description": "Ən çox ziyarət etdiyiniz saytlar",
|
||||
"prefs_topstories_description": "Qaçırda biləcəyiniz yüksək keyfiyyətli məzmun",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsorlu Hekayələr",
|
||||
"prefs_topstories_sponsored_learn_more": "Ətraflı öyrən",
|
||||
"prefs_highlights_description": "Saxladığınız və ya ziyarət etdiyiniz saytlardan seçmələr",
|
||||
"prefs_snippets_description": "Mozilla və Firefoxdan yeniliklər",
|
||||
"settings_pane_button_label": "Yeni Vərəq səhifənizi özəlləşdirin",
|
||||
"settings_pane_header": "Yeni Vərəq Nizamlamaları",
|
||||
"settings_pane_body2": "Bu səhifədə nə görəcəyinizi seçin.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Ən çox ziyarət etdiyiniz saytları görün.",
|
||||
"settings_pane_topsites_options_showmore": "İki sətir göstər",
|
||||
"settings_pane_bookmarks_header": "Son Əlfəcinlər",
|
||||
"settings_pane_bookmarks_body": "Yeni yaradılan əlfəcinlər tək bir əlverişli yerdə.",
|
||||
"settings_pane_visit_again_header": "Təkrar ziyarət et",
|
||||
"settings_pane_visit_again_body": "Firefox tarixçənizdən yadda saxlamaq və ya geri qayıtmaq istəyə biləcəyiniz hissələri göstərəcək.",
|
||||
"settings_pane_highlights_header": "Seçilmişlər",
|
||||
"settings_pane_highlights_body2": "Son ziyarət etdiyiniz və ya əlfəcinlədiyiniz maraqlı məzmunlara rahat qayıdın.",
|
||||
"settings_pane_highlights_options_bookmarks": "Əlfəcinlər",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Oldu",
|
||||
"settings_pane_topstories_options_sponsored": "Sponsor Hekayələrini Göstər",
|
||||
"edit_topsites_button_text": "Redaktə et",
|
||||
"edit_topsites_button_label": "Qabaqcıl Saytlar bölümünüzü fərdiləşdirin",
|
||||
"edit_topsites_showmore_button": "Daha çox göstər",
|
||||
"edit_topsites_showless_button": "Daha az göstər",
|
||||
"edit_topsites_done_button": "Oldu",
|
||||
"edit_topsites_pin_button": "Bu saytı sabitlə",
|
||||
"edit_topsites_unpin_button": "Bu saytı çıxart",
|
||||
"edit_topsites_edit_button": "Bu saytı düzəlt",
|
||||
"edit_topsites_dismiss_button": "Bu saytı çıxart",
|
||||
"edit_topsites_add_button": "Əlavə et",
|
||||
"topsites_form_add_header": "Yeni Qabaqcıl Saytlar",
|
||||
"topsites_form_edit_header": "Qabaqcıl Saytları Dəyişdir",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Başlıq",
|
||||
"topsites_form_title_placeholder": "Başlıq daxil et",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Fərdi şəkil ünvanı",
|
||||
"topsites_form_url_placeholder": "Ünvanı yazın və ya yapışdırın",
|
||||
"topsites_form_use_image_link": "Fərdi şəkil işlət…",
|
||||
"topsites_form_preview_button": "Ön baxış",
|
||||
"topsites_form_add_button": "Əlavə et",
|
||||
"topsites_form_save_button": "Saxla",
|
||||
"topsites_form_cancel_button": "Ləğv et",
|
||||
"topsites_form_url_validation": "Doğru ünvan tələb olunur",
|
||||
"topsites_form_image_validation": "Şəkli yükləmək mümkün olmadı. Fərqli ünvan yoxlayın.",
|
||||
"pocket_read_more": "Məşhur Mövzular:",
|
||||
"pocket_read_even_more": "Daha çox hekayə gör",
|
||||
"pocket_feedback_header": "25 milyon nəfərin dəstəyi ilə internetin ən yaxşıları.",
|
||||
"pocket_description": "Mozilla ailəsinin yeni üzvü olan Pocket ilə yüksək keyfiyyətli məzmunları kəşf edin.",
|
||||
"highlights_empty_state": "İnternetdə gəzməyə başlayın, burada ziyarət edəcəyiniz və ya əlfəcinləyəcəyiniz məqalə, video və digər səhifələri göstərəcəyik.",
|
||||
"topstories_empty_state": "Hamısını oxudunuz. Yeni {provider} məqalələri üçün daha sonra təkrar yoxlayın. Gözləyə bilmirsiz? Məşhur mövzu seçərək internetdən daha çox gözəl məqalələr tapın.",
|
||||
"manual_migration_explanation2": "Firefox səyyahını digər səyyahlardan olan əlfəcin, tarixçə və parollar ilə yoxlayın.",
|
||||
"manual_migration_cancel_button": "Xeyr, Təşəkkürlər",
|
||||
"manual_migration_import_button": "İndi idxal et",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Qabaqcıl sayt əlavə et"
|
||||
"error_fallback_default_info": "Uups, bu məzmunu yüklərkən nəsə səhv getdi.",
|
||||
"error_fallback_default_refresh_suggestion": "Təkrar yoxlamaq üçün səhifəni yeniləyin.",
|
||||
"section_menu_action_remove_section": "Bölməni Sil",
|
||||
"section_menu_action_collapse_section": "Bölməni Daralt",
|
||||
"section_menu_action_expand_section": "Bölməni Genişlət",
|
||||
"section_menu_action_manage_section": "Bölməni İdarə et",
|
||||
"section_menu_action_add_topsite": "Qabaqcıl Sayt əlavə et",
|
||||
"section_menu_action_move_up": "Yuxarı daşı",
|
||||
"section_menu_action_move_down": "Aşağı daşı",
|
||||
"section_menu_action_privacy_notice": "Məxfilik Bildirişi",
|
||||
"section_info_option": "Məlumat",
|
||||
"section_info_privacy_notice": "Məxfilik Bildirişi",
|
||||
"settings_pane_bookmarks_body": "Yeni yaradılan əlfəcinlər tək bir əlverişli yerdə.",
|
||||
"settings_pane_visit_again_body": "Firefox tarixçənizdən yadda saxlamaq və ya geri qayıtmaq istəyə biləcəyiniz hissələri göstərəcək.",
|
||||
"edit_topsites_button_label": "Qabaqcıl Saytlar bölümünüzü fərdiləşdirin",
|
||||
"edit_topsites_showmore_button": "Daha çox göstər",
|
||||
"edit_topsites_showless_button": "Daha az göstər",
|
||||
"edit_topsites_done_button": "Oldu",
|
||||
"edit_topsites_pin_button": "Bu saytı sabitlə",
|
||||
"edit_topsites_unpin_button": "Bu saytı çıxart",
|
||||
"edit_topsites_dismiss_button": "Bu saytı çıxart",
|
||||
"edit_topsites_add_button": "Əlavə et",
|
||||
"pocket_feedback_header": "25 milyon nəfərin dəstəyi ilə internetin ən yaxşıları."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Шукаць у {search_engine_name}",
|
||||
"search_web_placeholder": "Пошук у Інтэрнэце",
|
||||
"search_settings": "Змяніць налады пошуку",
|
||||
"section_info_option": "Звесткі",
|
||||
"section_info_send_feedback": "Даслаць водгук",
|
||||
"section_info_privacy_notice": "Паведамленне аб прыватнасці",
|
||||
"section_disclaimer_topstories": "Самыя цікавыя гісторыі з інтэрнэту на аснове таго, што вы чытаеце. Падборка ад Pocket, які цяпер частка Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Даведайцеся, як гэта працуе.",
|
||||
"section_disclaimer_topstories_buttontext": "Зразумела",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} хв",
|
||||
"time_label_hour": "{number} г",
|
||||
"time_label_day": "{number} д",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Наладзіць вашу старонку новай карткі",
|
||||
"settings_pane_header": "Налады новай карткі",
|
||||
"settings_pane_body2": "Выберыце тое, што вы бачыце на гэтай старонцы.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Доступ да сайтаў, якія вы часцей наведваеце.",
|
||||
"settings_pane_topsites_options_showmore": "Паказваць два шэрагі",
|
||||
"settings_pane_bookmarks_header": "Нядаўнія закладкі",
|
||||
"settings_pane_bookmarks_body": "Вашы новыя закладкі ў адным зручным месцы.",
|
||||
"settings_pane_visit_again_header": "Наведаць зноў",
|
||||
"settings_pane_visit_again_body": "Firefox пакажа вам элементы гісторыі прагляду, якія вы, магчыма, захочаце запомніць або наведаць зноў.",
|
||||
"settings_pane_highlights_header": "Выбранае",
|
||||
"settings_pane_highlights_body2": "Знайдзіце зваротны шлях да цікавых рэчаў, якія вы нядаўна наведалі або дадалі ў закладкі.",
|
||||
"settings_pane_highlights_options_bookmarks": "Закладкі",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Гатова",
|
||||
"settings_pane_topstories_options_sponsored": "Паказаць артыкулы ад спонсараў",
|
||||
"edit_topsites_button_text": "Правіць",
|
||||
"edit_topsites_button_label": "Наладзіць раздзел папулярных сайтаў",
|
||||
"edit_topsites_showmore_button": "Паказаць больш",
|
||||
"edit_topsites_showless_button": "Паказаць менш",
|
||||
"edit_topsites_done_button": "Гатова",
|
||||
"edit_topsites_pin_button": "Замацаваць гэты сайт",
|
||||
"edit_topsites_unpin_button": "Адшпіліць гэты сайт",
|
||||
"edit_topsites_edit_button": "Рэдагаваць гэты сайт",
|
||||
"edit_topsites_dismiss_button": "Адхіліць гэты сайт",
|
||||
"edit_topsites_add_button": "Дадаць",
|
||||
"topsites_form_add_header": "Новы папулярны сайт",
|
||||
"topsites_form_edit_header": "Рэдагаваць папулярны сайт",
|
||||
"topsites_form_title_label": "Загаловак",
|
||||
"topsites_form_title_placeholder": "Увядзіце назву",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Увядзіце або ўстаўце URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Дадаць",
|
||||
"topsites_form_save_button": "Захаваць",
|
||||
"topsites_form_cancel_button": "Скасаваць",
|
||||
"topsites_form_url_validation": "Патрабуецца сапраўдны URL",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Папулярныя тэмы:",
|
||||
"pocket_read_even_more": "Іншыя навіны",
|
||||
"pocket_feedback_header": "Лепшае з Сеціва, што адабралі больш за 25 мільёнаў чалавек.",
|
||||
"pocket_description": "Адкрыйце для сябе высакаякасны кантэнт, які вы маглі б прапусціць, з дапамогай Pocket, які стаў часткай Mozilla.",
|
||||
"highlights_empty_state": "Пачніце агляданне, і мы пакажам вам тут некаторыя з найлепшых артыкулаў, відэаролікаў і іншых старонак, якія вы нядаўна наведалі або дадалі ў закладкі.",
|
||||
"topstories_empty_state": "Гатова. Праверце пазней, каб убачыць больш матэрыялаў ад {provider}. Не жадаеце чакаць? Выберыце папулярную тэму, каб знайсці больш цікавых матэрыялаў з усяго Інтэрнэту.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Паведамленне аб прыватнасці"
|
||||
"section_menu_action_privacy_notice": "Паведамленне аб прыватнасці",
|
||||
"section_info_option": "Звесткі",
|
||||
"section_info_privacy_notice": "Паведамленне аб прыватнасці",
|
||||
"settings_pane_bookmarks_body": "Вашы новыя закладкі ў адным зручным месцы.",
|
||||
"settings_pane_visit_again_body": "Firefox пакажа вам элементы гісторыі прагляду, якія вы, магчыма, захочаце запомніць або наведаць зноў.",
|
||||
"edit_topsites_button_label": "Наладзіць раздзел папулярных сайтаў",
|
||||
"edit_topsites_showmore_button": "Паказаць больш",
|
||||
"edit_topsites_showless_button": "Паказаць менш",
|
||||
"edit_topsites_done_button": "Гатова",
|
||||
"edit_topsites_pin_button": "Замацаваць гэты сайт",
|
||||
"edit_topsites_unpin_button": "Адшпіліць гэты сайт",
|
||||
"edit_topsites_dismiss_button": "Адхіліць гэты сайт",
|
||||
"edit_topsites_add_button": "Дадаць",
|
||||
"pocket_feedback_header": "Лепшае з Сеціва, што адабралі больш за 25 мільёнаў чалавек."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -27,7 +27,7 @@ window.gActivityStreamStrings = {
|
|||
"menu_action_open_new_window": "Отваряне в раздел",
|
||||
"menu_action_open_private_window": "Отваряне в поверителен прозорец",
|
||||
"menu_action_dismiss": "Отхвърляне",
|
||||
"menu_action_delete": "Премахване от историята",
|
||||
"menu_action_delete": "Премахване",
|
||||
"menu_action_pin": "Закачане",
|
||||
"menu_action_unpin": "Откачане",
|
||||
"confirm_history_delete_p1": "Сигурни ли сте, че желаете да премахнете страницата навсякъде от историята?",
|
||||
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Търсене с {search_engine_name}",
|
||||
"search_web_placeholder": "Търсене в интернет",
|
||||
"search_settings": "Настройки на търсене",
|
||||
"section_info_option": "Информация",
|
||||
"section_info_send_feedback": "Обратна връзка",
|
||||
"section_info_privacy_notice": "Политика на поверителност",
|
||||
"section_disclaimer_topstories": "Най-интересните истории в Мрежата на основата на прочетеното от вас. От Pocket, вече част от Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Разберете как работи.",
|
||||
"section_disclaimer_topstories_buttontext": "Ясно, разбрах",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} м",
|
||||
"time_label_hour": "{number} ч",
|
||||
"time_label_day": "{number} д",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Настройки на новия раздел",
|
||||
"settings_pane_header": "Настройки на новия раздел",
|
||||
"settings_pane_body2": "Изберете какво да виждате на тази страница.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Достъп до страниците, които посещавате най-често.",
|
||||
"settings_pane_topsites_options_showmore": "Показване на два реда",
|
||||
"settings_pane_bookmarks_header": "Последни отметки",
|
||||
"settings_pane_bookmarks_body": "Всички нови отметки на едно място.",
|
||||
"settings_pane_visit_again_header": "Посещаване",
|
||||
"settings_pane_visit_again_body": "Firefox ще ви показва части от вашата история на разглеждане, към която бихте желали да се върнете или запомните.",
|
||||
"settings_pane_highlights_header": "Акценти",
|
||||
"settings_pane_highlights_body2": "Намерете интересните неща, които скоро сте посетили или отметнали.",
|
||||
"settings_pane_highlights_options_bookmarks": "Отметки",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Готово",
|
||||
"settings_pane_topstories_options_sponsored": "Показване на платени статии",
|
||||
"edit_topsites_button_text": "Редактиране",
|
||||
"edit_topsites_button_label": "Настройки на често посещаваните",
|
||||
"edit_topsites_showmore_button": "Повече",
|
||||
"edit_topsites_showless_button": "По-малко",
|
||||
"edit_topsites_done_button": "Готово",
|
||||
"edit_topsites_pin_button": "Закачане",
|
||||
"edit_topsites_unpin_button": "Премахване от закачените",
|
||||
"edit_topsites_edit_button": "Редактиране",
|
||||
"edit_topsites_dismiss_button": "Изтриване",
|
||||
"edit_topsites_add_button": "Добавяне",
|
||||
"topsites_form_add_header": "Нов често посещавана страница",
|
||||
"topsites_form_edit_header": "Редактиране на често посещавана страница",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Заглавие",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Адрес",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Добавяне",
|
||||
"topsites_form_save_button": "Запазване",
|
||||
"topsites_form_cancel_button": "Отказ",
|
||||
"topsites_form_url_validation": "Необходим е валиден URL",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Популярни теми:",
|
||||
"pocket_read_even_more": "Повече статии",
|
||||
"pocket_feedback_header": "Най-доброто от интернет, подбрано от над 25 милиона души.",
|
||||
"pocket_description": "Открийте висококачествено съдържание, което иначе може да пропуснете, с помощта на Pocket, вече част от Mozilla.",
|
||||
"highlights_empty_state": "Разглеждайте и тук ще ви покажем някои от най-добрите статии, видео и други страници, които сте посетили или отметнали наскоро.",
|
||||
"topstories_empty_state": "Разгледахте всичко. Проверете по-късно за повече истории от {provider}. Нямате търпение? Изберете популярна тема, за да откриете повече истории из цялата Мрежа.",
|
||||
|
@ -112,5 +114,17 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Добавяне към често посещаваните страници"
|
||||
"section_info_option": "Информация",
|
||||
"section_info_privacy_notice": "Политика на поверителност",
|
||||
"settings_pane_bookmarks_body": "Всички нови отметки на едно място.",
|
||||
"settings_pane_visit_again_body": "Firefox ще ви показва части от вашата история на разглеждане, към която бихте желали да се върнете или запомните.",
|
||||
"edit_topsites_button_label": "Настройки на често посещаваните",
|
||||
"edit_topsites_showmore_button": "Повече",
|
||||
"edit_topsites_showless_button": "По-малко",
|
||||
"edit_topsites_done_button": "Готово",
|
||||
"edit_topsites_pin_button": "Закачане",
|
||||
"edit_topsites_unpin_button": "Премахване от закачените",
|
||||
"edit_topsites_dismiss_button": "Изтриване",
|
||||
"edit_topsites_add_button": "Добавяне",
|
||||
"pocket_feedback_header": "Най-доброто от интернет, подбрано от над 25 милиона души."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} খুঁজুন",
|
||||
"search_web_placeholder": "ওয়েবে সন্ধান করুন",
|
||||
"search_settings": "সার্চ সেটিংস বদল করুন",
|
||||
"section_info_option": "তথ্য",
|
||||
"section_info_send_feedback": "মতামত পাঠান",
|
||||
"section_info_privacy_notice": "গোপনীয়তা বিজ্ঞপ্তি",
|
||||
"section_disclaimer_topstories": "মজার মজার সব গল্প নির্বাচিত হয়েছে, আপনি যেমনটা পড়েন। Pocket এখন থেকে Mozilla এর অংশ।",
|
||||
"section_disclaimer_topstories_linktext": "কিভাবে কাজ করে জানুন।",
|
||||
"section_disclaimer_topstories_buttontext": "ঠিক আছে, বুঝেছি",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} মিনিট",
|
||||
"time_label_hour": "{number} ঘন্টা",
|
||||
"time_label_day": "{number} দিন",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "আপনার নতুন ট্যাব পেজটি কাস্টমাইজ করুন",
|
||||
"settings_pane_header": "নতুন ট্যাব পছন্দসমূহ",
|
||||
"settings_pane_body2": "আপনি এই পৃষ্ঠায় যা দেখেন তা পছন্দ করুন।",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "আপনি যেসব সাইটে বেশি যান সেসব সাইটে প্রবেশ করুন।",
|
||||
"settings_pane_topsites_options_showmore": "দুটি সারি দেখান",
|
||||
"settings_pane_bookmarks_header": "সাম্প্রতিক বুকমার্ক",
|
||||
"settings_pane_bookmarks_body": "আপনার নতুন করা বুকমার্ক সহজ অবস্থানে রাখা হয়েছে।",
|
||||
"settings_pane_visit_again_header": "পুনরায় ভিজিট করুন",
|
||||
"settings_pane_visit_again_body": "Firefox আপনার ব্রাউজিং ইতিহাসের এমন একটি অংশ দেখাবে যা আপনি মনে রাখতে চান বা যাতে আবার ফিরে যেতে চান।",
|
||||
"settings_pane_highlights_header": "হাইলাইটস",
|
||||
"settings_pane_highlights_body2": "আপনি সম্প্রতি পরিদর্শন করেছেন বা বুকমার্ক করেছেন এমন আকর্ষণীয় বিষয়গুলিতে ফিরে যাবার পথ পান।",
|
||||
"settings_pane_highlights_options_bookmarks": "বুকমার্ক",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "হয়েছে",
|
||||
"settings_pane_topstories_options_sponsored": "বিজ্ঞাপনী গল্প দেখাও",
|
||||
"edit_topsites_button_text": "সম্পাদনা",
|
||||
"edit_topsites_button_label": "আপনার টপ সাইট সেকশন কাস্টমাইজ করুন",
|
||||
"edit_topsites_showmore_button": "আরও দেখান",
|
||||
"edit_topsites_showless_button": "কম দেখান",
|
||||
"edit_topsites_done_button": "হয়েছে",
|
||||
"edit_topsites_pin_button": "সাইটটি পিন করুন",
|
||||
"edit_topsites_unpin_button": "এই সাইট আনপিন করুন",
|
||||
"edit_topsites_edit_button": "সাইটটি সম্পাদনা করুন",
|
||||
"edit_topsites_dismiss_button": "সাইটটি মুছে দিন",
|
||||
"edit_topsites_add_button": "যোগ",
|
||||
"topsites_form_add_header": "নতুন শীর্ষ সাইট",
|
||||
"topsites_form_edit_header": "শীর্ষ সাইট সম্পাদনা করুন",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "নাম দিন",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "টাইপ করুন অথবা পেস্ট করুন URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "যোগ",
|
||||
"topsites_form_save_button": "সংরক্ষণ",
|
||||
"topsites_form_cancel_button": "বাতিল",
|
||||
"topsites_form_url_validation": "কার্যকর URL প্রয়োজন",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "জনপ্রিয় বিষয়:",
|
||||
"pocket_read_even_more": "আরও গল্প দেখুন",
|
||||
"pocket_feedback_header": "ওয়েব জগতের সেরা, যা ২.৫ লক্ষ মানুষ রক্ষণাবেক্ষণ করে।",
|
||||
"pocket_description": "Pocket এর সাহায্যে, যা এখন Mozilla এর অংশ, উচ্চ মানের বিষয়বস্তু আবিষ্কার করুন যা আপনি অন্যথায় পেতেন না।",
|
||||
"highlights_empty_state": "ব্রাউজি করা শুরু করুন, এবং কিছু গুরুত্বপূর্ণ নিবন্ধ, ভিডিও, এবং আপনি সম্প্রতি পরিদর্শন বা বুকমার্ক করেছেন এমন কিছু পৃষ্ঠা আমরা এখানে প্রদর্শন করব।",
|
||||
"topstories_empty_state": "কিছু একটা ঠিক নেই। {provider} এর শীর্ষ গল্পগুলো পেতে কিছুক্ষণ পর আবার দেখুন। অপেক্ষা করতে চান না? বিশ্বের সেরা গল্পগুলো পেতে কোন জনপ্রিয় বিষয় নির্বাচন করুন।",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "টপ সাইট যোগ করুন"
|
||||
"edit_topsites_button_label": "আপনার টপ সাইট সেকশন কাস্টমাইজ করুন",
|
||||
"edit_topsites_showmore_button": "আরও দেখান",
|
||||
"edit_topsites_showless_button": "কম দেখান",
|
||||
"edit_topsites_done_button": "হয়েছে",
|
||||
"edit_topsites_pin_button": "সাইটটি পিন করুন",
|
||||
"edit_topsites_dismiss_button": "সাইটটি মুছে দিন",
|
||||
"edit_topsites_add_button": "যোগ",
|
||||
"section_info_option": "তথ্য",
|
||||
"section_info_privacy_notice": "গোপনীয়তা বিজ্ঞপ্তি",
|
||||
"settings_pane_bookmarks_body": "আপনার নতুন করা বুকমার্ক সহজ অবস্থানে রাখা হয়েছে।",
|
||||
"settings_pane_visit_again_body": "Firefox আপনার ব্রাউজিং ইতিহাসের এমন একটি অংশ দেখাবে যা আপনি মনে রাখতে চান বা যাতে আবার ফিরে যেতে চান।",
|
||||
"edit_topsites_unpin_button": "এই সাইট আনপিন করুন",
|
||||
"edit_topsites_add_button_tooltip": "টপ সাইট যোগ করুন",
|
||||
"pocket_feedback_header": "ওয়েব জগতের সেরা, যা ২.৫ লক্ষ মানুষ রক্ষণাবেক্ষণ করে।"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} এ অনুসন্ধান করুন",
|
||||
"search_web_placeholder": "ওয়েবে সন্ধান করুন",
|
||||
"search_settings": "সার্চ সেটিংস বদল করুন",
|
||||
"section_info_option": "তথ্য",
|
||||
"section_info_send_feedback": "মতামত পাঠান",
|
||||
"section_info_privacy_notice": "গোপনীয়তা বিজ্ঞপ্তি",
|
||||
"section_disclaimer_topstories": "মজার মজার সব গল্প নির্বাচিত হয়েছে, আপনি যেমনটা পড়েন। Pocket এখন থেকে Mozilla এর অংশ।",
|
||||
"section_disclaimer_topstories_linktext": "কিভাবে কাজ করে জানুন।",
|
||||
"section_disclaimer_topstories_buttontext": "ঠিক আছে, বুঝেছি",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} মিনিট",
|
||||
"time_label_hour": "{number} ঘন্টা",
|
||||
"time_label_day": "{number} দিন",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "আপনার নতুন ট্যাব পেজটি কাস্টমাইজ করুন",
|
||||
"settings_pane_header": "নতুন ট্যাব পছন্দসমূহ",
|
||||
"settings_pane_body2": "আপনি এই পৃষ্ঠায় যা দেখেন তা পছন্দ করুন।",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "আপনি যেসব সাইটে বেশি যান সেসব সাইটে প্রবেশ করুন।",
|
||||
"settings_pane_topsites_options_showmore": "দুটি সারি দেখান",
|
||||
"settings_pane_bookmarks_header": "সাম্প্রতিক বুকমার্ক",
|
||||
"settings_pane_bookmarks_body": "আপনার নতুন করা বুকমার্ক সহজ অবস্থানে রাখা হয়েছে।",
|
||||
"settings_pane_visit_again_header": "পুনরায় ভিজিট করুন",
|
||||
"settings_pane_visit_again_body": "Firefox আপনার ব্রাউজিং ইতিহাসের এমন একটি অংশ দেখাবে যা আপনি মনে রাখতে চান বা যাতে আবার ফিরে যেতে চান।",
|
||||
"settings_pane_highlights_header": "হাইলাইটস",
|
||||
"settings_pane_highlights_body2": "আপনি সম্প্রতি পরিদর্শন করেছেন বা বুকমার্ক করেছেন এমন আকর্ষণীয় বিষয়গুলিতে ফিরে যাবার পথ পান।",
|
||||
"settings_pane_highlights_options_bookmarks": "বুকমার্ক",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "হয়েছে",
|
||||
"settings_pane_topstories_options_sponsored": "বিজ্ঞাপনী গল্প দেখাও",
|
||||
"edit_topsites_button_text": "সম্পাদনা",
|
||||
"edit_topsites_button_label": "আপনার শীর্ষ সাইট সেকশন কাস্টমাইজ করুন",
|
||||
"edit_topsites_showmore_button": "আরও দেখান",
|
||||
"edit_topsites_showless_button": "কম দেখান",
|
||||
"edit_topsites_done_button": "হয়েছে",
|
||||
"edit_topsites_pin_button": "সাইটটি পিন করুন",
|
||||
"edit_topsites_unpin_button": "এই সাইট আনপিন করুন",
|
||||
"edit_topsites_edit_button": "সাইটটি সম্পাদনা করুন",
|
||||
"edit_topsites_dismiss_button": "সাইটটি মুছে দিন",
|
||||
"edit_topsites_add_button": "যুক্ত করুন",
|
||||
"topsites_form_add_header": "নতুন শীর্ষ সাইট",
|
||||
"topsites_form_edit_header": "শীর্ষ সাইট সম্পাদনা করুন",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "একটি শিরোনাম লিখুন",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "টাইপ করুন অথবা পেস্ট করুন URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "যোগ",
|
||||
"topsites_form_save_button": "সংরক্ষণ",
|
||||
"topsites_form_cancel_button": "বাতিল করুন",
|
||||
"topsites_form_url_validation": "কার্যকর URL প্রয়োজন",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "জনপ্রিয় বিষয়:",
|
||||
"pocket_read_even_more": "আরও গল্প দেখুন",
|
||||
"pocket_feedback_header": "ওয়েব জগতের সেরা, যা ২.৫ লক্ষ মানুষ রক্ষণাবেক্ষণ করে।",
|
||||
"pocket_description": "Pocket এর সাহায্যে, যা এখন Mozilla এর অংশ, উচ্চ মানের বিষয়বস্তু আবিষ্কার করুন যা আপনি অন্যথায় পেতেন না।",
|
||||
"highlights_empty_state": "ব্রাউজি করা শুরু করুন, এবং কিছু গুরুত্বপূর্ণ নিবন্ধ, ভিডিও, এবং আপনি সম্প্রতি পরিদর্শন বা বুকমার্ক করেছেন এমন কিছু পৃষ্ঠা আমরা এখানে প্রদর্শন করব।",
|
||||
"topstories_empty_state": "কিছু একটা ঠিক নেই। {provider} এর শীর্ষ গল্পগুলো পেতে কিছুক্ষণ পর আবার দেখুন। অপেক্ষা করতে চান না? বিশ্বের সেরা গল্পগুলো পেতে কোন জনপ্রিয় বিষয় নির্বাচন করুন।",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "টপ সাইট যোগ করুন"
|
||||
"section_info_option": "তথ্য",
|
||||
"section_info_privacy_notice": "গোপনীয়তা বিজ্ঞপ্তি",
|
||||
"settings_pane_bookmarks_body": "আপনার নতুন করা বুকমার্ক সহজ অবস্থানে রাখা হয়েছে।",
|
||||
"settings_pane_visit_again_body": "Firefox আপনার ব্রাউজিং ইতিহাসের এমন একটি অংশ দেখাবে যা আপনি মনে রাখতে চান বা যাতে আবার ফিরে যেতে চান।",
|
||||
"edit_topsites_button_label": "আপনার শীর্ষ সাইট সেকশন কাস্টমাইজ করুন",
|
||||
"edit_topsites_showmore_button": "আরও দেখান",
|
||||
"edit_topsites_showless_button": "কম দেখান",
|
||||
"edit_topsites_done_button": "হয়েছে",
|
||||
"edit_topsites_pin_button": "সাইটটি পিন করুন",
|
||||
"edit_topsites_unpin_button": "এই সাইট আনপিন করুন",
|
||||
"edit_topsites_dismiss_button": "সাইটটি মুছে দিন",
|
||||
"edit_topsites_add_button": "যুক্ত করুন",
|
||||
"edit_topsites_add_button_tooltip": "টপ সাইট যোগ করুন",
|
||||
"pocket_feedback_header": "ওয়েব জগতের সেরা, যা ২.৫ লক্ষ মানুষ রক্ষণাবেক্ষণ করে।"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "N'ho peus sined ebet evit ar mare.",
|
||||
"header_stories_from": "a-berzh",
|
||||
"context_menu_button_sr": "Digeriñ al lañser kemperzhel evit {title}",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Digeriñ lañser kemperzhel al lodenn-mañ",
|
||||
"type_label_visited": "Gweladennet",
|
||||
"type_label_bookmarked": "Lakaet er sinedoù",
|
||||
"type_label_synced": "Goubredet eus un trevnad all",
|
||||
"type_label_recommended": "Brudet",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Enrollet e Pocket",
|
||||
"type_label_open": "Digeriñ",
|
||||
"type_label_topic": "Danvez",
|
||||
"type_label_now": "Bremañ",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Sur oc'h e fell deoc'h dilemel kement eriol eus ar bajenn-mañ diouzh ho roll istor?",
|
||||
"confirm_history_delete_notice_p2": "Ne c'haller ket dizober ar gwezh-mañ.",
|
||||
"menu_action_save_to_pocket": "Enrollañ etrezek Pocket",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Dilemel eus Pocket",
|
||||
"menu_action_archive_pocket": "Diellaouiñ e Pocket",
|
||||
"search_for_something_with": "Klask {search_term} gant:",
|
||||
"search_button": "Klask",
|
||||
"search_header": "Klask {search_engine_name}",
|
||||
"search_web_placeholder": "Klask er web",
|
||||
"search_settings": "Kemmañ an arventennoù klask",
|
||||
"section_info_option": "Titouroù",
|
||||
"section_info_send_feedback": "Kas ho meno",
|
||||
"section_info_privacy_notice": "Evezhiadennoù a-fet buhez prevez",
|
||||
"section_disclaimer_topstories": "An istorioù dedennusañ er web, dibabet hervez ar pezh a lennit. Diwar Pocket, ul lodenn eus Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Deskit penaos ec'h a en-dro.",
|
||||
"section_disclaimer_topstories_buttontext": "Mat eo, komprenet am eus",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}e",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Endalc'had Degemer Firefox",
|
||||
"prefs_home_description": "Dibabit peseurt endalc'had a fell deoc'h kaout war ho skramm Firefox Degemer.",
|
||||
"prefs_restore_defaults_button": "Assav an arventennoù dre ziouer",
|
||||
"prefs_section_rows_option": "{num} renk;{num} renk;{num} renk;{num} a renkoù;{num} renk",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Personelait ho pajenn Ivinell Nevez",
|
||||
"settings_pane_header": "Gwellvezioù an ivinell nevez",
|
||||
"settings_pane_body2": "Dibabit petra a welit war ar bajenn-mañ.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Kit war al lec'hiennoù gweladennet ar muiañ ganeoc'h.",
|
||||
"settings_pane_topsites_options_showmore": "Diskouez daou vann",
|
||||
"settings_pane_bookmarks_header": "Sinedoù nevez",
|
||||
"settings_pane_bookmarks_body": "Ho sinedoù nevez strollet en ul lec'h aes da dizhout.",
|
||||
"settings_pane_visit_again_header": "Gweladenniñ en-dro",
|
||||
"settings_pane_visit_again_body": "Firefox a ziskouezo deoc'h ul lodenn eus ho roll istor a c'hallfec'h kaout c'hoant da zerc'hel soñj pe da zistreiñ eno.",
|
||||
"settings_pane_highlights_header": "Mareoù pouezus",
|
||||
"settings_pane_highlights_body2": "Adkavit an traoù dedennus gweladennet pe lakaet er sinedoù nevez ’zo.",
|
||||
"settings_pane_highlights_options_bookmarks": "Sinedoù",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Graet",
|
||||
"settings_pane_topstories_options_sponsored": "Diskouez an istorioù kevelet",
|
||||
"edit_topsites_button_text": "Embann",
|
||||
"edit_topsites_button_label": "Personelaat ar gevrenn “lec'hiennoù gweladennet ar muiañ”",
|
||||
"edit_topsites_showmore_button": "Diskouez muioc'h",
|
||||
"edit_topsites_showless_button": "Diskouez nebeutoc'h",
|
||||
"edit_topsites_done_button": "Graet",
|
||||
"edit_topsites_pin_button": "Spilhennañ al lec'hienn-mañ",
|
||||
"edit_topsites_unpin_button": "Dispilhennañ al lec'hienn-mañ",
|
||||
"edit_topsites_edit_button": "Embann al lec'hienn-mañ",
|
||||
"edit_topsites_dismiss_button": "Dilemel al lec'hienn-mañ",
|
||||
"edit_topsites_add_button": "Ouzhpennañ",
|
||||
"topsites_form_add_header": "Lec'hiennoù gwellañ nevez",
|
||||
"topsites_form_edit_header": "Embann al Lec'hiennoù Gwellañ",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Enankañ un titl",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Skrivit pe pegit un URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Ouzhpennañ",
|
||||
"topsites_form_save_button": "Enrollañ",
|
||||
"topsites_form_cancel_button": "Nullañ",
|
||||
"topsites_form_url_validation": "URL talvoudek azgoulennet",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Danvezioù brudet:",
|
||||
"pocket_read_even_more": "Gwelet muioc'h a istorioù",
|
||||
"pocket_feedback_header": "Ar gwellañ eus ar web, dibabet gant ouzhpenn 25 milion a dud.",
|
||||
"pocket_description": "Dizoloit pennadoù eus an dibab ho pije gellout c'hwitout a-hent all warno, a-drugarez da bPocket, hag a zo bremañ ul lodenn deus Mozilla.",
|
||||
"highlights_empty_state": "Krogit da verdeiñ hag e tiskouezimp deoc’h pennadoù, videoioù ha pajennoù all gweladennet pe lakaet er sinedoù nevez ’zo.",
|
||||
"topstories_empty_state": "Aet oc'h betek penn. Distroit diwezhatoc'h evit muioc’h a istorioù digant {provider}. N’oc'h ket evit gortoz? Dibabit un danvez brudet evit klask muioc’h a bennadoù dedennus eus pep lec’h er web.",
|
||||
|
@ -112,5 +114,17 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Ouzhpennañ ul lec'hienn gwellañ din"
|
||||
"section_info_option": "Titouroù",
|
||||
"section_info_privacy_notice": "Evezhiadennoù a-fet buhez prevez",
|
||||
"settings_pane_bookmarks_body": "Ho sinedoù nevez strollet en ul lec'h aes da dizhout.",
|
||||
"settings_pane_visit_again_body": "Firefox a ziskouezo deoc'h ul lodenn eus ho roll istor a c'hallfec'h kaout c'hoant da zerc'hel soñj pe da zistreiñ eno.",
|
||||
"edit_topsites_button_label": "Personelaat ar gevrenn “lec'hiennoù gweladennet ar muiañ”",
|
||||
"edit_topsites_showmore_button": "Diskouez muioc'h",
|
||||
"edit_topsites_showless_button": "Diskouez nebeutoc'h",
|
||||
"edit_topsites_done_button": "Graet",
|
||||
"edit_topsites_pin_button": "Spilhennañ al lec'hienn-mañ",
|
||||
"edit_topsites_unpin_button": "Dispilhennañ al lec'hienn-mañ",
|
||||
"edit_topsites_dismiss_button": "Dilemel al lec'hienn-mañ",
|
||||
"edit_topsites_add_button": "Ouzhpennañ",
|
||||
"pocket_feedback_header": "Ar gwellañ eus ar web, dibabet gant ouzhpenn 25 milion a dud."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Nemate nijednu zabilješku.",
|
||||
"header_stories_from": "od",
|
||||
"context_menu_button_sr": "Otvorite kontekstni meni za {title}",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Otvorite kontekstni meni sekcije",
|
||||
"type_label_visited": "Posjećeno",
|
||||
"type_label_bookmarked": "Zabilježeno",
|
||||
"type_label_synced": "Sinhronizovano s drugog uređaja",
|
||||
"type_label_recommended": "Popularno",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Sačuvano u Pocket",
|
||||
"type_label_open": "Otvoreno",
|
||||
"type_label_topic": "Tema",
|
||||
"type_label_now": "Sada",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Jeste li sigurni da želite izbrisati sve primjere ove stranice iz vaše historije?",
|
||||
"confirm_history_delete_notice_p2": "Ova radnja se ne može opozvati.",
|
||||
"menu_action_save_to_pocket": "Sačuvaj na Pocket",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Izbriši iz Pocketa",
|
||||
"menu_action_archive_pocket": "Arhiviraj u Pocket",
|
||||
"search_for_something_with": "Traži za {search_term} sa:",
|
||||
"search_button": "Traži",
|
||||
"search_header": "{search_engine_name} pretraga",
|
||||
"search_web_placeholder": "Pretraži web",
|
||||
"search_settings": "Promijeni postavke pretrage",
|
||||
"section_info_option": "Informacije",
|
||||
"section_info_send_feedback": "Pošaljite povratnu informaciju",
|
||||
"section_info_privacy_notice": "Napomena o privatnosti",
|
||||
"section_disclaimer_topstories": "Najinteresantnije priče na webu, odabrane na osnovu onoga što ste pročitali. Od Pocket-a, koji je sada dio Mozille.",
|
||||
"section_disclaimer_topstories_linktext": "Saznajte kako radi.",
|
||||
"section_disclaimer_topstories_buttontext": "U redu, razumijem",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox početni sadržaj",
|
||||
"prefs_home_description": "Odaberite koji sadržaj želite na vašem početnom ekranu Firefoxa.",
|
||||
"prefs_restore_defaults_button": "Vrati na izvorne vrijednosti",
|
||||
"prefs_section_rows_option": "{num} red;{num} redovi",
|
||||
"prefs_search_header": "Web pretraga",
|
||||
"prefs_topsites_description": "Stranice koje najviše posjećujete",
|
||||
"prefs_topstories_description": "Visoko kvalitetan sadržaj koji biste inače promašili",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} sponzorisane priče",
|
||||
"prefs_topstories_sponsored_learn_more": "Saznajte više",
|
||||
"prefs_highlights_description": "Izbor stranica koje ste sačuvali ili posjetili",
|
||||
"prefs_snippets_description": "Ažuriranja od Mozille i Firefoxa",
|
||||
"settings_pane_button_label": "Prilagodite svoju početnu stranicu novog taba",
|
||||
"settings_pane_header": "Postavke novog taba",
|
||||
"settings_pane_body2": "Izaberite šta želite vidjeti na ovoj stranici.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Pristupite stranicama koje najčešće posjećujete.",
|
||||
"settings_pane_topsites_options_showmore": "Prikaži dva reda",
|
||||
"settings_pane_bookmarks_header": "Nedavne zabilješke",
|
||||
"settings_pane_bookmarks_body": "Vaše novo stvorene zabilješke na jednom praktičnom mjestu.",
|
||||
"settings_pane_visit_again_header": "Posjetite ponovo",
|
||||
"settings_pane_visit_again_body": "Firefox će vam prikazati dijelove vaše historije pretraživanja koje možda želite zapamtiti ili posjetiti ponovo.",
|
||||
"settings_pane_highlights_header": "Istaknuto",
|
||||
"settings_pane_highlights_body2": "Pronađite put natrag do zanimljivih stvari koje ste nedavno posjetili ili zabilježili.",
|
||||
"settings_pane_highlights_options_bookmarks": "Zabilješke",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Gotovo",
|
||||
"settings_pane_topstories_options_sponsored": "Prikaži sponzorisane priče",
|
||||
"edit_topsites_button_text": "Uredi",
|
||||
"edit_topsites_button_label": "Prilagodite odjel s najboljim stranicama",
|
||||
"edit_topsites_showmore_button": "Prikaži više",
|
||||
"edit_topsites_showless_button": "Prikaži manje",
|
||||
"edit_topsites_done_button": "Gotovo",
|
||||
"edit_topsites_pin_button": "Zakači ovu stranicu",
|
||||
"edit_topsites_unpin_button": "Otkači ovu stranicu",
|
||||
"edit_topsites_edit_button": "Uredi ovu stranicu",
|
||||
"edit_topsites_dismiss_button": "Odbaci ovu stranicu",
|
||||
"edit_topsites_add_button": "Dodaj",
|
||||
"topsites_form_add_header": "Nova najbolja stranica",
|
||||
"topsites_form_edit_header": "Uredi najbolju stranicu",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Naslov",
|
||||
"topsites_form_title_placeholder": "Unesi naslov",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Prilagođena URL slika",
|
||||
"topsites_form_url_placeholder": "Upišite ili zalijepite URL",
|
||||
"topsites_form_use_image_link": "Koristite prilagođenu sliku…",
|
||||
"topsites_form_preview_button": "Pregled",
|
||||
"topsites_form_add_button": "Dodaj",
|
||||
"topsites_form_save_button": "Sačuvaj",
|
||||
"topsites_form_cancel_button": "Otkaži",
|
||||
"topsites_form_url_validation": "Potrebno je unijeti ispravan URL",
|
||||
"topsites_form_image_validation": "Neuspjelo učitavanje slike. Probajte drugi URL.",
|
||||
"pocket_read_more": "Popularne teme:",
|
||||
"pocket_read_even_more": "Prikaži više priča",
|
||||
"pocket_feedback_header": "Najbolje od interneta, birano od preko 25 miliona ljudi.",
|
||||
"pocket_description": "Otkrijte visoko kvalitetan sadržaj koji ste možda propustili, uz pomoć Pocketa koji je sada dio Mozille.",
|
||||
"highlights_empty_state": "Započnite pretraživati i pokazat ćemo vam neke od izvrsnih članaka, videa i drugih web stranica prema vašim nedavno posjećenim stranicama ili zabilješkama.",
|
||||
"topstories_empty_state": "Provjerite kasnije za više najpopularnijih priča od {provider}. Ne možete čekati? Odaberite popularne teme kako biste pronašli više kvalitetnih priča s cijelog weba.",
|
||||
"manual_migration_explanation2": "Probajte Firefox s zabilješkama, historijom i lozinkama iz drugog pretraživača.",
|
||||
"manual_migration_cancel_button": "Ne, hvala",
|
||||
"manual_migration_import_button": "Uvezi sada",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Dodajte top stranicu"
|
||||
"error_fallback_default_info": "Ups, došlo je do greške pri učitavanju ovog sadržaja.",
|
||||
"error_fallback_default_refresh_suggestion": "Osvježite stranicu da biste pokušali ponovo.",
|
||||
"section_menu_action_remove_section": "Ukloni sekciju",
|
||||
"section_menu_action_collapse_section": "Skupi sekciju",
|
||||
"section_menu_action_expand_section": "Proširi sekciju",
|
||||
"section_menu_action_manage_section": "Upravljaj sekcijom",
|
||||
"section_menu_action_add_topsite": "Dodajte omiljenu stranicu",
|
||||
"section_menu_action_move_up": "Pomjeri gore",
|
||||
"section_menu_action_move_down": "Pomjeri dole",
|
||||
"section_menu_action_privacy_notice": "Polica privatnosti",
|
||||
"section_info_option": "Informacije",
|
||||
"section_info_privacy_notice": "Napomena o privatnosti",
|
||||
"settings_pane_bookmarks_body": "Vaše novo stvorene zabilješke na jednom praktičnom mjestu.",
|
||||
"settings_pane_visit_again_body": "Firefox će vam prikazati dijelove vaše historije pretraživanja koje možda želite zapamtiti ili posjetiti ponovo.",
|
||||
"edit_topsites_button_label": "Prilagodite odjel s najboljim stranicama",
|
||||
"edit_topsites_showmore_button": "Prikaži više",
|
||||
"edit_topsites_showless_button": "Prikaži manje",
|
||||
"edit_topsites_done_button": "Gotovo",
|
||||
"edit_topsites_pin_button": "Zakači ovu stranicu",
|
||||
"edit_topsites_unpin_button": "Otkači ovu stranicu",
|
||||
"edit_topsites_dismiss_button": "Odbaci ovu stranicu",
|
||||
"edit_topsites_add_button": "Dodaj",
|
||||
"pocket_feedback_header": "Najbolje od interneta, birano od preko 25 miliona ljudi."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Cerca de {search_engine_name}",
|
||||
"search_web_placeholder": "Cerca al web",
|
||||
"search_settings": "Canvia els paràmetres de cerca",
|
||||
"section_info_option": "Informació",
|
||||
"section_info_send_feedback": "Doneu la vostra opinió",
|
||||
"section_info_privacy_notice": "Avís de privadesa",
|
||||
"section_disclaimer_topstories": "Els articles més interessants del web, seleccionats en funció d'allò que llegiu. Gràcies al Pocket, que ara és part de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Vegeu com funciona.",
|
||||
"section_disclaimer_topstories_buttontext": "Entesos",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} m",
|
||||
"time_label_hour": "{number} h",
|
||||
"time_label_day": "{number} d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Personalitzeu la pàgina de pestanya nova",
|
||||
"settings_pane_header": "Preferències de pestanya nova",
|
||||
"settings_pane_body2": "Trieu què voleu veure en aquesta pàgina.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Accediu als llocs web que visiteu més sovint.",
|
||||
"settings_pane_topsites_options_showmore": "Mostra dues files",
|
||||
"settings_pane_bookmarks_header": "Adreces d'interès recents",
|
||||
"settings_pane_bookmarks_body": "Les adreces d'interès que aneu creant, en un lloc còmode.",
|
||||
"settings_pane_visit_again_header": "Torneu a visitar",
|
||||
"settings_pane_visit_again_body": "El Firefox us mostrarà parts del vostre historial de navegació que potser us agradaria recordar o tornar a visitar.",
|
||||
"settings_pane_highlights_header": "Destacats",
|
||||
"settings_pane_highlights_body2": "Torneu a trobar allò més interessant que recentment heu visitat o heu afegit a les adreces d'interès.",
|
||||
"settings_pane_highlights_options_bookmarks": "Adreces d'interès",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Fet",
|
||||
"settings_pane_topstories_options_sponsored": "Mostra articles patrocinats",
|
||||
"edit_topsites_button_text": "Edita",
|
||||
"edit_topsites_button_label": "Personalitzeu la secció Llocs principals",
|
||||
"edit_topsites_showmore_button": "Mostra'n més",
|
||||
"edit_topsites_showless_button": "Mostra'n menys",
|
||||
"edit_topsites_done_button": "Fet",
|
||||
"edit_topsites_pin_button": "Fixa aquest lloc",
|
||||
"edit_topsites_unpin_button": "No fixis aquest lloc",
|
||||
"edit_topsites_edit_button": "Edita aquest lloc",
|
||||
"edit_topsites_dismiss_button": "Elimina aquest lloc",
|
||||
"edit_topsites_add_button": "Afegeix",
|
||||
"topsites_form_add_header": "Lloc principal nou",
|
||||
"topsites_form_edit_header": "Edita el lloc principal",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Escriviu el títol",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Escriviu o enganxeu un URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Afegeix",
|
||||
"topsites_form_save_button": "Desa",
|
||||
"topsites_form_cancel_button": "Cancel·la",
|
||||
"topsites_form_url_validation": "Es necessita un URL vàlid",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Temes populars:",
|
||||
"pocket_read_even_more": "Mostra més articles",
|
||||
"pocket_feedback_header": "El millor del web, seleccionat per més de 25 milions de persones.",
|
||||
"pocket_description": "Gràcies al Pocket, que ara és part de Mozilla, podeu descobrir contingut d'alta qualitat que d'altra manera potser us passaria per alt.",
|
||||
"highlights_empty_state": "Comenceu a navegar i aquí us mostrarem els millors articles, vídeos i altres pàgines que hàgiu visitat o afegit a les adreces d'interès recentment.",
|
||||
"topstories_empty_state": "Ja esteu al dia. Torneu més tard per veure més articles populars de {provider}. No podeu esperar? Trieu un tema popular per descobrir els articles més interessants de tot el web.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Informació",
|
||||
"section_info_privacy_notice": "Avís de privadesa",
|
||||
"settings_pane_bookmarks_body": "Les adreces d'interès que aneu creant, en un lloc còmode.",
|
||||
"settings_pane_visit_again_body": "El Firefox us mostrarà parts del vostre historial de navegació que potser us agradaria recordar o tornar a visitar.",
|
||||
"edit_topsites_button_label": "Personalitzeu la secció Llocs principals",
|
||||
"edit_topsites_showmore_button": "Mostra'n més",
|
||||
"edit_topsites_showless_button": "Mostra'n menys",
|
||||
"edit_topsites_done_button": "Fet",
|
||||
"edit_topsites_pin_button": "Fixa aquest lloc",
|
||||
"edit_topsites_unpin_button": "No fixis aquest lloc",
|
||||
"edit_topsites_dismiss_button": "Elimina aquest lloc",
|
||||
"edit_topsites_add_button": "Afegeix",
|
||||
"pocket_feedback_header": "El millor del web, seleccionat per més de 25 milions de persones."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -16,7 +16,7 @@ window.gActivityStreamStrings = {
|
|||
"type_label_bookmarked": "Yakon retal",
|
||||
"type_label_synced": "Ximon rik'in jun chik okisaxel",
|
||||
"type_label_recommended": "Rujawaxik",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Yakon pa Pocket",
|
||||
"type_label_open": "Tijaq",
|
||||
"type_label_topic": "Na'oj",
|
||||
"type_label_now": "Wakami",
|
||||
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} Tikanöx",
|
||||
"search_web_placeholder": "Tikanöx pa Ajk'amaya'l",
|
||||
"search_settings": "Tijal Runuk'ulem Kanoxïk",
|
||||
"section_info_option": "Rutzijol",
|
||||
"section_info_send_feedback": "Ketaq taq Tzijol",
|
||||
"section_info_privacy_notice": "Rutzijol Ichinanem",
|
||||
"section_disclaimer_topstories": "Ri nimaläj taq b'anob'äl pan ajk'amaya'l, cha'on rik'in ri ruxe'el ri nasik'ij. Matyox chi re ri Pocket, wakami k'o rik'in ri Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Tetamäx rub'eyal nisamäj.",
|
||||
"section_disclaimer_topstories_buttontext": "Ütz, xno' pa nuwi'",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}m",
|
||||
"time_label_day": "{ajilab'äl}m",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Tawichinaj ri ruxaq richin K'ak'a' Ruwi'",
|
||||
"settings_pane_header": "K'ak'a' Ruwi' Taq Ajowab'äl",
|
||||
"settings_pane_body2": "Tacha' ri natzu' pa re ruxaq re'.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Katok pa ri taq ajk'amaya'l yalan ye'atz'ët.",
|
||||
"settings_pane_topsites_options_showmore": "Kek'ut pe ka'i' cholaj",
|
||||
"settings_pane_bookmarks_header": "K'ak'a' taq Yaketal",
|
||||
"settings_pane_bookmarks_body": "Ri taq awajowab'äl k'a ri xenuk' pa jun utziläj k'ojlib'äl.",
|
||||
"settings_pane_visit_again_header": "Tab'etz'eta' chik",
|
||||
"settings_pane_visit_again_body": "Firefox xtuk'ut pe jalajoj taq rub'eyal ri b'anob'äl richin rukusaxik ri k'amaya'l rik'in jub'a' nawajo' nanataj chuqa' yatikir natzu' chik.",
|
||||
"settings_pane_highlights_header": "Taq k'ewachinïk",
|
||||
"settings_pane_highlights_body2": "Ke'awila' chik ri jeb'ël taq wachinäq e'atz'eton chuqa' aya'on ketal.",
|
||||
"settings_pane_highlights_options_bookmarks": "Taq yaketal",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Xk'is",
|
||||
"settings_pane_topstories_options_sponsored": "Kek'ut pe To'on taq B'anob'äl",
|
||||
"edit_topsites_button_text": "Tinuk'",
|
||||
"edit_topsites_button_label": "Tab'ana' runuk'ulem ri kitanaj Nimaläj taq Ruxaq K'amaya'l",
|
||||
"edit_topsites_showmore_button": "Kek'ut pe ch'aqa' chik",
|
||||
"edit_topsites_showless_button": "Tik'ut Jub'a'",
|
||||
"edit_topsites_done_button": "Xb'an",
|
||||
"edit_topsites_pin_button": "Tixim re k'amaya'l re'",
|
||||
"edit_topsites_unpin_button": "Tosq'opïx re ruxaq k'amaya'l re'",
|
||||
"edit_topsites_edit_button": "Tinuk' re ruxaq k'amaya'l re'",
|
||||
"edit_topsites_dismiss_button": "Tiyuj re ruxaq k'amaya'l re'",
|
||||
"edit_topsites_add_button": "Titz'aqatisäx",
|
||||
"topsites_form_add_header": "K'ak'a' Utziläj Ruxaq K'amaya'l",
|
||||
"topsites_form_edit_header": "Tinuk' re Utziläj Ruxaq K'amaya'l re'",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "B'i'aj",
|
||||
"topsites_form_title_placeholder": "Tatz'ib'aj jun b'i'aj",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Tatz'ib'aj o tatz'ajb'a' jun URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Titz'aqatisäx",
|
||||
"topsites_form_save_button": "Tiyak",
|
||||
"topsites_form_cancel_button": "Tiq'at",
|
||||
"topsites_form_url_validation": "Ütz URL k'atzinel",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Nima'q taq Na'oj:",
|
||||
"pocket_read_even_more": "Ketz'et ch'aqa' chik taq B'anob'äl",
|
||||
"pocket_feedback_header": "Ri rutzil k'amaya'l, aq'oman kuma 25 t'ijt'äq chi winäq.",
|
||||
"pocket_description": "Ke'awila' utziläj taq rupam pa Pocket, wakami ruch'akulan ri' rik'in Mozilla, ri rik'in jub'a' xtasäch rutz'etik.",
|
||||
"highlights_empty_state": "Katok pa k'amaya'l richin niqak'üt chawäch jeb'ël taq cholna'oj, taq silowachib'äl, chuqa' ch'aqa' chik taq ruxaq k'a b'a' ke'atz'ët o aya'on kan ketal wawe'.",
|
||||
"topstories_empty_state": "Xaq'i'. Katzolin chik pe richin ye'ak'ül ri utziläj taq rub'anob'al {provider}. ¿La man noyob'en ta? Tacha' jun ütz na'oj richin nawïl ch'aqa' chik taq b'anob'äl e k'o chi rij ri ajk'amaya'l.",
|
||||
|
@ -104,13 +106,25 @@ window.gActivityStreamStrings = {
|
|||
"manual_migration_import_button": "Tijik' pe",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_remove_section": "Tiyuj Tanaj",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Titz'aqatisäx K'ïy Ruwinaq Ruxaq K'amaya'l"
|
||||
"section_menu_action_add_topsite": "Titz'aqatisäx K'ïy Ruwinaq Ruxaq K'amaya'l",
|
||||
"section_menu_action_move_up": "Tijotob'äx",
|
||||
"section_menu_action_move_down": "Tiqasäx qa",
|
||||
"section_menu_action_privacy_notice": "Ichinan na'oj",
|
||||
"section_info_option": "Rutzijol",
|
||||
"section_info_privacy_notice": "Rutzijol Ichinanem",
|
||||
"settings_pane_bookmarks_body": "Ri taq awajowab'äl k'a ri xenuk' pa jun utziläj k'ojlib'äl.",
|
||||
"settings_pane_visit_again_body": "Firefox xtuk'ut pe jalajoj taq rub'eyal ri b'anob'äl richin rukusaxik ri k'amaya'l rik'in jub'a' nawajo' nanataj chuqa' yatikir natzu' chik.",
|
||||
"edit_topsites_button_label": "Tab'ana' runuk'ulem ri kitanaj Nimaläj taq Ruxaq K'amaya'l",
|
||||
"edit_topsites_showmore_button": "Kek'ut pe ch'aqa' chik",
|
||||
"edit_topsites_showless_button": "Tik'ut Jub'a'",
|
||||
"edit_topsites_done_button": "Xb'an",
|
||||
"edit_topsites_pin_button": "Tixim re k'amaya'l re'",
|
||||
"edit_topsites_unpin_button": "Tosq'opïx re ruxaq k'amaya'l re'",
|
||||
"edit_topsites_dismiss_button": "Tiyuj re ruxaq k'amaya'l re'",
|
||||
"edit_topsites_add_button": "Titz'aqatisäx",
|
||||
"pocket_feedback_header": "Ri rutzil k'amaya'l, aq'oman kuma 25 t'ijt'äq chi winäq."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Vyhledat pomocí {search_engine_name}",
|
||||
"search_web_placeholder": "Vyhledat na webu",
|
||||
"search_settings": "Změnit nastavení vyhledávání",
|
||||
"section_info_option": "Informace",
|
||||
"section_info_send_feedback": "Zpětná vazba",
|
||||
"section_info_privacy_notice": "Zásady ochrany soukromí",
|
||||
"section_disclaimer_topstories": "Nejzajímavější příběhy na webu vybrané podle toho, co sami čtete. To je služba Pocket od Mozilly.",
|
||||
"section_disclaimer_topstories_linktext": "Zjistit, jak to funguje.",
|
||||
"section_disclaimer_topstories_buttontext": "Ok, rozumím",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} min",
|
||||
"time_label_hour": "{number} h",
|
||||
"time_label_day": "{number} d",
|
||||
"prefs_home_header": "Obsah domovské stránky Firefoxu",
|
||||
"prefs_home_description": "Vyberte si obsah, který chcete na domovské stránce svého Firefoxu.",
|
||||
"prefs_restore_defaults_button": "Obnovit výchozí",
|
||||
"prefs_section_rows_option": "{num} řádek;{num} řádky;{num} řádků",
|
||||
"prefs_search_header": "Vyhledávání na webu",
|
||||
"prefs_topsites_description": "Nejnavštěvovanější stránky",
|
||||
"prefs_topstories_description": "Kvalitní obsah, o který byste jinak mohli přijít",
|
||||
"prefs_topstories_show_sponsored_label": "Sponzorované příběhy ze služby {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "Zjistit více",
|
||||
"prefs_highlights_description": "Výběr stránek, které jste si uložili nebo navštívili",
|
||||
"prefs_snippets_description": "Informace od Mozilly a o Firefoxu",
|
||||
"settings_pane_button_label": "Přizpůsobení stránky nového panelu",
|
||||
"settings_pane_header": "Předvolby nového panelu",
|
||||
"settings_pane_body2": "Vyberte, co chcete na této stránce vidět.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Přístup k nejčastěji navštěvovaným stránkám.",
|
||||
"settings_pane_topsites_options_showmore": "Zobrazit dva řádky",
|
||||
"settings_pane_bookmarks_header": "Nedávno přidané záložky",
|
||||
"settings_pane_bookmarks_body": "Vaše nově přidané záložky na místě hned po ruce.",
|
||||
"settings_pane_visit_again_header": "Znovu navštívit",
|
||||
"settings_pane_visit_again_body": "Firefox vám ukáže některé položky z vaší historie prohlížení, které byste si mohli chtít připomenout nebo se k nim vrátit.",
|
||||
"settings_pane_highlights_header": "Vybrané",
|
||||
"settings_pane_highlights_body2": "Najděte cestu zpět k zajímavým věcem, které jste nedávno viděli nebo uložili do záložek.",
|
||||
"settings_pane_highlights_options_bookmarks": "Záložky",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Hotovo",
|
||||
"settings_pane_topstories_options_sponsored": "Zobrazit sponzorované příběhy",
|
||||
"edit_topsites_button_text": "Upravit",
|
||||
"edit_topsites_button_label": "Upravit oddíl Top stránek",
|
||||
"edit_topsites_showmore_button": "Zobrazit více",
|
||||
"edit_topsites_showless_button": "Zobrazit méně",
|
||||
"edit_topsites_done_button": "Hotovo",
|
||||
"edit_topsites_pin_button": "Připnout tuto stránku",
|
||||
"edit_topsites_unpin_button": "Odepnout tuto stránku",
|
||||
"edit_topsites_edit_button": "Upravit tuto stránku",
|
||||
"edit_topsites_dismiss_button": "Skrýt tuto stránku",
|
||||
"edit_topsites_add_button": "Přidat",
|
||||
"topsites_form_add_header": "Nová top stránka",
|
||||
"topsites_form_edit_header": "Upravit top stránku",
|
||||
"topsites_form_title_label": "Nadpis",
|
||||
"topsites_form_title_placeholder": "Zadejte název",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL adresa vlastního obrázku",
|
||||
"topsites_form_url_placeholder": "Zadejte nebo vložte URL adresu",
|
||||
"topsites_form_use_image_link": "Používejte vlastní obrázek…",
|
||||
"topsites_form_preview_button": "Náhled",
|
||||
"topsites_form_add_button": "Přidat",
|
||||
"topsites_form_save_button": "Uložit",
|
||||
"topsites_form_cancel_button": "Zrušit",
|
||||
"topsites_form_url_validation": "Je vyžadována platná URL",
|
||||
"topsites_form_image_validation": "Obrázek se nepodařilo načíst. Zkuste jinou URL adresu.",
|
||||
"pocket_read_more": "Populární témata:",
|
||||
"pocket_read_even_more": "Zobrazit více příběhů",
|
||||
"pocket_feedback_header": "To nejlepší na webu podle hodnocení více než 25 milionů lidí.",
|
||||
"pocket_description": "Objevte obsah s vysokou kvalitou, který byste mohli jinak propásnout. Pomůže vám služby Pocket od Mozilly.",
|
||||
"highlights_empty_state": "Začněte prohlížet a my vám zde ukážeme některé skvělé články, videa a další stránky, které jste nedávno viděli nebo uložili do záložek.",
|
||||
"topstories_empty_state": "Už jste všechno přečetli. Další příběhy ze služby {provider} tu najdete zase později. Ale pokud se nemůžete dočkat, vyberte své oblíbené téma a podívejte se na další velké příběhy z celého webu.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Přidat mezi top stránky",
|
||||
"section_menu_action_move_up": "Posunout nahoru",
|
||||
"section_menu_action_move_down": "Posunout dolů",
|
||||
"section_menu_action_privacy_notice": "Zásady ochrany soukromí"
|
||||
"section_menu_action_privacy_notice": "Zásady ochrany soukromí",
|
||||
"section_info_option": "Informace",
|
||||
"section_info_privacy_notice": "Zásady ochrany soukromí",
|
||||
"settings_pane_bookmarks_body": "Vaše nově přidané záložky na místě hned po ruce.",
|
||||
"settings_pane_visit_again_body": "Firefox vám ukáže některé položky z vaší historie prohlížení, které byste si mohli chtít připomenout nebo se k nim vrátit.",
|
||||
"edit_topsites_button_label": "Upravit oddíl Top stránek",
|
||||
"edit_topsites_showmore_button": "Zobrazit více",
|
||||
"edit_topsites_showless_button": "Zobrazit méně",
|
||||
"edit_topsites_done_button": "Hotovo",
|
||||
"edit_topsites_pin_button": "Připnout tuto stránku",
|
||||
"edit_topsites_unpin_button": "Odepnout tuto stránku",
|
||||
"edit_topsites_dismiss_button": "Skrýt tuto stránku",
|
||||
"edit_topsites_add_button": "Přidat",
|
||||
"pocket_feedback_header": "To nejlepší na webu podle hodnocení více než 25 milionů lidí."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} Chwilio",
|
||||
"search_web_placeholder": "Chwilio'r We",
|
||||
"search_settings": "Newid y Gosodiadau Chwilio",
|
||||
"section_info_option": "Gwybodaeth",
|
||||
"section_info_send_feedback": "Anfon Adborth",
|
||||
"section_info_privacy_notice": "Hysbysiad Preifatrwydd",
|
||||
"section_disclaimer_topstories": "Y straeon mwyaf diddorol ar y we, wedi eu dewis ar sail yr hyn rydych yn eu darllen. Gan Pocket, sydd nawr yn rhan o Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Dyma sut mae'n gweithio...",
|
||||
"section_disclaimer_topstories_buttontext": "Iawn, deall",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}a",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Cynnwys Cartref Firefox",
|
||||
"prefs_home_description": "Dewis pa gynnwys rydych eisiau ar eich sgrin Firefox Cartref.",
|
||||
"prefs_restore_defaults_button": "Adfer y Rhagosodedig",
|
||||
"prefs_section_rows_option": "{num} rhes;{num} rhes",
|
||||
"prefs_search_header": "Chwilio'r We",
|
||||
"prefs_topsites_description": "Y gwefannau rydych yn ymweld â nhw amlaf",
|
||||
"prefs_topstories_description": "Cynnwys o safon uchel y gallech chi fod yn eu colli",
|
||||
"prefs_topstories_show_sponsored_label": "Straeon Noddedig {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "Dysgu rhagor",
|
||||
"prefs_highlights_description": "Detholiad o wefannau rydych wedi eu cadw neu ymweld â nhw",
|
||||
"prefs_snippets_description": "Diweddariadau gan Mozilla a Firefox",
|
||||
"settings_pane_button_label": "Cyfaddasu eich tudalen Tab Newydd",
|
||||
"settings_pane_header": "Dewisiadau Tab Newydd",
|
||||
"settings_pane_body2": "Dewis beth fyddwch yn ei weld ar y dudalen hon.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Cael mynediad at y gwefannau rydych yn ymweld â nhw amlaf.",
|
||||
"settings_pane_topsites_options_showmore": "Dangos dwy res",
|
||||
"settings_pane_bookmarks_header": "Nodau Tudalen Diweddar",
|
||||
"settings_pane_bookmarks_body": "Eich nodau tudalen diweddaraf mewn un lleoliad hwylus.",
|
||||
"settings_pane_visit_again_header": "Ymweld Eto",
|
||||
"settings_pane_visit_again_body": "Gall Firefox ddangos i chi rannau o'ch hanes pori yr hoffech eu cofio neu fynd nôl atyn nhw.",
|
||||
"settings_pane_highlights_header": "Goreuon",
|
||||
"settings_pane_highlights_body2": "Mynd yn ôl at bethau diddorol rydych wedi ymweld â nhw neu osod nod tudalen iddyn nhw.",
|
||||
"settings_pane_highlights_options_bookmarks": "Nodau Tudalen",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Gorffen",
|
||||
"settings_pane_topstories_options_sponsored": "Dangos Straeon wedi eu Noddi",
|
||||
"edit_topsites_button_text": "Golygu",
|
||||
"edit_topsites_button_label": "Cyfaddasu eich adran Hoff Wefannau",
|
||||
"edit_topsites_showmore_button": "Dangos rhagor",
|
||||
"edit_topsites_showless_button": "Dangos llai",
|
||||
"edit_topsites_done_button": "Gorffen",
|
||||
"edit_topsites_pin_button": "Pinio'r wefan",
|
||||
"edit_topsites_unpin_button": "Dad-binio'r wefan",
|
||||
"edit_topsites_edit_button": "Golygu'r wefan",
|
||||
"edit_topsites_dismiss_button": "Dileu'r wefan",
|
||||
"edit_topsites_add_button": "Ychwanegu",
|
||||
"topsites_form_add_header": "Hoff Wefan Newydd",
|
||||
"topsites_form_edit_header": "Golygu'r Hoff Wefan",
|
||||
"topsites_form_title_label": "Teitl",
|
||||
"topsites_form_title_placeholder": "Rhoi teitl",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL Delwedd Gyfaddas",
|
||||
"topsites_form_url_placeholder": "Teipio neu ludo URL",
|
||||
"topsites_form_use_image_link": "Defnyddio delwedd gyfaddas…",
|
||||
"topsites_form_preview_button": "Rhagolwg",
|
||||
"topsites_form_add_button": "Ychwanegu",
|
||||
"topsites_form_save_button": "Cadw",
|
||||
"topsites_form_cancel_button": "Diddymu",
|
||||
"topsites_form_url_validation": "Mae angen URL Ddilys",
|
||||
"topsites_form_image_validation": "Methodd y ddelwedd â llwytho. Defnyddiwch URL gwahanol.",
|
||||
"pocket_read_more": "Pynciau Poblogaidd:",
|
||||
"pocket_read_even_more": "Gweld Rhagor o Straeon",
|
||||
"pocket_feedback_header": "Y gorau o'r we, wedi ei gasglu gan dros 25 miliwn o bobl.",
|
||||
"pocket_description": "Darganfyddwch gynnwys o ansawdd uchel y byddech o bosib yn eu colli, gyda chymorth gan Pocket, sy nawr yn rhan o Mozilla.",
|
||||
"highlights_empty_state": "Cychwynnwch bori ac fe ddangoswn rhai erthyglau, fideos a thudalennau eraill difyr rydych wedi ymweld â nhw'n ddiweddar neu wedi gosod nod tudalen arnyn nhw yma.",
|
||||
"topstories_empty_state": "Rydych wedi dal i fynDewch nôl rhywbryd eto am fwy o'r straeon pwysicaf gan {provider}. Methu aros? Dewiswch bwnc poblogaidd i ganfod straeon da o ar draws y we. ",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Ychwanegu Hoff Wefan",
|
||||
"section_menu_action_move_up": "Symud i Fyny",
|
||||
"section_menu_action_move_down": "Symud i Lawr",
|
||||
"section_menu_action_privacy_notice": "Hysbysiad Preifatrwydd"
|
||||
"section_menu_action_privacy_notice": "Hysbysiad Preifatrwydd",
|
||||
"section_info_option": "Gwybodaeth",
|
||||
"section_info_privacy_notice": "Hysbysiad Preifatrwydd",
|
||||
"settings_pane_bookmarks_body": "Eich nodau tudalen diweddaraf mewn un lleoliad hwylus.",
|
||||
"settings_pane_visit_again_body": "Gall Firefox ddangos i chi rannau o'ch hanes pori yr hoffech eu cofio neu fynd nôl atyn nhw.",
|
||||
"edit_topsites_button_label": "Cyfaddasu eich adran Hoff Wefannau",
|
||||
"edit_topsites_showmore_button": "Dangos rhagor",
|
||||
"edit_topsites_showless_button": "Dangos llai",
|
||||
"edit_topsites_done_button": "Gorffen",
|
||||
"edit_topsites_pin_button": "Pinio'r wefan",
|
||||
"edit_topsites_unpin_button": "Dad-binio'r wefan",
|
||||
"edit_topsites_dismiss_button": "Dileu'r wefan",
|
||||
"edit_topsites_add_button": "Ychwanegu",
|
||||
"pocket_feedback_header": "Y gorau o'r we, wedi ei gasglu gan dros 25 miliwn o bobl."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name}-søgning",
|
||||
"search_web_placeholder": "Søg på internettet",
|
||||
"search_settings": "Skift søgeindstillinger",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Send feedback",
|
||||
"section_info_privacy_notice": "Privatlivspolitik",
|
||||
"section_disclaimer_topstories": "De mest interessante historier på nettet, udvalgt på baggrund af det, du læser. Fra Pocket, nu en del af Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Læs hvordan det fungerer.",
|
||||
"section_disclaimer_topstories_buttontext": "Ok, forstået",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} m.",
|
||||
"time_label_hour": "{number} t.",
|
||||
"time_label_day": "{number} d.",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Tilpas siden Nyt faneblad",
|
||||
"settings_pane_header": "Indstillinger for Nyt faneblad",
|
||||
"settings_pane_body2": "Vælg, hvad du vil se på denne side.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Adgang til de websider, du besøger oftest.",
|
||||
"settings_pane_topsites_options_showmore": "Vis to rækker",
|
||||
"settings_pane_bookmarks_header": "Seneste bogmærker",
|
||||
"settings_pane_bookmarks_body": "Dine seneste bogmærker samlet ét sted.",
|
||||
"settings_pane_visit_again_header": "Besøg igen",
|
||||
"settings_pane_visit_again_body": "Firefox viser dig dele af din browserhistorik, som du måske vil huske på eller vende tilbage til.",
|
||||
"settings_pane_highlights_header": "Fremhævede",
|
||||
"settings_pane_highlights_body2": "Find tilbage til interessant indhold, du har besøgt eller gemt et bogmærke til for nylig.",
|
||||
"settings_pane_highlights_options_bookmarks": "Bogmærker",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Færdig",
|
||||
"settings_pane_topstories_options_sponsored": "Vis sponsorerede historier",
|
||||
"edit_topsites_button_text": "Rediger",
|
||||
"edit_topsites_button_label": "Tilpas afsnittet Mest besøgte websider",
|
||||
"edit_topsites_showmore_button": "Vis flere",
|
||||
"edit_topsites_showless_button": "Vis færre",
|
||||
"edit_topsites_done_button": "Færdig",
|
||||
"edit_topsites_pin_button": "Fastgør denne webside",
|
||||
"edit_topsites_unpin_button": "Frigør denne webside",
|
||||
"edit_topsites_edit_button": "Rediger denne webside",
|
||||
"edit_topsites_dismiss_button": "Afvis denne webside",
|
||||
"edit_topsites_add_button": "Tilføj",
|
||||
"topsites_form_add_header": "Ny webside",
|
||||
"topsites_form_edit_header": "Rediger mest besøgte webside",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Indtast en titel",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Indtast eller indsæt en URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Tilføj",
|
||||
"topsites_form_save_button": "Gem",
|
||||
"topsites_form_cancel_button": "Annuller",
|
||||
"topsites_form_url_validation": "Gyldig URL påkrævet",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Populære emner:",
|
||||
"pocket_read_even_more": "Se flere historier",
|
||||
"pocket_feedback_header": "Det bedste fra nettet, udvalgt af mere end 25 millioner mennesker.",
|
||||
"pocket_description": "Opdag indhold af høj kvalitet, som du måske ellers ikke ville have opdaget. Indholdet kommer fra Pocket, der nu er en del af Mozilla.",
|
||||
"highlights_empty_state": "Gå i gang med at browse, så vil vi vise dig nogle af de artikler, videoer og andre sider, du har besøgt eller gemt et bogmærke til for nylig.",
|
||||
"topstories_empty_state": "Der er ikke flere nye historier. Kom tilbage senere for at se flere tophistorier fra {provider}. Kan du ikke vente? Vælg et populært emne og find flere spændende historier fra hele verden.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Tilføj ny webside"
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Privatlivspolitik",
|
||||
"settings_pane_bookmarks_body": "Dine seneste bogmærker samlet ét sted.",
|
||||
"settings_pane_visit_again_body": "Firefox viser dig dele af din browserhistorik, som du måske vil huske på eller vende tilbage til.",
|
||||
"edit_topsites_button_label": "Tilpas afsnittet Mest besøgte websider",
|
||||
"edit_topsites_showmore_button": "Vis flere",
|
||||
"edit_topsites_showless_button": "Vis færre",
|
||||
"edit_topsites_done_button": "Færdig",
|
||||
"edit_topsites_pin_button": "Fastgør denne webside",
|
||||
"edit_topsites_unpin_button": "Frigør denne webside",
|
||||
"edit_topsites_dismiss_button": "Afvis denne webside",
|
||||
"edit_topsites_add_button": "Tilføj",
|
||||
"edit_topsites_add_button_tooltip": "Tilføj ny webside",
|
||||
"pocket_feedback_header": "Det bedste fra nettet, udvalgt af mere end 25 millioner mennesker."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name}-Suche",
|
||||
"search_web_placeholder": "Das Web durchsuchen",
|
||||
"search_settings": "Sucheinstellungen ändern",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Feedback senden",
|
||||
"section_info_privacy_notice": "Datenschutzhinweis",
|
||||
"section_disclaimer_topstories": "Die interessanten Geschichten im Internet, ausgewählt nach Ihrem Geschmack. Von Pocket, jetzt Teil von Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Erfahren Sie, wie es funktioniert.",
|
||||
"section_disclaimer_topstories_buttontext": "Ok, verstanden",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} m",
|
||||
"time_label_hour": "{number} h",
|
||||
"time_label_day": "{number} t",
|
||||
"prefs_home_header": "Inhalte des Firefox-Startbildschirms",
|
||||
"prefs_home_description": "Wählen Sie, welche Inhalte auf Ihrem Firefox-Startbildschirm angezeigt werden sollen.",
|
||||
"prefs_restore_defaults_button": "Standard wiederherstellen",
|
||||
"prefs_section_rows_option": "{num} Zeile;{num} Zeilen",
|
||||
"prefs_search_header": "Internetsuche",
|
||||
"prefs_topsites_description": "Die von die Ihnen am meisten besuchten Websites",
|
||||
"prefs_topstories_description": "Qualitativ hochwertige Inhalte, die Sie sonst verpassen",
|
||||
"prefs_topstories_show_sponsored_label": "Gesponserte Geschichten von {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "Weitere Informationen",
|
||||
"prefs_highlights_description": "Eine Auswahl von Websites, die Sie gespeichert oder besucht haben",
|
||||
"prefs_snippets_description": "Neuigkeiten von Mozilla und Firefox",
|
||||
"settings_pane_button_label": "Einstellungen für neue Tabs anpassen",
|
||||
"settings_pane_header": "Einstellungen für neue Tabs",
|
||||
"settings_pane_body2": "Wählen Sie aus, was auf dieser Seite angezeigt wird.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Schneller Zugriff auf Ihre meistbesuchten Websites.",
|
||||
"settings_pane_topsites_options_showmore": "Zwei Reihen anzeigen",
|
||||
"settings_pane_bookmarks_header": "Neue Lesezeichen",
|
||||
"settings_pane_bookmarks_body": "Ihre neu erstellten Lesezeichen ganz bequem an einem Ort.",
|
||||
"settings_pane_visit_again_header": "Erneut besuchen",
|
||||
"settings_pane_visit_again_body": "Firefox zeigt Ihnen Teile Ihrer Surf-Chronik, die Sie sich vielleicht merken oder erneut besuchen möchten.",
|
||||
"settings_pane_highlights_header": "Überblick",
|
||||
"settings_pane_highlights_body2": "Finden Sie schnell wieder zu den wichtigen Seiten zurück, die Sie kürzlich besucht oder als Lesezeichen gespeichert haben.",
|
||||
"settings_pane_highlights_options_bookmarks": "Lesezeichen",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Fertig",
|
||||
"settings_pane_topstories_options_sponsored": "Gesponserte Geschichten anzeigen",
|
||||
"edit_topsites_button_text": "Bearbeiten",
|
||||
"edit_topsites_button_label": "Anpassen der wichtigen Seiten",
|
||||
"edit_topsites_showmore_button": "Mehr anzeigen",
|
||||
"edit_topsites_showless_button": "Weniger anzeigen",
|
||||
"edit_topsites_done_button": "Fertig",
|
||||
"edit_topsites_pin_button": "Website immer in aktueller Position anzeigen",
|
||||
"edit_topsites_unpin_button": "Diese Website ablösen",
|
||||
"edit_topsites_edit_button": "Diese Website bearbeiten",
|
||||
"edit_topsites_dismiss_button": "Website entfernen",
|
||||
"edit_topsites_add_button": "Hinzufügen",
|
||||
"topsites_form_add_header": "Neue wichtige Seite",
|
||||
"topsites_form_edit_header": "Wichtige Seite bearbeiten",
|
||||
"topsites_form_title_label": "Titel",
|
||||
"topsites_form_title_placeholder": "Name eingeben",
|
||||
"topsites_form_url_label": "Adresse",
|
||||
"topsites_form_image_url_label": "URL von benutzerdefinierter Grafik",
|
||||
"topsites_form_url_placeholder": "Eine Adresse eingeben oder einfügen",
|
||||
"topsites_form_use_image_link": "Eine benutzerdefinierte Grafik verwenden…",
|
||||
"topsites_form_preview_button": "Vorschau",
|
||||
"topsites_form_add_button": "Hinzufügen",
|
||||
"topsites_form_save_button": "Speichern",
|
||||
"topsites_form_cancel_button": "Abbrechen",
|
||||
"topsites_form_url_validation": "Gültige URL erforderlich",
|
||||
"topsites_form_image_validation": "Grafik konnte nicht geladen werden. Verwenden Sie eine andere URL.",
|
||||
"pocket_read_more": "Beliebte Themen:",
|
||||
"pocket_read_even_more": "Weitere Nachrichten ansehen",
|
||||
"pocket_feedback_header": "Das Beste aus dem Web, zusammengetragen von 25 Millionen Menschen.",
|
||||
"pocket_description": "Entdecken Sie qualitativ hochwertige Inhalte mithilfe von Pocket (jetzt Teil von Mozilla), die Sie ansonsten verpassen würden.",
|
||||
"highlights_empty_state": "Surfen Sie los und wir zeigen Ihnen hier einige der interessanten Artikel, Videos und anderen Seiten, die Sie kürzlich besucht oder als Lesezeichen gespeichert haben.",
|
||||
"topstories_empty_state": "Jetzt kennen Sie die Neuigkeiten. Schauen Sie später wieder vorbei, um neue Informationen von {provider} zu erhalten. Können Sie nicht warten? Wählen Sie ein beliebtes Thema und lesen Sie weitere interessante Geschichten aus dem Internet.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Wichtige Seite hinzufügen",
|
||||
"section_menu_action_move_up": "Nach oben schieben",
|
||||
"section_menu_action_move_down": "Nach unten schieben",
|
||||
"section_menu_action_privacy_notice": "Datenschutzhinweis"
|
||||
"section_menu_action_privacy_notice": "Datenschutzhinweis",
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Datenschutzhinweis",
|
||||
"settings_pane_bookmarks_body": "Ihre neu erstellten Lesezeichen ganz bequem an einem Ort.",
|
||||
"settings_pane_visit_again_body": "Firefox zeigt Ihnen Teile Ihrer Surf-Chronik, die Sie sich vielleicht merken oder erneut besuchen möchten.",
|
||||
"edit_topsites_button_label": "Anpassen der wichtigen Seiten",
|
||||
"edit_topsites_showmore_button": "Mehr anzeigen",
|
||||
"edit_topsites_showless_button": "Weniger anzeigen",
|
||||
"edit_topsites_done_button": "Fertig",
|
||||
"edit_topsites_pin_button": "Website immer in aktueller Position anzeigen",
|
||||
"edit_topsites_unpin_button": "Diese Website ablösen",
|
||||
"edit_topsites_dismiss_button": "Website entfernen",
|
||||
"edit_topsites_add_button": "Hinzufügen",
|
||||
"pocket_feedback_header": "Das Beste aus dem Web, zusammengetragen von 25 Millionen Menschen."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Z {search_engine_name} pytaś",
|
||||
"search_web_placeholder": "Web pśepytaś",
|
||||
"search_settings": "Pytańske nastajenja změniś",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Komentar pósłaś",
|
||||
"section_info_privacy_notice": "Powěźeńka priwatnosći",
|
||||
"section_disclaimer_topstories": "Nejzajmnjejše tšojenja we webje, wubrane na zakłaźe togo, což sćo cytał. Z Pocket, něnto źěl Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Zgóńśo, kak to funkcioněrujo.",
|
||||
"section_disclaimer_topstories_buttontext": "W pórěźe, som zrozměł",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} m",
|
||||
"time_label_hour": "{number} h",
|
||||
"time_label_day": "{number} d",
|
||||
"prefs_home_header": "Wopśimjeśe startowego boka Firefox",
|
||||
"prefs_home_description": "Wubjeŕśo, kótare wopśimjeśe cośo na swójej startowej wobrazowce Firefox měś.",
|
||||
"prefs_restore_defaults_button": "Standard wótnowiś",
|
||||
"prefs_section_rows_option": "{num} smužka;{num} smužce;{num}smužki;{num} smužkow",
|
||||
"prefs_search_header": "Webpytanje",
|
||||
"prefs_topsites_description": "Sedła, ku kótarymž se nejcesćej woglědujośo",
|
||||
"prefs_topstories_description": "Wopšimjeśe wusokeje kwality, kótarež howac snaź zapasośo",
|
||||
"prefs_topstories_show_sponsored_label": "Sponsorowane tšojenja wót {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "Dalšne informacije",
|
||||
"prefs_highlights_description": "Wuběrk websedłow, kótarež sćo składował abo se woglědał",
|
||||
"prefs_snippets_description": "Aktualizacije wót Mozilla a Firefox",
|
||||
"settings_pane_button_label": "Bok wašogo nowego rejtarka pśiměriś",
|
||||
"settings_pane_header": "Nastajenja nowego rejtarka składowaś",
|
||||
"settings_pane_body2": "Wubjeŕśo, což se na toś tom boku pokazujo.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Wócyńśo websedła, kótarež sćo se nejcesćej woglědał.",
|
||||
"settings_pane_topsites_options_showmore": "Dwě smužki pokazaś",
|
||||
"settings_pane_bookmarks_header": "Nejnowše cytańske znamjenja",
|
||||
"settings_pane_bookmarks_body": "Waše nowo załožone cytańske znamjenja ned k ruce.",
|
||||
"settings_pane_visit_again_header": "Hyšći raz se woglědaś",
|
||||
"settings_pane_visit_again_body": "Firefox wam źěle wašeje pśeglědowańskeje historije pokazaś, kótarež cośo se snaź spomnjeś abo na kótarež cośo slědk pśiś.",
|
||||
"settings_pane_highlights_header": "Wjerški",
|
||||
"settings_pane_highlights_body2": "Namakajśo swóju drogu slědk k zajmnym bokam, kótarež sćo se njedawno woglědał abo ako cytańske znamjenja składł.",
|
||||
"settings_pane_highlights_options_bookmarks": "Cytańske znamjenja",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Gótowo",
|
||||
"settings_pane_topstories_options_sponsored": "Sponsorowane tšojenja pokazaś",
|
||||
"edit_topsites_button_text": "Wobźěłaś",
|
||||
"edit_topsites_button_label": "Pśiměrśo wótrězk swójich nejcesćej woglědanych sedłow",
|
||||
"edit_topsites_showmore_button": "Wěcej pokazaś",
|
||||
"edit_topsites_showless_button": "Mjenjej pokazaś",
|
||||
"edit_topsites_done_button": "Gótowo",
|
||||
"edit_topsites_pin_button": "Sedło pśipěś",
|
||||
"edit_topsites_unpin_button": "Toś to sedło wótpěś",
|
||||
"edit_topsites_edit_button": "Toś to sedło wobźěłaś",
|
||||
"edit_topsites_dismiss_button": "Sedło zachyśiś",
|
||||
"edit_topsites_add_button": "Pśidaś",
|
||||
"topsites_form_add_header": "Nowe nejcesćej woglědane sedło",
|
||||
"topsites_form_edit_header": "Nejcesćej woglědane sedło wobźěłaś",
|
||||
"topsites_form_title_label": "Titel",
|
||||
"topsites_form_title_placeholder": "Titel zapódaś",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL swójskego wobraza",
|
||||
"topsites_form_url_placeholder": "URL zapódaś abo zasajźiś",
|
||||
"topsites_form_use_image_link": "Swójski wobraz wužywaś…",
|
||||
"topsites_form_preview_button": "Pśeglěd",
|
||||
"topsites_form_add_button": "Pśidaś",
|
||||
"topsites_form_save_button": "Składowaś",
|
||||
"topsites_form_cancel_button": "Pśetergnuś",
|
||||
"topsites_form_url_validation": "Płaśiwy URL trěbny",
|
||||
"topsites_form_image_validation": "Wobraz njedajo se zacytaś. Wopytajśo drugi URL.",
|
||||
"pocket_read_more": "Woblubowane temy:",
|
||||
"pocket_read_even_more": "Dalšne powěźeńki se woglědaś",
|
||||
"pocket_feedback_header": "Nejlěpše z weba, zezběrane wót wěcej ako 25 milionow luźi.",
|
||||
"pocket_description": "Namakajśo wopśimjeśe wusokeje kwality, kótarež by hować wjelgin felowało, z pomocu Pocket, kótaryž jo něnto źěl Mozilla.",
|
||||
"highlights_empty_state": "Zachopśo pśeglědowaś, a pokažomy někotare wjelicne nastawki, wideo a druge boki, kótarež sćo se njedawno woglědał abo how ako cytańske znamjenja składował.",
|
||||
"topstories_empty_state": "To jo nachylu wšykno. Wrośćo se pózdźej wjelicnych tšojeńkow dla wót {provider}. Njamóžośo cakaś? Wubjeŕśo woblubowanu temu, aby dalšne wjelicne tšojeńka we webje namakał.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Woblubowane sedło pśidaś",
|
||||
"section_menu_action_move_up": "Górjej",
|
||||
"section_menu_action_move_down": "Dołoj",
|
||||
"section_menu_action_privacy_notice": "Powěźeńka priwatnosći"
|
||||
"section_menu_action_privacy_notice": "Powěźeńka priwatnosći",
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Powěźeńka priwatnosći",
|
||||
"settings_pane_bookmarks_body": "Waše nowo załožone cytańske znamjenja ned k ruce.",
|
||||
"settings_pane_visit_again_body": "Firefox wam źěle wašeje pśeglědowańskeje historije pokazaś, kótarež cośo se snaź spomnjeś abo na kótarež cośo slědk pśiś.",
|
||||
"edit_topsites_button_label": "Pśiměrśo wótrězk swójich nejcesćej woglědanych sedłow",
|
||||
"edit_topsites_showmore_button": "Wěcej pokazaś",
|
||||
"edit_topsites_showless_button": "Mjenjej pokazaś",
|
||||
"edit_topsites_done_button": "Gótowo",
|
||||
"edit_topsites_pin_button": "Sedło pśipěś",
|
||||
"edit_topsites_unpin_button": "Toś to sedło wótpěś",
|
||||
"edit_topsites_dismiss_button": "Sedło zachyśiś",
|
||||
"edit_topsites_add_button": "Pśidaś",
|
||||
"pocket_feedback_header": "Nejlěpše z weba, zezběrane wót wěcej ako 25 milionow luźi."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Αναζήτηση {search_engine_name}",
|
||||
"search_web_placeholder": "Αναζήτηση στον ιστό",
|
||||
"search_settings": "Αλλαγή ρυθμίσεων αναζήτησης",
|
||||
"section_info_option": "Πληροφορίες",
|
||||
"section_info_send_feedback": "Αποστολή σχολίων",
|
||||
"section_info_privacy_notice": "Σημείωση απορρήτου",
|
||||
"section_disclaimer_topstories": "Οι πιο ενδιαφέρουσες ιστορίες στο διαδίκτυο, επιλεγμένες βάσει όσων διαβάζετε. Από το Pocket, πλέον μέλος της Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Μάθετε πώς λειτουργεί.",
|
||||
"section_disclaimer_topstories_buttontext": "Εντάξει, το 'πιασα",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}λ",
|
||||
"time_label_hour": "{number}ώ",
|
||||
"time_label_day": "{number}η",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Προσαρμογή της σελίδας Νέας Καρτέλας",
|
||||
"settings_pane_header": "Προτιμήσεις νέας καρτέλας",
|
||||
"settings_pane_body2": "Επιλέξτε τι θα βλέπετε σε αυτή τη σελίδα.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Πρόσβαση στις ιστοσελίδες που επισκέπτεστε περισσότερο.",
|
||||
"settings_pane_topsites_options_showmore": "Εμφάνιση δύο σειρών",
|
||||
"settings_pane_bookmarks_header": "Πρόσφατοι σελιδοδείκτες",
|
||||
"settings_pane_bookmarks_body": "Οι νέοι σας σελιδοδείκτες σε μια βολική τοποθεσία.",
|
||||
"settings_pane_visit_again_header": "Επίσκεψη ξανά",
|
||||
"settings_pane_visit_again_body": "Το Firefox θα σάς δείξει μέρη του ιστορικού περιήγησής σας που ίσως θέλετε να θυμηθείτε ή να επισκεφθείτε ξανά.",
|
||||
"settings_pane_highlights_header": "Κορυφαίες στιγμές",
|
||||
"settings_pane_highlights_body2": "Βρείτε ξανά κάτι ενδιαφέρον που έχετε επισκεφθεί πρόσφατα ή έχετε αποθηκεύσει στους σελιδοδείκτες σας.",
|
||||
"settings_pane_highlights_options_bookmarks": "Σελιδοδείκτες",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Τέλος",
|
||||
"settings_pane_topstories_options_sponsored": "Εμφάνιση χορηγούμενων ιστοριών",
|
||||
"edit_topsites_button_text": "Επεξεργασία",
|
||||
"edit_topsites_button_label": "Προσαρμογή της ενότητας Κορυφαίες Ιστοσελίδες",
|
||||
"edit_topsites_showmore_button": "Εμφάνιση περισσότερων",
|
||||
"edit_topsites_showless_button": "Εμφάνιση λιγότερων",
|
||||
"edit_topsites_done_button": "Τέλος",
|
||||
"edit_topsites_pin_button": "Καρφίτσωμα ιστοσελίδας",
|
||||
"edit_topsites_unpin_button": "Ξεκαρφίτσωμα ιστοσελίδας",
|
||||
"edit_topsites_edit_button": "Επεξεργασία ιστοσελίδας",
|
||||
"edit_topsites_dismiss_button": "Απόρριψη ιστοσελίδας",
|
||||
"edit_topsites_add_button": "Προσθήκη",
|
||||
"topsites_form_add_header": "Νέα κορυφαία ιστοσελίδα",
|
||||
"topsites_form_edit_header": "Επεξεργασία κορυφαίας ιστοσελίδας",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Εισάγετε έναν τίτλο",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Πληκτρολόγηση ή επικόλληση ενός URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Προσθήκη",
|
||||
"topsites_form_save_button": "Αποθήκευση",
|
||||
"topsites_form_cancel_button": "Ακύρωση",
|
||||
"topsites_form_url_validation": "Απαιτείται έγκυρο URL",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Δημοφιλή θέματα:",
|
||||
"pocket_read_even_more": "Προβολή περισσότερων ιστοριών",
|
||||
"pocket_feedback_header": "Τα καλύτερα του διαδικτύου, παρέχονται από πάνω από 25 εκατομμύρια άτομα.",
|
||||
"pocket_description": "Ανακαλύψτε περιεχόμενο υψηλής ακρίβειας που ίσως να χάνατε διαφορετικά, με τη βοήθεια του Pocket, μέλους της Mozilla.",
|
||||
"highlights_empty_state": "Ξεκινήστε την περιήγηση και θα σάς δείξουμε μερικά υπέροχα άρθρα, βίντεο και άλλες σελίδες που έχετε επισκεφθεί πρόσφατα ή έχετε προσθέσει στους σελιδοδείκτες σας.",
|
||||
"topstories_empty_state": "Δεν υπάρχει κάτι νεότερο. Ελέγξτε αργότερα για περισσότερες ιστορίες από τον πάροχο {provider}. Δεν μπορείτε να περιμένετε; Διαλέξτε κάποιο από τα δημοφιλή θέματα και ανακαλύψτε ενδιαφέρουσες ιστορίες από όλο τον Ιστό.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Προσθήκη κορυφαίας ιστοσελίδας"
|
||||
"section_info_option": "Πληροφορίες",
|
||||
"section_info_privacy_notice": "Σημείωση απορρήτου",
|
||||
"settings_pane_bookmarks_body": "Οι νέοι σας σελιδοδείκτες σε μια βολική τοποθεσία.",
|
||||
"settings_pane_visit_again_body": "Το Firefox θα σάς δείξει μέρη του ιστορικού περιήγησής σας που ίσως θέλετε να θυμηθείτε ή να επισκεφθείτε ξανά.",
|
||||
"edit_topsites_button_label": "Προσαρμογή της ενότητας Κορυφαίες Ιστοσελίδες",
|
||||
"edit_topsites_showmore_button": "Εμφάνιση περισσότερων",
|
||||
"edit_topsites_showless_button": "Εμφάνιση λιγότερων",
|
||||
"edit_topsites_done_button": "Τέλος",
|
||||
"edit_topsites_pin_button": "Καρφίτσωμα ιστοσελίδας",
|
||||
"edit_topsites_unpin_button": "Ξεκαρφίτσωμα ιστοσελίδας",
|
||||
"edit_topsites_dismiss_button": "Απόρριψη ιστοσελίδας",
|
||||
"edit_topsites_add_button": "Προσθήκη",
|
||||
"edit_topsites_add_button_tooltip": "Προσθήκη κορυφαίας ιστοσελίδας",
|
||||
"pocket_feedback_header": "Τα καλύτερα του διαδικτύου, παρέχονται από πάνω από 25 εκατομμύρια άτομα."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} Search",
|
||||
"search_web_placeholder": "Search the Web",
|
||||
"search_settings": "Change Search Settings",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Send Feedback",
|
||||
"section_info_privacy_notice": "Privacy Notice",
|
||||
"section_disclaimer_topstories": "The most interesting stories on the web, selected based on what you read. From Pocket, now part of Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Learn how it works.",
|
||||
"section_disclaimer_topstories_buttontext": "Okay, got it",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Customise your New Tab page",
|
||||
"settings_pane_header": "New Tab Preferences",
|
||||
"settings_pane_body2": "Choose what you see on this page.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Access the web sites you visit most.",
|
||||
"settings_pane_topsites_options_showmore": "Show two rows",
|
||||
"settings_pane_bookmarks_header": "Recent Bookmarks",
|
||||
"settings_pane_bookmarks_body": "Your newly created bookmarks in one handy location.",
|
||||
"settings_pane_visit_again_header": "Visit Again",
|
||||
"settings_pane_visit_again_body": "Firefox will show you parts of your browsing history that you might want to remember or get back to.",
|
||||
"settings_pane_highlights_header": "Highlights",
|
||||
"settings_pane_highlights_body2": "Find your way back to interesting things you’ve recently visited or bookmarked.",
|
||||
"settings_pane_highlights_options_bookmarks": "Bookmarks",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Done",
|
||||
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
|
||||
"edit_topsites_button_text": "Edit",
|
||||
"edit_topsites_button_label": "Customise your Top Sites section",
|
||||
"edit_topsites_showmore_button": "Show more",
|
||||
"edit_topsites_showless_button": "Show less",
|
||||
"edit_topsites_done_button": "Done",
|
||||
"edit_topsites_pin_button": "Pin this site",
|
||||
"edit_topsites_unpin_button": "Unpin this site",
|
||||
"edit_topsites_edit_button": "Edit this site",
|
||||
"edit_topsites_dismiss_button": "Dismiss this site",
|
||||
"edit_topsites_add_button": "Add",
|
||||
"topsites_form_add_header": "Top Sites",
|
||||
"topsites_form_edit_header": "Edit Top Site",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Enter a title",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Type or paste a URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Add",
|
||||
"topsites_form_save_button": "Save",
|
||||
"topsites_form_cancel_button": "Cancel",
|
||||
"topsites_form_url_validation": "Valid URL required",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Popular Topics:",
|
||||
"pocket_read_even_more": "View More Stories",
|
||||
"pocket_feedback_header": "The best of the web, curated by over 25 million people.",
|
||||
"pocket_description": "Discover high-quality content you might otherwise miss, with help from Pocket, now part of Mozilla.",
|
||||
"highlights_empty_state": "Start browsing, and we’ll show some of the great articles, videos, and other pages you’ve recently visited or bookmarked here.",
|
||||
"topstories_empty_state": "You’ve caught up. Check back later for more top stories from {provider}. Can’t wait? Select a popular topic to find more great stories from around the web.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Privacy Notice",
|
||||
"settings_pane_bookmarks_body": "Your newly created bookmarks in one handy location.",
|
||||
"settings_pane_visit_again_body": "Firefox will show you parts of your browsing history that you might want to remember or get back to.",
|
||||
"edit_topsites_button_label": "Customise your Top Sites section",
|
||||
"edit_topsites_showmore_button": "Show more",
|
||||
"edit_topsites_showless_button": "Show less",
|
||||
"edit_topsites_done_button": "Done",
|
||||
"edit_topsites_pin_button": "Pin this site",
|
||||
"edit_topsites_unpin_button": "Unpin this site",
|
||||
"edit_topsites_dismiss_button": "Dismiss this site",
|
||||
"edit_topsites_add_button": "Add",
|
||||
"pocket_feedback_header": "The best of the web, curated by over 25 million people."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} Search",
|
||||
"search_web_placeholder": "Search the Web",
|
||||
"search_settings": "Change Search Settings",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Send Feedback",
|
||||
"section_info_privacy_notice": "Privacy Notice",
|
||||
"section_disclaimer_topstories": "The most interesting stories on the web, selected based on what you read. From Pocket, now part of Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Learn how it works.",
|
||||
"section_disclaimer_topstories_buttontext": "Okay, got it",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Customize your New Tab page",
|
||||
"settings_pane_header": "New Tab Preferences",
|
||||
"settings_pane_body2": "Choose what you see on this page.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Access the websites you visit most.",
|
||||
"settings_pane_topsites_options_showmore": "Show two rows",
|
||||
"settings_pane_bookmarks_header": "Recent Bookmarks",
|
||||
"settings_pane_bookmarks_body": "Your newly created bookmarks in one handy location.",
|
||||
"settings_pane_visit_again_header": "Visit Again",
|
||||
"settings_pane_visit_again_body": "Firefox will show you parts of your browsing history that you might want to remember or get back to.",
|
||||
"settings_pane_highlights_header": "Highlights",
|
||||
"settings_pane_highlights_body2": "Find your way back to interesting things you’ve recently visited or bookmarked.",
|
||||
"settings_pane_highlights_options_bookmarks": "Bookmarks",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Done",
|
||||
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
|
||||
"edit_topsites_button_text": "Edit",
|
||||
"edit_topsites_button_label": "Customize your Top Sites section",
|
||||
"edit_topsites_showmore_button": "Show More",
|
||||
"edit_topsites_showless_button": "Show Fewer",
|
||||
"edit_topsites_done_button": "Done",
|
||||
"edit_topsites_pin_button": "Pin this site",
|
||||
"edit_topsites_unpin_button": "Unpin this site",
|
||||
"edit_topsites_edit_button": "Edit this site",
|
||||
"edit_topsites_dismiss_button": "Dismiss this site",
|
||||
"edit_topsites_add_button": "Add",
|
||||
"topsites_form_add_header": "New Top Site",
|
||||
"topsites_form_edit_header": "Edit Top Site",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Enter a title",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Type or paste a URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Add",
|
||||
"topsites_form_save_button": "Save",
|
||||
"topsites_form_cancel_button": "Cancel",
|
||||
"topsites_form_url_validation": "Valid URL required",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Popular Topics:",
|
||||
"pocket_read_even_more": "View More Stories",
|
||||
"pocket_feedback_header": "The best of the web, curated by over 25 million people.",
|
||||
"pocket_description": "Discover high-quality content you might otherwise miss, with help from Pocket, now part of Mozilla.",
|
||||
"highlights_empty_state": "Start browsing, and we’ll show some of the great articles, videos, and other pages you’ve recently visited or bookmarked here.",
|
||||
"topstories_empty_state": "You’ve caught up. Check back later for more top stories from {provider}. Can’t wait? Select a popular topic to find more great stories from around the web.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Privacy Notice",
|
||||
"settings_pane_bookmarks_body": "Your newly created bookmarks in one handy location.",
|
||||
"settings_pane_visit_again_body": "Firefox will show you parts of your browsing history that you might want to remember or get back to.",
|
||||
"edit_topsites_button_label": "Customise your Top Sites section",
|
||||
"edit_topsites_showmore_button": "Show more",
|
||||
"edit_topsites_showless_button": "Show less",
|
||||
"edit_topsites_done_button": "Done",
|
||||
"edit_topsites_pin_button": "Pin this site",
|
||||
"edit_topsites_unpin_button": "Unpin this site",
|
||||
"edit_topsites_dismiss_button": "Dismiss this site",
|
||||
"edit_topsites_add_button": "Add",
|
||||
"pocket_feedback_header": "The best of the web, curated by over 25 million people."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Serĉo de {search_engine_name}",
|
||||
"search_web_placeholder": "Serĉi la reton",
|
||||
"search_settings": "Modifi serĉajn agordojn",
|
||||
"section_info_option": "Informo",
|
||||
"section_info_send_feedback": "Sendi komentojn",
|
||||
"section_info_privacy_notice": "Rimarko pri privateco",
|
||||
"section_disclaimer_topstories": "La plej interesaj artikoloj en la reto, elektitaj surbaze de tio, kion vi legas. Hecho por Pocket, kiu estas nun parto de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Vidi kiel tio funkcias.",
|
||||
"section_disclaimer_topstories_buttontext": "En ordo, mi komprenis",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}t",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Personecigi la paĝon por novaj langetoj",
|
||||
"settings_pane_header": "Preferoj pri nova langeto",
|
||||
"settings_pane_body2": "Elektu tion, kion vi vidas en tiu ĉi paĝo.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Aliri la plej ofte vizitajn retejojn.",
|
||||
"settings_pane_topsites_options_showmore": "Montri en du vicoj",
|
||||
"settings_pane_bookmarks_header": "Ĵusaj legosignoj",
|
||||
"settings_pane_bookmarks_body": "Viaj ĵus kreitaj legosignoj, ĉemane.",
|
||||
"settings_pane_visit_again_header": "Viziti denove",
|
||||
"settings_pane_visit_again_body": "Firefox montros al vi partojn de via retuma historio, kiujn vi eble volas memori aŭ viziti denove.",
|
||||
"settings_pane_highlights_header": "Elstaraĵoj",
|
||||
"settings_pane_highlights_body2": "Retrovu la vojon reen al interesaj aferoj, kiujn vi antaŭ nelonge vizitis aŭ por kiuj vi aldonis legosignon.",
|
||||
"settings_pane_highlights_options_bookmarks": "Legosignoj",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Farita",
|
||||
"settings_pane_topstories_options_sponsored": "Montri patronitajn artikolojn",
|
||||
"edit_topsites_button_text": "Redakti",
|
||||
"edit_topsites_button_label": "Personecigi la sekcion 'plej vizititaj'",
|
||||
"edit_topsites_showmore_button": "Montri pli",
|
||||
"edit_topsites_showless_button": "Montri malpli",
|
||||
"edit_topsites_done_button": "Farita",
|
||||
"edit_topsites_pin_button": "Alpingli ĉi tiun retejon",
|
||||
"edit_topsites_unpin_button": "Depingli tiun ĉi retejon",
|
||||
"edit_topsites_edit_button": "Redakti ĉi tiun retejon",
|
||||
"edit_topsites_dismiss_button": "Ignori ĉi tiun retejon",
|
||||
"edit_topsites_add_button": "Aldoni",
|
||||
"topsites_form_add_header": "Nova ofta retejo",
|
||||
"topsites_form_edit_header": "Redakti oftan retejon",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Tajpu titolon",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Tajpu aŭ alguu retadreson",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Aldoni",
|
||||
"topsites_form_save_button": "Konservi",
|
||||
"topsites_form_cancel_button": "Nuligi",
|
||||
"topsites_form_url_validation": "Valida retadreso estas postulata",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Ĉefaj temoj:",
|
||||
"pocket_read_even_more": "Montri pli da artikoloj",
|
||||
"pocket_feedback_header": "La plejbono el la Teksaĵo, reviziita de pli ol 25 milionoj da personoj.",
|
||||
"pocket_description": "Malkovru altkvalitan enhavon, kiun vi povus aliokaze neniam trovi, per helpo de Pocket, kiu nun estas parto de Mozilla.",
|
||||
"highlights_empty_state": "Komencu retumi kaj ĉi tie ni montros al vi kelkajn el la plej bonaj artikoloj, filmetoj kaj aliaj paĝoj, kiujn vi antaŭ nelonge vizits aŭ por kiuj vi aldonis legosignon.",
|
||||
"topstories_empty_state": "Vi legis ĉion. Kontrolu denove poste ĉu estas pli da novaĵon de {provider}. Ĉu vi ne povas atendi? Elektu popularan temon por trovi pli da interesaj artikoloj en la tuta teksaĵo.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Aldoni oftan retejon"
|
||||
"section_info_option": "Informo",
|
||||
"section_info_privacy_notice": "Rimarko pri privateco",
|
||||
"settings_pane_bookmarks_body": "Viaj ĵus kreitaj legosignoj, ĉemane.",
|
||||
"settings_pane_visit_again_body": "Firefox montros al vi partojn de via retuma historio, kiujn vi eble volas memori aŭ viziti denove.",
|
||||
"edit_topsites_button_label": "Personecigi la sekcion 'plej vizititaj'",
|
||||
"edit_topsites_showmore_button": "Montri pli",
|
||||
"edit_topsites_showless_button": "Montri malpli",
|
||||
"edit_topsites_done_button": "Farita",
|
||||
"edit_topsites_pin_button": "Alpingli ĉi tiun retejon",
|
||||
"edit_topsites_unpin_button": "Depingli tiun ĉi retejon",
|
||||
"edit_topsites_dismiss_button": "Ignori ĉi tiun retejon",
|
||||
"edit_topsites_add_button": "Aldoni",
|
||||
"edit_topsites_add_button_tooltip": "Aldoni oftan retejon",
|
||||
"pocket_feedback_header": "La plejbono el la Teksaĵo, reviziita de pli ol 25 milionoj da personoj."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,7 +11,7 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Todavía no hay ningún marcador.",
|
||||
"header_stories_from": "de",
|
||||
"context_menu_button_sr": "Abrir el menú para {title}",
|
||||
"section_context_menu_button_sr": "Abrir la sección menú contextual",
|
||||
"section_context_menu_button_sr": "Abrir el menú contextual de la sección",
|
||||
"type_label_visited": "Visitados",
|
||||
"type_label_bookmarked": "Marcados",
|
||||
"type_label_synced": "Sincronizados de otro dispositivo",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "¿Está seguro de querer borrar cualquier instancia de esta página del historial?",
|
||||
"confirm_history_delete_notice_p2": "Esta acción no puede deshacerse.",
|
||||
"menu_action_save_to_pocket": "Guardar en Pocket",
|
||||
"menu_action_delete_pocket": "Eliminar de Pocket",
|
||||
"menu_action_delete_pocket": "Borrar de Pocket",
|
||||
"menu_action_archive_pocket": "Archivar en Pocket",
|
||||
"search_for_something_with": "Buscar {search_term} con:",
|
||||
"search_button": "Buscar",
|
||||
"search_header": "Buscar con {search_engine_name}",
|
||||
"search_web_placeholder": "Buscar en la web",
|
||||
"search_settings": "Cambiar opciones de búsqueda",
|
||||
"section_info_option": "Información",
|
||||
"section_info_send_feedback": "Enviar opinión",
|
||||
"section_info_privacy_notice": "Nota de privacidad",
|
||||
"section_disclaimer_topstories": "Las historias más interesantes en la web, seleccionadas en base a lo que lees. Gracias a Pocket, ahora parte de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Aprendé cómo funciona.",
|
||||
"section_disclaimer_topstories_buttontext": "Listo, lo entendí",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Contenido de la página de inicio de Firefox",
|
||||
"prefs_home_description": "Elija qué contenido desea en la Pantalla de inicio de Firefox.",
|
||||
"prefs_restore_defaults_button": "Restaurar Predeterminados",
|
||||
"prefs_section_rows_option": "fila de {num}; filas de {num}",
|
||||
"prefs_search_header": "Búsqueda en la web",
|
||||
"prefs_topsites_description": "Los sitios que más visita",
|
||||
"prefs_topstories_description": "Contenido de alta calidad que de lo contrario podría pasar por alto",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Historias patrocinadas",
|
||||
"prefs_topstories_sponsored_learn_more": "Conocer más",
|
||||
"prefs_highlights_description": "Una selección de sitios que guardó o visitó",
|
||||
"prefs_snippets_description": "Actualizaciones de Mozilla y Firefox",
|
||||
"settings_pane_button_label": "Personalizar la página nueva pestaña",
|
||||
"settings_pane_header": "Preferencia de nueva pestaña",
|
||||
"settings_pane_body2": "Seleccionar lo que se ve en esta página.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Acceder a los sitios web más visitados.",
|
||||
"settings_pane_topsites_options_showmore": "Mostrar dos filas",
|
||||
"settings_pane_bookmarks_header": "Marcadores recientes",
|
||||
"settings_pane_bookmarks_body": "Los marcadores recién creados en una ubicación cómoda.",
|
||||
"settings_pane_visit_again_header": "Visitar de nuevo",
|
||||
"settings_pane_visit_again_body": "Firefox mostrará partes del historial de navegación que podría querer recordar o volver a visitar.",
|
||||
"settings_pane_highlights_header": "Destacados",
|
||||
"settings_pane_highlights_body2": "Encuentre el camino de vuelta a las páginas interesantes que visitó o que marcó como favorito.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marcadores",
|
||||
|
@ -74,43 +81,51 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Listo",
|
||||
"settings_pane_topstories_options_sponsored": "Mostrar historias patrocinadas",
|
||||
"edit_topsites_button_text": "Editar",
|
||||
"edit_topsites_button_label": "Personalizar la sección de sitios más visitados",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Listo",
|
||||
"edit_topsites_pin_button": "Pegar este sitio",
|
||||
"edit_topsites_unpin_button": "Despegar este sitio",
|
||||
"edit_topsites_edit_button": "Editar este sitio",
|
||||
"edit_topsites_dismiss_button": "Descartar este sitio",
|
||||
"edit_topsites_add_button": "Agregar",
|
||||
"topsites_form_add_header": "Nuevo sitio más visitado",
|
||||
"topsites_form_edit_header": "Editar sitio más visitado",
|
||||
"topsites_form_title_label": "Título",
|
||||
"topsites_form_title_placeholder": "Ingresar un título",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL de Imagen personalizada",
|
||||
"topsites_form_url_placeholder": "Escribir o pegar URL",
|
||||
"topsites_form_use_image_link": "Usar imagen personalizada…",
|
||||
"topsites_form_preview_button": "Vista previa",
|
||||
"topsites_form_add_button": "Agregar",
|
||||
"topsites_form_save_button": "Guardar",
|
||||
"topsites_form_cancel_button": "Cancelar",
|
||||
"topsites_form_url_validation": "Se requiere URL válida",
|
||||
"topsites_form_image_validation": "La imagen no se pudo cargar. Pruebe una URL diferente.",
|
||||
"pocket_read_more": "Tópicos populares:",
|
||||
"pocket_read_even_more": "Ver más historias",
|
||||
"pocket_feedback_header": "Lo mejor de la web, seleccionado por más de 25 millones de personas.",
|
||||
"pocket_description": "Descubrir contenido de alta calidad que se podría perder de otra forma, con la ayuda de Pocket, ahora parte de Mozilla.",
|
||||
"highlights_empty_state": "Comenzá a navegar y te mostraremos algunos de los mejores artículos, videos y otras páginas que hayás visitado o marcado acá.",
|
||||
"topstories_empty_state": "Ya te pusiste al día. Volvé más tarde para más historias de {provider}. ¿No podés esperar? Seleccioná un tema popular para encontrar más historias de todo el mundo.",
|
||||
"manual_migration_explanation2": "Probá Firefox con los marcadores, historial y contraseñas de otro navegador.",
|
||||
"manual_migration_cancel_button": "No gracias",
|
||||
"manual_migration_import_button": "Importar ahora",
|
||||
"error_fallback_default_info": "Lo sentimos, algo salió mal al cargar el contenido.",
|
||||
"error_fallback_default_refresh_suggestion": "Recarga la página e intentálo de nuevo.",
|
||||
"error_fallback_default_info": "Epa, algo salió mal al cargar este contenido.",
|
||||
"error_fallback_default_refresh_suggestion": "Refrescar la página para reintentar.",
|
||||
"section_menu_action_remove_section": "Eliminar sección",
|
||||
"section_menu_action_collapse_section": "Contraer sección",
|
||||
"section_menu_action_collapse_section": "Colapsar sección",
|
||||
"section_menu_action_expand_section": "Expandir sección",
|
||||
"section_menu_action_manage_section": "Gestionar sección",
|
||||
"section_menu_action_add_topsite": "Añadir sitio popular",
|
||||
"section_menu_action_manage_section": "Administrar sección",
|
||||
"section_menu_action_add_topsite": "Agregar Sitio más visitado",
|
||||
"section_menu_action_move_up": "Subir",
|
||||
"section_menu_action_move_down": "Bajar",
|
||||
"section_menu_action_privacy_notice": "Aviso de privacidad",
|
||||
"edit_topsites_add_button_tooltip": "Agregar Sitio más visitado"
|
||||
"section_menu_action_privacy_notice": "Nota de privacidad",
|
||||
"section_info_option": "Información",
|
||||
"section_info_privacy_notice": "Nota de privacidad",
|
||||
"settings_pane_bookmarks_body": "Los marcadores recién creados en una ubicación cómoda.",
|
||||
"settings_pane_visit_again_body": "Firefox mostrará partes del historial de navegación que podría querer recordar o volver a visitar.",
|
||||
"edit_topsites_button_label": "Personalizar la sección de sitios más visitados",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Listo",
|
||||
"edit_topsites_pin_button": "Pegar este sitio",
|
||||
"edit_topsites_unpin_button": "Despegar este sitio",
|
||||
"edit_topsites_dismiss_button": "Descartar este sitio",
|
||||
"edit_topsites_add_button": "Agregar",
|
||||
"pocket_feedback_header": "Lo mejor de la web, seleccionado por más de 25 millones de personas.",
|
||||
"edit_topsites_add_button_tooltip": "Agregar sitio popular"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,7 +11,7 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Todavía no tienes marcadores.",
|
||||
"header_stories_from": "de",
|
||||
"context_menu_button_sr": "Abrir menú contextual para {title}",
|
||||
"section_context_menu_button_sr": "Abrir la sección menú contextual",
|
||||
"section_context_menu_button_sr": "Abrir sección del menú contextual",
|
||||
"type_label_visited": "Visitado",
|
||||
"type_label_bookmarked": "Marcado",
|
||||
"type_label_synced": "Sacado de otro dispositivo",
|
||||
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Búsqueda de {search_engine_name}",
|
||||
"search_web_placeholder": "Buscar en la Web",
|
||||
"search_settings": "Cambiar ajustes de búsqueda",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Enviar comentario",
|
||||
"section_info_privacy_notice": "Aviso de privacidad",
|
||||
"section_disclaimer_topstories": "Las historias más interesantes en la web, seleccionadas en base a lo que tu lees. Por Pocket, ahora parte de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Aprender cómo funciona.",
|
||||
"section_disclaimer_topstories_buttontext": "Ok, ¡ya caché!",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Contenido de la página de inicio de Firefox",
|
||||
"prefs_home_description": "Elige qué contenido quieres en tu pantalla de inicio de Firefox.",
|
||||
"prefs_restore_defaults_button": "Restaurar predeterminados",
|
||||
"prefs_section_rows_option": "{num} fila;{num} filas",
|
||||
"prefs_search_header": "Búsqueda web",
|
||||
"prefs_topsites_description": "Los sitios que más visitas",
|
||||
"prefs_topstories_description": "Contenido de alta calidad que de otra forma te lo perderías",
|
||||
"prefs_topstories_show_sponsored_label": "Historias patrocinadas de {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "Aprender más",
|
||||
"prefs_highlights_description": "Una selección de sitios que guardaste o visitaste",
|
||||
"prefs_snippets_description": "Actualizaciones de Mozilla y Firefox",
|
||||
"settings_pane_button_label": "Personaliza tu página de Nueva pestaña",
|
||||
"settings_pane_header": "Preferencias de Nueva pestaña",
|
||||
"settings_pane_body2": "Elige qué es lo que ves en esta página.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Accede a los sitios que más visitas.",
|
||||
"settings_pane_topsites_options_showmore": "Mostrar dos filas",
|
||||
"settings_pane_bookmarks_header": "Marcadores recientes",
|
||||
"settings_pane_bookmarks_body": "Tus marcadores recién creados en un lugar accesible.",
|
||||
"settings_pane_visit_again_header": "Volver a visitar",
|
||||
"settings_pane_visit_again_body": "Firefox te mostrará partes de tu historial de navegación que podrías querer recordar o volver a visitar.",
|
||||
"settings_pane_highlights_header": "Destacados",
|
||||
"settings_pane_highlights_body2": "Encuentra tu camino de regreso a las cosas interesantes que ya has visitado o marcado.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marcadores",
|
||||
|
@ -74,43 +81,51 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Hecho",
|
||||
"settings_pane_topstories_options_sponsored": "Mostrar historias patrocinadas",
|
||||
"edit_topsites_button_text": "Editar",
|
||||
"edit_topsites_button_label": "Personaliza tu sección de sitios frecuentes",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Hecho",
|
||||
"edit_topsites_pin_button": "Fijar este sitio",
|
||||
"edit_topsites_unpin_button": "Soltar este sitio",
|
||||
"edit_topsites_edit_button": "Editar este sitio",
|
||||
"edit_topsites_dismiss_button": "Sacar este sitio",
|
||||
"edit_topsites_add_button": "Añadir",
|
||||
"topsites_form_add_header": "Nuevo sitio frecuente",
|
||||
"topsites_form_edit_header": "Editar sitio frecuente",
|
||||
"topsites_form_title_label": "Título",
|
||||
"topsites_form_title_placeholder": "Ingresar un título",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL de imagen personalizada",
|
||||
"topsites_form_url_placeholder": "Escribe o pega una URL",
|
||||
"topsites_form_use_image_link": "Utilizar una imagen personalizada…",
|
||||
"topsites_form_preview_button": "Vista previa",
|
||||
"topsites_form_add_button": "Añadir",
|
||||
"topsites_form_save_button": "Guardar",
|
||||
"topsites_form_cancel_button": "Cancelar",
|
||||
"topsites_form_url_validation": "URL válida requerida",
|
||||
"topsites_form_image_validation": "Falló la carga de la imagen. Prueba una URL diferente.",
|
||||
"pocket_read_more": "Temas populares:",
|
||||
"pocket_read_even_more": "Ver más historias",
|
||||
"pocket_feedback_header": "Lo mejor de la web, revisado por más de 25 millones de personas.",
|
||||
"pocket_description": "Descubre contenido de alta calidad que de otra forma te perderías, con la ayuda de Pocket, ahora parte de Mozilla.",
|
||||
"highlights_empty_state": "Empieza a navegar, y nosotros te mostraremos aquí algunos de los mejores artículos, videos y otras páginas que hayas visitado recientemente o marcado.",
|
||||
"topstories_empty_state": "Te has puesto al día. Revisa más tarde para ver más historias de {provider}. ¿No puedes esperar? Selecciona un tema popular para encontrar más historias de todo el mundo.",
|
||||
"manual_migration_explanation2": "Prueba Firefox con los marcadores, historial y contraseñas de otro navegador.",
|
||||
"manual_migration_cancel_button": "No, gracias",
|
||||
"manual_migration_import_button": "Importar ahora",
|
||||
"error_fallback_default_info": "Lo sentimos, algo salió mal al cargar el contenido.",
|
||||
"error_fallback_default_refresh_suggestion": "Recarga la página e intentálo de nuevo.",
|
||||
"error_fallback_default_info": "Chuta, algo se fue a las pailas al cargar este contenido.",
|
||||
"error_fallback_default_refresh_suggestion": "Recarga la página para volver a intentarlo.",
|
||||
"section_menu_action_remove_section": "Eliminar sección",
|
||||
"section_menu_action_collapse_section": "Contraer sección",
|
||||
"section_menu_action_expand_section": "Expandir sección",
|
||||
"section_menu_action_manage_section": "Gestionar sección",
|
||||
"section_menu_action_add_topsite": "Añadir sitio popular",
|
||||
"section_menu_action_add_topsite": "Añadir sitio frecuente",
|
||||
"section_menu_action_move_up": "Subir",
|
||||
"section_menu_action_move_down": "Bajar",
|
||||
"section_menu_action_privacy_notice": "Aviso de privacidad",
|
||||
"edit_topsites_add_button_tooltip": "Añadir sitio frecuente"
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Aviso de privacidad",
|
||||
"settings_pane_bookmarks_body": "Tus marcadores recién creados en un lugar accesible.",
|
||||
"settings_pane_visit_again_body": "Firefox te mostrará partes de tu historial de navegación que podrías querer recordar o volver a visitar.",
|
||||
"edit_topsites_button_label": "Personaliza tu sección de sitios frecuentes",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Hecho",
|
||||
"edit_topsites_pin_button": "Fijar este sitio",
|
||||
"edit_topsites_unpin_button": "Soltar este sitio",
|
||||
"edit_topsites_dismiss_button": "Sacar este sitio",
|
||||
"edit_topsites_add_button": "Añadir",
|
||||
"pocket_feedback_header": "Lo mejor de la web, revisado por más de 25 millones de personas.",
|
||||
"edit_topsites_add_button_tooltip": "Agregar sitio popular"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Búsqueda de {search_engine_name}",
|
||||
"search_web_placeholder": "Buscar en la Web",
|
||||
"search_settings": "Cambiar ajustes de búsqueda",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Enviar comentario",
|
||||
"section_info_privacy_notice": "Aviso de privacidad",
|
||||
"section_disclaimer_topstories": "Las historias más interesantes de la web, seleccionadas en base a lo que lees. Gracias a Pocket , ahora parte de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Aprende cómo funciona.",
|
||||
"section_disclaimer_topstories_buttontext": "Ok, entendido",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Contenido de la página de inicio de Firefox",
|
||||
"prefs_home_description": "Selecciona el contenido que desea en la pantalla de inicio de Firefox.",
|
||||
"prefs_restore_defaults_button": "Restaurar predeterminados",
|
||||
"prefs_section_rows_option": "{num} fila{num} filas",
|
||||
"prefs_search_header": "Búsqueda web",
|
||||
"prefs_topsites_description": "Los sitios que más visita",
|
||||
"prefs_topstories_description": "Contenido de alta calidad que de otra forma se perdería",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Historias patrocinadas",
|
||||
"prefs_topstories_sponsored_learn_more": "Más información",
|
||||
"prefs_highlights_description": "Una selección de sitios que ha guardado o visitado",
|
||||
"prefs_snippets_description": "Actualizaciones de Mozilla y Firefox",
|
||||
"settings_pane_button_label": "Personalizar la página Nueva pestaña",
|
||||
"settings_pane_header": "Preferencias de nueva pestaña",
|
||||
"settings_pane_body2": "Elige lo quieras ver en esta página.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Accede a las páginas que más visitas.",
|
||||
"settings_pane_topsites_options_showmore": "Mostrar dos líneas",
|
||||
"settings_pane_bookmarks_header": "Marcadores recientes",
|
||||
"settings_pane_bookmarks_body": "Tus marcadores recién creados, fácilmente accesibles.",
|
||||
"settings_pane_visit_again_header": "Visitar de nuevo",
|
||||
"settings_pane_visit_again_body": "Firefox te mostrará partes de tu historial de navegación que te gustaría recordar o volver a visitar.",
|
||||
"settings_pane_highlights_header": "Destacados",
|
||||
"settings_pane_highlights_body2": "Vuelve a encontrar todas las cosas interesantes que hayas visitado o marcado recientemente.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marcadores",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Hecho",
|
||||
"settings_pane_topstories_options_sponsored": "Mostrar historias patrocinadas",
|
||||
"edit_topsites_button_text": "Editar",
|
||||
"edit_topsites_button_label": "Personalizar la sección de Sitios populares",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Hecho",
|
||||
"edit_topsites_pin_button": "Fijar este sitio",
|
||||
"edit_topsites_unpin_button": "Eliminar este sitio fijo",
|
||||
"edit_topsites_edit_button": "Editar este sitio",
|
||||
"edit_topsites_dismiss_button": "Olvidar este sitio",
|
||||
"edit_topsites_add_button": "Agregar",
|
||||
"topsites_form_add_header": "Nuevo sitio popular",
|
||||
"topsites_form_edit_header": "Editar sitio popular",
|
||||
"topsites_form_title_label": "Título",
|
||||
"topsites_form_title_placeholder": "Introducir título",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL de imagen personalizada",
|
||||
"topsites_form_url_placeholder": "Escribir o pegar una URL",
|
||||
"topsites_form_use_image_link": "Utilizar una imagen personalizada…",
|
||||
"topsites_form_preview_button": "Vista preliminar",
|
||||
"topsites_form_add_button": "Agregar",
|
||||
"topsites_form_save_button": "Guardar",
|
||||
"topsites_form_cancel_button": "Cancelar",
|
||||
"topsites_form_url_validation": "Se requiere una URL válida",
|
||||
"topsites_form_image_validation": "La imagen no se pudo cargar. Intente una URL diferente.",
|
||||
"pocket_read_more": "Temas populares:",
|
||||
"pocket_read_even_more": "Ver más historias",
|
||||
"pocket_feedback_header": "Lo mejor de la web, confirmado por más de 25 millones de personas.",
|
||||
"pocket_description": "Gracias a Pocket, que ahora forma parte de Mozilla, podrás descubrir contenido de alta calidad que de otra forma te perderías.",
|
||||
"highlights_empty_state": "Empieza a navegar y nosotros te mostraremos aquí algunos de los mejores artículos, videos y otras páginas que hayas visitado recientemente o agregado a marcadores.",
|
||||
"topstories_empty_state": "Ya estás al día. Vuelve luego y busca más historias de {provider}. ¿No puedes esperar? Selecciona un tema popular y encontrás más historias alucinantes por toda la web.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Subir",
|
||||
"section_menu_action_move_down": "Bajar",
|
||||
"section_menu_action_privacy_notice": "Aviso de privacidad",
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Aviso de privacidad",
|
||||
"settings_pane_bookmarks_body": "Tus marcadores recién creados, fácilmente accesibles.",
|
||||
"settings_pane_visit_again_body": "Firefox te mostrará partes de tu historial de navegación que te gustaría recordar o volver a visitar.",
|
||||
"edit_topsites_button_label": "Personalizar la sección de Sitios populares",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Hecho",
|
||||
"edit_topsites_pin_button": "Fijar este sitio",
|
||||
"edit_topsites_unpin_button": "Eliminar este sitio fijo",
|
||||
"edit_topsites_dismiss_button": "Olvidar este sitio",
|
||||
"edit_topsites_add_button": "Agregar",
|
||||
"pocket_feedback_header": "Lo mejor de la web, confirmado por más de 25 millones de personas.",
|
||||
"edit_topsites_add_button_tooltip": "Agregar sitio popular"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Buscar {search_engine_name}",
|
||||
"search_web_placeholder": "Buscar en la Web",
|
||||
"search_settings": "Cambiar configuraciones de búsqueda",
|
||||
"section_info_option": "Información",
|
||||
"section_info_send_feedback": "Enviar comentarios",
|
||||
"section_info_privacy_notice": "Política de privacidad",
|
||||
"section_disclaimer_topstories": "Las más interesantes historias en la web, seleccionadas basándonos en los que lees. Desde Pocket, ahora parte de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Saber como trabaja.",
|
||||
"section_disclaimer_topstories_buttontext": "Está bien, lo entiendo",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Contenido de la página de inicio de Firefox",
|
||||
"prefs_home_description": "Selecciona el contenido que desea en la pantalla de inicio de Firefox.",
|
||||
"prefs_restore_defaults_button": "Restaurar predeterminados",
|
||||
"prefs_section_rows_option": "{num} fila{num} filas",
|
||||
"prefs_search_header": "Búsqueda web",
|
||||
"prefs_topsites_description": "Los sitios que más visita",
|
||||
"prefs_topstories_description": "Contenido de alta calidad que de otra forma se perdería",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Historias patrocinadas",
|
||||
"prefs_topstories_sponsored_learn_more": "Más información",
|
||||
"prefs_highlights_description": "Una selección de sitios que ha guardado o visitado",
|
||||
"prefs_snippets_description": "Actualizaciones de Mozilla y Firefox",
|
||||
"settings_pane_button_label": "Personalizar tu página de nueva pestaña",
|
||||
"settings_pane_header": "Preferencias de nueva pestaña",
|
||||
"settings_pane_body2": "Elige lo que ves en esta página.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Accede a los sitios web que más visitas.",
|
||||
"settings_pane_topsites_options_showmore": "Mostrar dos filas",
|
||||
"settings_pane_bookmarks_header": "Marcadores recientes",
|
||||
"settings_pane_bookmarks_body": "Tus marcadores recién creados en un solo lugar.",
|
||||
"settings_pane_visit_again_header": "Visitar de nuevo",
|
||||
"settings_pane_visit_again_body": "Firefox te mostrará partes de tu historial de navegación que a lo mejor te gustaría recordar o volver a visitar.",
|
||||
"settings_pane_highlights_header": "Destacados",
|
||||
"settings_pane_highlights_body2": "Encuentra tu camino de regreso a las cosas interesantes que has visitado o marcado recientemente.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marcadores",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Listo",
|
||||
"settings_pane_topstories_options_sponsored": "Mostrar historias patrocinadas",
|
||||
"edit_topsites_button_text": "Editar",
|
||||
"edit_topsites_button_label": "Personalizar la sección de tus sitios preferidos",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Listo",
|
||||
"edit_topsites_pin_button": "Fijar este sitio",
|
||||
"edit_topsites_unpin_button": "Despegar este sitio",
|
||||
"edit_topsites_edit_button": "Editar este sitio",
|
||||
"edit_topsites_dismiss_button": "Descartar este sitio",
|
||||
"edit_topsites_add_button": "Agregar",
|
||||
"topsites_form_add_header": "Nuevo sitio popular",
|
||||
"topsites_form_edit_header": "Editar sitio popular",
|
||||
"topsites_form_title_label": "Título",
|
||||
"topsites_form_title_placeholder": "Introducir un título",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL de imagen personalizada",
|
||||
"topsites_form_url_placeholder": "Escribir o pegar una URL",
|
||||
"topsites_form_use_image_link": "Utilizar una imagen personalizada…",
|
||||
"topsites_form_preview_button": "Vista preliminar",
|
||||
"topsites_form_add_button": "Agregar",
|
||||
"topsites_form_save_button": "Guardar",
|
||||
"topsites_form_cancel_button": "Cancelar",
|
||||
"topsites_form_url_validation": "Se requiere una URL válida",
|
||||
"topsites_form_image_validation": "La imagen no se pudo cargar. Intente una URL diferente.",
|
||||
"pocket_read_more": "Temas populares:",
|
||||
"pocket_read_even_more": "Ver más historias",
|
||||
"pocket_feedback_header": "Lo mejor de la web, seleccionado por más 25 millones de personas.",
|
||||
"pocket_description": "Descubre contenido de alta calidad que de otra forma te podrías perder, con la ayuda de Pocket, ahora parte de Mozilla.",
|
||||
"highlights_empty_state": "Empieza a navegar, y nosotros te mostraremos aquí algunos de los mejores artículos, videos y otras páginas que hayas visitado recientemente o marcado.",
|
||||
"topstories_empty_state": "Ya estás al día. Vuelve luego y busca más historias de {provider}. ¿No puedes esperar? Selecciona un tema popular y encontrarás más historias interesantes por toda la web.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Subir",
|
||||
"section_menu_action_move_down": "Bajar",
|
||||
"section_menu_action_privacy_notice": "Aviso de privacidad",
|
||||
"section_info_option": "Información",
|
||||
"section_info_privacy_notice": "Política de privacidad",
|
||||
"settings_pane_bookmarks_body": "Tus marcadores recién creados en un solo lugar.",
|
||||
"settings_pane_visit_again_body": "Firefox te mostrará partes de tu historial de navegación que a lo mejor te gustaría recordar o volver a visitar.",
|
||||
"edit_topsites_button_label": "Personalizar la sección de tus sitios preferidos",
|
||||
"edit_topsites_showmore_button": "Mostrar más",
|
||||
"edit_topsites_showless_button": "Mostrar menos",
|
||||
"edit_topsites_done_button": "Listo",
|
||||
"edit_topsites_pin_button": "Fijar este sitio",
|
||||
"edit_topsites_unpin_button": "Despegar este sitio",
|
||||
"edit_topsites_dismiss_button": "Descartar este sitio",
|
||||
"edit_topsites_add_button": "Agregar",
|
||||
"pocket_feedback_header": "Lo mejor de la web, seleccionado por más 25 millones de personas.",
|
||||
"edit_topsites_add_button_tooltip": "Agregar sitio popular"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Sul pole veel järjehoidjaid.",
|
||||
"header_stories_from": "allikast",
|
||||
"context_menu_button_sr": "Ava {title} kontekstimenüü",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Ava osa kontekstimenüü",
|
||||
"type_label_visited": "Külastatud",
|
||||
"type_label_bookmarked": "Järjehoidjatest",
|
||||
"type_label_synced": "Sünkroniseeritud teisest seadmest",
|
||||
"type_label_recommended": "Menukad",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Salvestatud Pocketisse",
|
||||
"type_label_open": "Avatud",
|
||||
"type_label_topic": "Teema",
|
||||
"type_label_now": "Praegu",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Kas oled kindel, et soovid ajaloost kõik selle lehe kohta käivad kirjed kustutada?",
|
||||
"confirm_history_delete_notice_p2": "Seda tegevust pole võimalik tagasi võtta.",
|
||||
"menu_action_save_to_pocket": "Salvesta Pocketisse",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Kustuta Pocketist",
|
||||
"menu_action_archive_pocket": "Arhiveeri Pocketis",
|
||||
"search_for_something_with": "Otsi fraasi {search_term}, kasutades otsingumootorit:",
|
||||
"search_button": "Otsi",
|
||||
"search_header": "{search_engine_name}",
|
||||
"search_web_placeholder": "Otsi veebist",
|
||||
"search_settings": "Muuda otsingu sätteid",
|
||||
"section_info_option": "Teave",
|
||||
"section_info_send_feedback": "Saada tagasisidet",
|
||||
"section_info_privacy_notice": "Privaatsusreeglid",
|
||||
"section_disclaimer_topstories": "Huvitavamad veebilood, mis on valitud sinu loetu põhjal. Pocketilt, mis on nüüd Mozilla osa.",
|
||||
"section_disclaimer_topstories_linktext": "Vaata, kuidas see töötab.",
|
||||
"section_disclaimer_topstories_buttontext": "Olgu, sain aru",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}t",
|
||||
"time_label_day": "{number}p",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Kohanda uue kaardi lehte",
|
||||
"settings_pane_header": "Uue kaardi sätted",
|
||||
"settings_pane_body2": "Vali asjad, mida soovid sellel lehel näha.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Ligipääs enim külastatud veebilehtedele.",
|
||||
"settings_pane_topsites_options_showmore": "Kuvatakse kahel real",
|
||||
"settings_pane_bookmarks_header": "Hiljutised järjehoidjad",
|
||||
"settings_pane_bookmarks_body": "Sinu värskelt lisatud järjehoidjad ühes kohas koos.",
|
||||
"settings_pane_visit_again_header": "Külasta jälle",
|
||||
"settings_pane_visit_again_body": "Firefox kuvab sulle noppeid sinu lehitsemise ajaloost, mida võid soovida meeles pidada või uuesti külastada.",
|
||||
"settings_pane_highlights_header": "Esiletõstetud",
|
||||
"settings_pane_highlights_body2": "Leia tee tagasi asjade juurde, mida hiljuti külastasid või järjehoidjatesse lisasid.",
|
||||
"settings_pane_highlights_options_bookmarks": "Järjehoidjad",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Valmis",
|
||||
"settings_pane_topstories_options_sponsored": "Kuvatakse sponsitud postitusi",
|
||||
"edit_topsites_button_text": "Muuda",
|
||||
"edit_topsites_button_label": "Kohanda top saitide osa",
|
||||
"edit_topsites_showmore_button": "Kuva rohkem",
|
||||
"edit_topsites_showless_button": "Näita vähem",
|
||||
"edit_topsites_done_button": "Valmis",
|
||||
"edit_topsites_pin_button": "Kinnita see sait",
|
||||
"edit_topsites_unpin_button": "Eemalda see sait",
|
||||
"edit_topsites_edit_button": "Muuda seda saiti",
|
||||
"edit_topsites_dismiss_button": "Peida see sait",
|
||||
"edit_topsites_add_button": "Lisa",
|
||||
"topsites_form_add_header": "Uue top saidi lisamine",
|
||||
"topsites_form_edit_header": "Top saidi muutmine",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Pealkiri",
|
||||
"topsites_form_title_placeholder": "Sisesta pealkiri",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Sisesta või aseta URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Lisa",
|
||||
"topsites_form_save_button": "Salvesta",
|
||||
"topsites_form_cancel_button": "Tühista",
|
||||
"topsites_form_url_validation": "URL peab olema korrektne",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Populaarsed teemad:",
|
||||
"pocket_read_even_more": "Rohkem lugusid",
|
||||
"pocket_feedback_header": "Parim osa veebist, mille on kokku pannud rohkem kui 25 miljonit inimest.",
|
||||
"pocket_description": "Avasta Pocketi (nüüd osa Mozillast) abiga kõrgkvaliteetset sisu, mis muidu võib märkamata jääda.",
|
||||
"highlights_empty_state": "Alusta veebilehitsemist ja me näitame siin häid artikleid, videoid ja muid lehti, mida hiljuti külastasid või järjehoidjatesse lisasid.",
|
||||
"topstories_empty_state": "Vaata hiljem uuesti, et näha parimaid postitusi teenusepakkujalt {provider}. Ei suuda oodata? Vali populaarne teema, et leida veel suurepärast sisu internetist.",
|
||||
"manual_migration_explanation2": "Proovi Firefoxi teisest brauserist pärinevate järjehoidjate, ajaloo ja paroolidega.",
|
||||
"manual_migration_cancel_button": "Ei soovi",
|
||||
"manual_migration_import_button": "Impordi kohe",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Top saidi lisamine"
|
||||
"error_fallback_default_info": "Ups, selle sisu laadimisel läks midagi viltu.",
|
||||
"error_fallback_default_refresh_suggestion": "Uuesti proovimiseks laadi leht uuesti.",
|
||||
"section_menu_action_remove_section": "Eemalda osa",
|
||||
"section_menu_action_collapse_section": "Ahenda osa",
|
||||
"section_menu_action_expand_section": "Laienda osa",
|
||||
"section_menu_action_manage_section": "Halda osa",
|
||||
"section_menu_action_add_topsite": "Lisa top sait",
|
||||
"section_menu_action_move_up": "Liiguta üles",
|
||||
"section_menu_action_move_down": "Liiguta alla",
|
||||
"section_menu_action_privacy_notice": "Privaatsuspoliitika",
|
||||
"section_info_option": "Teave",
|
||||
"section_info_privacy_notice": "Privaatsusreeglid",
|
||||
"settings_pane_bookmarks_body": "Sinu värskelt lisatud järjehoidjad ühes kohas koos.",
|
||||
"settings_pane_visit_again_body": "Firefox kuvab sulle noppeid sinu lehitsemise ajaloost, mida võid soovida meeles pidada või uuesti külastada.",
|
||||
"edit_topsites_button_label": "Kohanda top saitide osa",
|
||||
"edit_topsites_showmore_button": "Kuva rohkem",
|
||||
"edit_topsites_showless_button": "Näita vähem",
|
||||
"edit_topsites_done_button": "Valmis",
|
||||
"edit_topsites_pin_button": "Kinnita see sait",
|
||||
"edit_topsites_unpin_button": "Eemalda see sait",
|
||||
"edit_topsites_dismiss_button": "Peida see sait",
|
||||
"edit_topsites_add_button": "Lisa",
|
||||
"pocket_feedback_header": "Parim osa veebist, mille on kokku pannud rohkem kui 25 miljonit inimest."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} bilaketa",
|
||||
"search_web_placeholder": "Bilatu webean",
|
||||
"search_settings": "Aldatu bilaketa-ezarpenak",
|
||||
"section_info_option": "Informazioa",
|
||||
"section_info_send_feedback": "Bidali iritzia",
|
||||
"section_info_privacy_notice": "Pribatutasun-oharra",
|
||||
"section_disclaimer_topstories": "Webeko istorio interesgarrienen hautapena, irakurtzen duzunean oinarrituta. Orain Mozillaren zati den Pocket bidez datoz.",
|
||||
"section_disclaimer_topstories_linktext": "Ikasi nola dabilen.",
|
||||
"section_disclaimer_topstories_buttontext": "Ulertuta",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Pertsonalizatu fitxa berriaren orria",
|
||||
"settings_pane_header": "Fitxa berriaren hobespenak",
|
||||
"settings_pane_body2": "Aukeratu orri honetan ikusiko duzuna.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Sartu gehien bisitatzen dituzun webguneetara.",
|
||||
"settings_pane_topsites_options_showmore": "Erakutsi bi errenkada",
|
||||
"settings_pane_bookmarks_header": "Azken laster-markak",
|
||||
"settings_pane_bookmarks_body": "Sortutako azken laster-markak toki bakarrean esku-eskura.",
|
||||
"settings_pane_visit_again_header": "Bisitatu berriro",
|
||||
"settings_pane_visit_again_body": "Gogoratu edo itzuli nahiko duzun historiaren zatia erakutsiko dizu Firefoxek.",
|
||||
"settings_pane_highlights_header": "Nabarmendutakoak",
|
||||
"settings_pane_highlights_body2": "Aurkitu itzultzeko bidea azkenaldian bisitatutako edo laster-marka egindako gauza interesgarrietara.",
|
||||
"settings_pane_highlights_options_bookmarks": "Laster-markak",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Eginda",
|
||||
"settings_pane_topstories_options_sponsored": "Erakutsi babesleen istorioak",
|
||||
"edit_topsites_button_text": "Editatu",
|
||||
"edit_topsites_button_label": "Pertsonalizatu gune erabilienen atala",
|
||||
"edit_topsites_showmore_button": "Erakutsi gehiago",
|
||||
"edit_topsites_showless_button": "Erakutsi gutxiago",
|
||||
"edit_topsites_done_button": "Eginda",
|
||||
"edit_topsites_pin_button": "Ainguratu gune hau",
|
||||
"edit_topsites_unpin_button": "Desainguratu gune hau",
|
||||
"edit_topsites_edit_button": "Editatu gune hau",
|
||||
"edit_topsites_dismiss_button": "Baztertu gune hau",
|
||||
"edit_topsites_add_button": "Gehitu",
|
||||
"topsites_form_add_header": "Maiz erabilitako gune berria",
|
||||
"topsites_form_edit_header": "Editatu maiz erabilitako gunea",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Idatzi izenburua",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Idatzi edo itsatsi URLa",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Gehitu",
|
||||
"topsites_form_save_button": "Gorde",
|
||||
"topsites_form_cancel_button": "Utzi",
|
||||
"topsites_form_url_validation": "Baliozko URLa behar da",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Gai ezagunak:",
|
||||
"pocket_read_even_more": "Ikusi istorio gehiago",
|
||||
"pocket_feedback_header": "Webeko onena, 25 milioi pertsona baino gehiagok bilduta.",
|
||||
"pocket_description": "Deskubritu orain Mozillaren zati den Pocket-en laguntzari esker bestela gal zenitzakeen kalitatezko edukiak.",
|
||||
"highlights_empty_state": "Hasi nabigatzen eta azkenaldian bisitatutako edo laster-marka egindako aparteko artikulu, bideo eta orriak erakutsiko ditugu.",
|
||||
"topstories_empty_state": "Egunean zaude jada. Etorri berriro geroago {provider} hornitzailearen istorio ezagun gehiagorako. Ezin duzu itxaron? Hautatu gai ezagun bat webeko istorio gehiago aurkitzeko.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Gehitu maiz erabilitako gunea"
|
||||
"section_info_option": "Informazioa",
|
||||
"section_info_privacy_notice": "Pribatutasun-oharra",
|
||||
"settings_pane_bookmarks_body": "Sortutako azken laster-markak toki bakarrean esku-eskura.",
|
||||
"settings_pane_visit_again_body": "Gogoratu edo itzuli nahiko duzun historiaren zatia erakutsiko dizu Firefoxek.",
|
||||
"edit_topsites_button_label": "Pertsonalizatu gune erabilienen atala",
|
||||
"edit_topsites_showmore_button": "Erakutsi gehiago",
|
||||
"edit_topsites_showless_button": "Erakutsi gutxiago",
|
||||
"edit_topsites_done_button": "Eginda",
|
||||
"edit_topsites_pin_button": "Ainguratu gune hau",
|
||||
"edit_topsites_unpin_button": "Desainguratu gune hau",
|
||||
"edit_topsites_dismiss_button": "Baztertu gune hau",
|
||||
"edit_topsites_add_button": "Gehitu",
|
||||
"edit_topsites_add_button_tooltip": "Gehitu maiz erabilitako gunea",
|
||||
"pocket_feedback_header": "Webeko onena, 25 milioi pertsona baino gehiagok bilduta."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "جستوجو {search_engine_name}",
|
||||
"search_web_placeholder": "جستوجوی وب",
|
||||
"search_settings": "تغییر تنظیمات جستوجو",
|
||||
"section_info_option": "اطلاعات",
|
||||
"section_info_send_feedback": "ارسال بازخورد",
|
||||
"section_info_privacy_notice": "نکات حفظ حریم خصوصی",
|
||||
"section_disclaimer_topstories": "جالبترین داستانها در وب، بر اساس آنچه شما خواندید انتخاب شده است. از Pocket، که حالا بخشی از Mozilla است.",
|
||||
"section_disclaimer_topstories_linktext": "ببینید چگونه کار میکند.",
|
||||
"section_disclaimer_topstories_buttontext": "باشه، گرفتم",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} د",
|
||||
"time_label_hour": "{number} س",
|
||||
"time_label_day": "{number} ر",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "صفحهٔ زبانه جدید را سفارشی کنید",
|
||||
"settings_pane_header": "تنظیمات زبانه جدید",
|
||||
"settings_pane_body2": "انتخاب کنید چیزی را که مایل هستید در این صفحه مشاهده کنید.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "به وبسایتهایی که بیشترین بازدید از آنها را داشتید دسترسی داشته باشید.",
|
||||
"settings_pane_topsites_options_showmore": "نمایش دو ردیفی",
|
||||
"settings_pane_bookmarks_header": "نشانکهای اخیر",
|
||||
"settings_pane_bookmarks_body": "بهتازگی شما نشانکهایی را در یک محل مناسب ساختهاید.",
|
||||
"settings_pane_visit_again_header": "مشاهده دوباره",
|
||||
"settings_pane_visit_again_body": "فایرفاکس بخشهایی از تاریخچه مرورتان را که ممکن است بخواهید به یاد داشته باشید یا به آنها بازگردید به شما نشان خواهد داد.",
|
||||
"settings_pane_highlights_header": "برجستهها",
|
||||
"settings_pane_highlights_body2": "راه خود را در میان چیزهایی که دوست دارید پیدا کنید.چیزهایی که اخیرا مشاهده کرده اید یا نشانک ها.",
|
||||
"settings_pane_highlights_options_bookmarks": "نشانکها",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "انجام شد",
|
||||
"settings_pane_topstories_options_sponsored": "نمایش داستانهای حمایت شده",
|
||||
"edit_topsites_button_text": "ويرايش",
|
||||
"edit_topsites_button_label": "قسمت سایتهای برتر را سفارشی کنید",
|
||||
"edit_topsites_showmore_button": "نمایش بیشتر",
|
||||
"edit_topsites_showless_button": "نمایش کمتر",
|
||||
"edit_topsites_done_button": "انجام شد",
|
||||
"edit_topsites_pin_button": "چسباندن این سایت",
|
||||
"edit_topsites_unpin_button": "لغو سنجاق کردن این پایگاه اینترنتی",
|
||||
"edit_topsites_edit_button": "ویرایش این سایت",
|
||||
"edit_topsites_dismiss_button": "نادیده گرفتن این سایت",
|
||||
"edit_topsites_add_button": "افزودن",
|
||||
"topsites_form_add_header": "سایت برتر جدید",
|
||||
"topsites_form_edit_header": "ویرایش سایت برتر",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "عنوان را وارد کنید",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "یک URL تایپ کنید یا بچسبانید",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "افزودن",
|
||||
"topsites_form_save_button": "ذخیره",
|
||||
"topsites_form_cancel_button": "انصراف",
|
||||
"topsites_form_url_validation": "URL معتبر الزامی است",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "موضوعهای محبوب:",
|
||||
"pocket_read_even_more": "مشاهده داستانهای بیشتر",
|
||||
"pocket_feedback_header": "بهترینهای وب، گزینش شده توسط بیش از ۲۵ میلیون نفر.",
|
||||
"pocket_description": "محتواهای با کیفیتی را پیدا کنید که ممکن است از دست داده باشید، به کمک Pocket که اکنون بخشی از موزیلا است.",
|
||||
"highlights_empty_state": "مرور کردن را شروع کنید و شاهد تعداد زیادی مقاله، فیلم و صفحات خوبی باشید که اخیر مشاهده کرده اید یا نشانگ گذاری کرده اید.",
|
||||
"topstories_empty_state": "فعلا تموم شد. بعدا دوباره سر بزن تا مطالب جدید از {provider} ببینی. نمیتونی صبر کنی؟ یک موضوع محبوب رو انتخاب کن تا مطالب جالب مرتبط از سراسر دنیا رو پیدا کنی.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "اضافه کردن به سایت های برتر"
|
||||
"section_info_option": "اطلاعات",
|
||||
"section_info_privacy_notice": "نکات حفظ حریم خصوصی",
|
||||
"settings_pane_bookmarks_body": "بهتازگی شما نشانکهایی را در یک محل مناسب ساختهاید.",
|
||||
"settings_pane_visit_again_body": "فایرفاکس بخشهایی از تاریخچه مرورتان را که ممکن است بخواهید به یاد داشته باشید یا به آنها بازگردید به شما نشان خواهد داد.",
|
||||
"edit_topsites_button_label": "قسمت سایتهای برتر را سفارشی کنید",
|
||||
"edit_topsites_showmore_button": "نمایش بیشتر",
|
||||
"edit_topsites_showless_button": "نمایش کمتر",
|
||||
"edit_topsites_done_button": "انجام شد",
|
||||
"edit_topsites_pin_button": "چسباندن این سایت",
|
||||
"edit_topsites_unpin_button": "لغو سنجاق کردن این پایگاه اینترنتی",
|
||||
"edit_topsites_dismiss_button": "نادیده گرفتن این سایت",
|
||||
"edit_topsites_add_button": "افزودن",
|
||||
"edit_topsites_add_button_tooltip": "اضافه کردن به سایت های برتر",
|
||||
"pocket_feedback_header": "بهترینهای وب، گزینش شده توسط بیش از ۲۵ میلیون نفر."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} Yiylo",
|
||||
"search_web_placeholder": "Yiylo geese",
|
||||
"search_settings": "Waylu Teelte Njiylawu",
|
||||
"section_info_option": "Kabaruuji",
|
||||
"section_info_send_feedback": "Neldu duttinal",
|
||||
"section_info_privacy_notice": "Tintinol Suturo",
|
||||
"section_disclaimer_topstories": "Daarti ɓurɗi teeŋtude e geese ɗee, cuɓaaɗi e yowitaade e ko tarɗaa. Ummoraade e Pocket, jeyaaɗo jooni e Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Humpito hol no ɗum gollortoo.",
|
||||
"section_disclaimer_topstories_buttontext": "Eey, mi faamii",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Customize your New Tab page",
|
||||
"settings_pane_header": "New Tab Preferences",
|
||||
"settings_pane_body2": "Suɓo ko njiyataa e ngoo hello.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Access the websites you visit most.",
|
||||
"settings_pane_topsites_options_showmore": "Show two rows",
|
||||
"settings_pane_bookmarks_header": "Maantore kese",
|
||||
"settings_pane_bookmarks_body": "Maantore maa cosaaɗe ko ɓooyaani e nder nokku gooto beemtinɗo.",
|
||||
"settings_pane_visit_again_header": "Visit Again",
|
||||
"settings_pane_visit_again_body": "Firefox maa holloye huunde e aslol banngogol maa ɗi pot-ɗaa yiɗde siiftorde walla ruttaade heen.",
|
||||
"settings_pane_highlights_header": "Jalbine",
|
||||
"settings_pane_highlights_body2": "Yiytu laawol maa ruttaade e geɗe maantinɗe jilliɗaa ko ɓooyaani walla maantoraaɗe.",
|
||||
"settings_pane_highlights_options_bookmarks": "Maantore",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Done",
|
||||
"settings_pane_topstories_options_sponsored": "Hollu Daarti Tammbitaaɗi",
|
||||
"edit_topsites_button_text": "Edit",
|
||||
"edit_topsites_button_label": "Heertin taƴre Lowe maa Dowrowe",
|
||||
"edit_topsites_showmore_button": "Show More",
|
||||
"edit_topsites_showless_button": "Show Fewer",
|
||||
"edit_topsites_done_button": "Done",
|
||||
"edit_topsites_pin_button": "Pin this site",
|
||||
"edit_topsites_unpin_button": "Ñippit ndee lowre",
|
||||
"edit_topsites_edit_button": "Edit this site",
|
||||
"edit_topsites_dismiss_button": "Dismiss this site",
|
||||
"edit_topsites_add_button": "Ɓeydu",
|
||||
"topsites_form_add_header": "Lowre Dowrowre Hesere",
|
||||
"topsites_form_edit_header": "Taƴto Lowre Dowrowre",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Naatnu tiitoonde",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Tappu walla ɗakku URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Ɓeydu",
|
||||
"topsites_form_save_button": "Danndu",
|
||||
"topsites_form_cancel_button": "Haaytu",
|
||||
"topsites_form_url_validation": "URL Moƴƴo ina naamnaa",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Loowdiiji lolluɗi:",
|
||||
"pocket_read_even_more": "Yiy Daarti Goɗɗi",
|
||||
"pocket_feedback_header": "Ɓurɗo geese fof, mo ko ɓuri 25 miliyoŋ neɗɗo yuɓɓini.",
|
||||
"pocket_description": "Yiytu loowdi waɗndi faayiida ndi ina gasa luppuɗaa, wonndude e ballal ummoraade e Pocket, jeyaaɗo jooni e Mozilla.",
|
||||
"highlights_empty_state": "Fuɗɗo wanngaade, min kolloymaa huunde e binndanɗe mawɗe ɗee, widewooji kañum e kelle goɗɗe ɗe njilliɗaa ko ɓooyaani walla maantoraaɗe ɗoo.",
|
||||
"topstories_empty_state": "You’ve caught up. Check back later for more top stories from {provider}. Can’t wait? Select a popular topic to find more great stories from around the web.",
|
||||
|
@ -111,5 +113,13 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Kabaruuji",
|
||||
"section_info_privacy_notice": "Tintinol Suturo",
|
||||
"settings_pane_bookmarks_body": "Maantore maa cosaaɗe ko ɓooyaani e nder nokku gooto beemtinɗo.",
|
||||
"settings_pane_visit_again_body": "Firefox maa holloye huunde e aslol banngogol maa ɗi pot-ɗaa yiɗde siiftorde walla ruttaade heen.",
|
||||
"edit_topsites_button_label": "Heertin taƴre Lowe maa Dowrowe",
|
||||
"edit_topsites_unpin_button": "Ñippit ndee lowre",
|
||||
"edit_topsites_add_button": "Ɓeydu",
|
||||
"pocket_feedback_header": "Ɓurɗo geese fof, mo ko ɓuri 25 miliyoŋ neɗɗo yuɓɓini."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Sinulla ei ole vielä kirjanmerkkejä.",
|
||||
"header_stories_from": "Lähde",
|
||||
"context_menu_button_sr": "Avaa pikavalikko sivustolle {title}",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Avaa osion ponnahdusvalikko",
|
||||
"type_label_visited": "Vierailtu",
|
||||
"type_label_bookmarked": "Kirjanmerkki",
|
||||
"type_label_synced": "Synkronoitu toiselta laitteelta",
|
||||
"type_label_recommended": "Pinnalla",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Tallennettu Pocket-palveluun",
|
||||
"type_label_open": "Avoin",
|
||||
"type_label_topic": "Aihe",
|
||||
"type_label_now": "Nyt",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Haluatko varmasti poistaa tämän sivun kaikkialta historiastasi?",
|
||||
"confirm_history_delete_notice_p2": "Tämä toiminto on peruuttamaton.",
|
||||
"menu_action_save_to_pocket": "Tallenna Pocket-palveluun",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Poista Pocket-palvelusta",
|
||||
"menu_action_archive_pocket": "Arkistoi Pocket-palveluun",
|
||||
"search_for_something_with": "Hae {search_term} palvelusta:",
|
||||
"search_button": "Haku",
|
||||
"search_header": "{search_engine_name}-haku",
|
||||
"search_web_placeholder": "Verkkohaku",
|
||||
"search_settings": "Muuta hakuasetuksia",
|
||||
"section_info_option": "Tietoa",
|
||||
"section_info_send_feedback": "Anna palautetta",
|
||||
"section_info_privacy_notice": "Tietosuojakäytäntö",
|
||||
"section_disclaimer_topstories": "Verkon kiinnostavimmat jutut, lukemasi perusteella valittuna. Pocketilta, joka on nyt osa Mozillaa.",
|
||||
"section_disclaimer_topstories_linktext": "Lue, miten tämä toimii.",
|
||||
"section_disclaimer_topstories_buttontext": "Selvä",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} min",
|
||||
"time_label_hour": "{number} h",
|
||||
"time_label_day": "{number} pv",
|
||||
"prefs_home_header": "Firefoxin aloitussivun sisältö",
|
||||
"prefs_home_description": "Valitse Firefoxin aloitussivulle haluamasi sisältö.",
|
||||
"prefs_restore_defaults_button": "Palauta oletukset",
|
||||
"prefs_section_rows_option": "{num} rivi;{num} riviä",
|
||||
"prefs_search_header": "Verkkohaku",
|
||||
"prefs_topsites_description": "Useimmin vierailemasi sivustot",
|
||||
"prefs_topstories_description": "Laadukasta sisältöä, joista olisit muuten saattanut jäädä paitsi",
|
||||
"prefs_topstories_show_sponsored_label": "{provider}-palvelun sponsoroidut jutut",
|
||||
"prefs_topstories_sponsored_learn_more": "Lue lisää",
|
||||
"prefs_highlights_description": "Valikoima sivustoja, joilla olet käynyt tai jotka olet tallentanut",
|
||||
"prefs_snippets_description": "Päivitykset Mozillalta ja Firefoxilta",
|
||||
"settings_pane_button_label": "Muokkaa Uusi välilehti -sivua",
|
||||
"settings_pane_header": "Uuden välilehden asetukset",
|
||||
"settings_pane_body2": "Valitse, mitä haluat nähdä tällä sivulla.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Näe eniten vierailemasi sivustot.",
|
||||
"settings_pane_topsites_options_showmore": "Näytä kaksi riviä",
|
||||
"settings_pane_bookmarks_header": "Uusimmat kirjanmerkit",
|
||||
"settings_pane_bookmarks_body": "Uusimmat kirjanmerkkisi, yhdessä kätevässä paikassa.",
|
||||
"settings_pane_visit_again_header": "Käy toistekin",
|
||||
"settings_pane_visit_again_body": "Firefox näyttää selaushistoriastasi palasia, jotka saatat haluta muistaa tai joissa haluat ehkä käydä.",
|
||||
"settings_pane_highlights_header": "Nostot",
|
||||
"settings_pane_highlights_body2": "Löydä tiesi takaisin kiinnostaviin juttuihin, joissa olet käynyt tai jotka olet lisännyt kirjanmerkkeihin viime aikoina.",
|
||||
"settings_pane_highlights_options_bookmarks": "Kirjanmerkit",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Valmis",
|
||||
"settings_pane_topstories_options_sponsored": "Näytä sponsoroidut jutut",
|
||||
"edit_topsites_button_text": "Muokkaa",
|
||||
"edit_topsites_button_label": "Muokkaa Ykkössivustot-osiota",
|
||||
"edit_topsites_showmore_button": "Näytä enemmän",
|
||||
"edit_topsites_showless_button": "Näytä vähemmän",
|
||||
"edit_topsites_done_button": "Valmis",
|
||||
"edit_topsites_pin_button": "Kiinnitä tämä sivusto",
|
||||
"edit_topsites_unpin_button": "Poista tämän sivuston kiinnitys",
|
||||
"edit_topsites_edit_button": "Muokkaa tätä sivustoa",
|
||||
"edit_topsites_dismiss_button": "Hylkää tämä sivusto",
|
||||
"edit_topsites_add_button": "Lisää",
|
||||
"topsites_form_add_header": "Uusi ykkössivusto",
|
||||
"topsites_form_edit_header": "Muokkaa ykkössivustoa",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Otsikko",
|
||||
"topsites_form_title_placeholder": "Kirjoita otsikko",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_url_label": "Osoite",
|
||||
"topsites_form_image_url_label": "Oman kuvan osoite",
|
||||
"topsites_form_url_placeholder": "Kirjoita tai liitä osoite",
|
||||
"topsites_form_use_image_link": "Käytä omaa kuvaa…",
|
||||
"topsites_form_preview_button": "Esikatsele",
|
||||
"topsites_form_add_button": "Lisää",
|
||||
"topsites_form_save_button": "Tallenna",
|
||||
"topsites_form_cancel_button": "Peruuta",
|
||||
"topsites_form_url_validation": "Kelvollinen osoite vaaditaan",
|
||||
"topsites_form_image_validation": "Kuvan lataaminen epäonnistui. Kokeile toista osoitetta.",
|
||||
"pocket_read_more": "Suositut aiheet:",
|
||||
"pocket_read_even_more": "Katso lisää juttuja",
|
||||
"pocket_feedback_header": "Netin parhaat palat, valikoitu yli 25 miljoonan ihmisen voimin.",
|
||||
"pocket_description": "Löydä laadukasta sisältöä, josta olisit muutoin ehkä jäänyt paitsi. Pocketilta, joka on nyt osa Mozillaa.",
|
||||
"highlights_empty_state": "Ala selata, niin tässä alkaa näkyä hyviä juttuja, videoita ja muita sivuja, joilla olet käynyt hiljattain tai jotka olet lisännyt kirjanmerkkeihin.",
|
||||
"topstories_empty_state": "Ei enempää suosituksia juuri nyt. Katso myöhemmin uudestaan lisää ykkösjuttuja lähteestä {provider}. Etkö malta odottaa? Valitse suosittu aihe ja löydä lisää hyviä juttuja ympäri verkkoa.",
|
||||
"manual_migration_explanation2": "Kokeile Firefoxia toisesta selaimesta tuotujen kirjanmerkkien, historian ja salasanojen kanssa.",
|
||||
"manual_migration_cancel_button": "Ei kiitos",
|
||||
"manual_migration_import_button": "Tuo nyt",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Lisää ykkössivusto"
|
||||
"error_fallback_default_info": "Hups, jotain meni vikaan tätä sisältöä ladattaessa.",
|
||||
"error_fallback_default_refresh_suggestion": "Yritä uudestaan päivittämällä sivu.",
|
||||
"section_menu_action_remove_section": "Poista osio",
|
||||
"section_menu_action_collapse_section": "Pienennä osio",
|
||||
"section_menu_action_expand_section": "Laajenna osio",
|
||||
"section_menu_action_manage_section": "Muokkaa osiota",
|
||||
"section_menu_action_add_topsite": "Lisää ykkössivusto",
|
||||
"section_menu_action_move_up": "Siirrä ylös",
|
||||
"section_menu_action_move_down": "Siirrä alas",
|
||||
"section_menu_action_privacy_notice": "Tietosuojakäytäntö",
|
||||
"section_info_option": "Tietoa",
|
||||
"section_info_privacy_notice": "Tietosuojakäytäntö",
|
||||
"settings_pane_bookmarks_body": "Uusimmat kirjanmerkkisi, yhdessä kätevässä paikassa.",
|
||||
"settings_pane_visit_again_body": "Firefox näyttää selaushistoriastasi palasia, jotka saatat haluta muistaa tai joissa haluat ehkä käydä.",
|
||||
"edit_topsites_button_label": "Muokkaa Ykkössivustot-osiota",
|
||||
"edit_topsites_showmore_button": "Näytä enemmän",
|
||||
"edit_topsites_showless_button": "Näytä vähemmän",
|
||||
"edit_topsites_done_button": "Valmis",
|
||||
"edit_topsites_pin_button": "Kiinnitä tämä sivusto",
|
||||
"edit_topsites_unpin_button": "Poista tämän sivuston kiinnitys",
|
||||
"edit_topsites_dismiss_button": "Hylkää tämä sivusto",
|
||||
"edit_topsites_add_button": "Lisää",
|
||||
"pocket_feedback_header": "Netin parhaat palat, valikoitu yli 25 miljoonan ihmisen voimin."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Vous ne possédez aucun marque-page pour l’instant.",
|
||||
"header_stories_from": "par",
|
||||
"context_menu_button_sr": "Ouvrir le menu contextuel pour {title}",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Ouvrir le menu contextuel de cette section",
|
||||
"type_label_visited": "Visité",
|
||||
"type_label_bookmarked": "Ajouté aux marque-pages",
|
||||
"type_label_synced": "Synchronisé depuis un autre appareil",
|
||||
"type_label_recommended": "Tendance",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Enregistré dans Pocket",
|
||||
"type_label_open": "Ouvert",
|
||||
"type_label_topic": "Thème",
|
||||
"type_label_now": "Maintenant",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Voulez-vous vraiment supprimer de l’historique toutes les occurrences de cette page ?",
|
||||
"confirm_history_delete_notice_p2": "Cette action est irréversible.",
|
||||
"menu_action_save_to_pocket": "Enregistrer dans Pocket",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Supprimer de Pocket",
|
||||
"menu_action_archive_pocket": "Archiver dans Pocket",
|
||||
"search_for_something_with": "Rechercher {search_term} avec :",
|
||||
"search_button": "Rechercher",
|
||||
"search_header": "Recherche {search_engine_name}",
|
||||
"search_web_placeholder": "Rechercher sur le Web",
|
||||
"search_settings": "Paramètres de recherche",
|
||||
"section_info_option": "Informations",
|
||||
"section_info_send_feedback": "Donner mon avis",
|
||||
"section_info_privacy_notice": "Politique de confidentialité",
|
||||
"section_disclaimer_topstories": "Les articles les plus intéressants du Web, sélectionnés selon ce que vous lisez. Et ceci grâce à Pocket, qui fait désormais partie de Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Découvrez comment cela fonctionne.",
|
||||
"section_disclaimer_topstories_buttontext": "J’ai compris",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} min",
|
||||
"time_label_hour": "{number} h",
|
||||
"time_label_day": "{number} j",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Personnaliser la page Nouvel onglet",
|
||||
"settings_pane_header": "Préférences Nouvel onglet",
|
||||
"settings_pane_body2": "Choisissez les éléments à afficher sur la page.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Accédez aux sites que vous consultez le plus.",
|
||||
"settings_pane_topsites_options_showmore": "Afficher deux lignes",
|
||||
"settings_pane_bookmarks_header": "Marque-pages récents",
|
||||
"settings_pane_bookmarks_body": "Vos nouveaux marque-pages, facilement accessibles.",
|
||||
"settings_pane_visit_again_header": "Visiter à nouveau",
|
||||
"settings_pane_visit_again_body": "Firefox affichera des extraits de votre historique de navigation dont vous pourriez vouloir vous souvenir ou que vous pourriez vouloir revisiter.",
|
||||
"settings_pane_highlights_header": "Éléments-clés",
|
||||
"settings_pane_highlights_body2": "Retrouvez des pages intéressantes que vous avez visitées récemment ou ajoutées aux marque-pages.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marque-pages",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Terminé",
|
||||
"settings_pane_topstories_options_sponsored": "Afficher les articles sponsorisés",
|
||||
"edit_topsites_button_text": "Modifier",
|
||||
"edit_topsites_button_label": "Personnaliser la section Sites les plus visités",
|
||||
"edit_topsites_showmore_button": "En afficher plus",
|
||||
"edit_topsites_showless_button": "En afficher moins",
|
||||
"edit_topsites_done_button": "Terminé",
|
||||
"edit_topsites_pin_button": "Épingler ce site",
|
||||
"edit_topsites_unpin_button": "Relâcher ce site",
|
||||
"edit_topsites_edit_button": "Modifier ce site",
|
||||
"edit_topsites_dismiss_button": "Retirer ce site",
|
||||
"edit_topsites_add_button": "Ajouter",
|
||||
"topsites_form_add_header": "Nouveau site populaire",
|
||||
"topsites_form_edit_header": "Modifier le site populaire",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Titre",
|
||||
"topsites_form_title_placeholder": "Saisir un titre",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_url_label": "Adresse web",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Saisir ou coller une adresse web",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Ajouter",
|
||||
"topsites_form_save_button": "Enregistrer",
|
||||
"topsites_form_cancel_button": "Annuler",
|
||||
"topsites_form_url_validation": "Adresse web valide requise",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Sujets populaires :",
|
||||
"pocket_read_even_more": "Afficher plus d’articles",
|
||||
"pocket_feedback_header": "Le meilleur du Web, sélectionné par plus de 25 millions de personnes.",
|
||||
"pocket_description": "Grâce à Pocket, faisant désormais partie de Mozilla, découvrez du contenu de grande qualité que vous auriez pu manquer dans le cas contraire.",
|
||||
"highlights_empty_state": "Commencez à naviguer puis nous afficherons des articles, des vidéos ou d’autres pages que vous avez récemment visités ou ajoutés aux marque-pages.",
|
||||
"topstories_empty_state": "Il n’y en a pas d’autres. Revenez plus tard pour plus d’articles de {provider}. Vous ne voulez pas attendre ? Choisissez un sujet parmi les plus populaires pour découvrir d’autres articles intéressants sur le Web.",
|
||||
"manual_migration_explanation2": "Essayez Firefox en important les marque-pages, l’historique et les mots de passe depuis un autre navigateur.",
|
||||
"manual_migration_cancel_button": "Non merci",
|
||||
"manual_migration_import_button": "Importer",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Ajouter un site populaire"
|
||||
"error_fallback_default_info": "Oups, une erreur s’est produite lors du chargement du contenu.",
|
||||
"error_fallback_default_refresh_suggestion": "Actualisez la page pour réessayer.",
|
||||
"section_menu_action_remove_section": "Supprimer la section",
|
||||
"section_menu_action_collapse_section": "Réduire la section",
|
||||
"section_menu_action_expand_section": "Développer la section",
|
||||
"section_menu_action_manage_section": "Gérer la section",
|
||||
"section_menu_action_add_topsite": "Ajouter un site populaire",
|
||||
"section_menu_action_move_up": "Déplacer vers le haut",
|
||||
"section_menu_action_move_down": "Déplacer vers le bas",
|
||||
"section_menu_action_privacy_notice": "Politique de confidentialité",
|
||||
"section_info_option": "Informations",
|
||||
"section_info_privacy_notice": "Politique de confidentialité",
|
||||
"settings_pane_bookmarks_body": "Vos nouveaux marque-pages, facilement accessibles.",
|
||||
"settings_pane_visit_again_body": "Firefox affichera des extraits de votre historique de navigation dont vous pourriez vouloir vous souvenir ou que vous pourriez vouloir revisiter.",
|
||||
"edit_topsites_button_label": "Personnaliser la section Sites les plus visités",
|
||||
"edit_topsites_showmore_button": "En afficher plus",
|
||||
"edit_topsites_showless_button": "En afficher moins",
|
||||
"edit_topsites_done_button": "Terminé",
|
||||
"edit_topsites_pin_button": "Épingler ce site",
|
||||
"edit_topsites_unpin_button": "Relâcher ce site",
|
||||
"edit_topsites_dismiss_button": "Retirer ce site",
|
||||
"edit_topsites_add_button": "Ajouter",
|
||||
"pocket_feedback_header": "Le meilleur du Web, sélectionné par plus de 25 millions de personnes."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Jo hawwe noch gjin inkelde blêdwizer.",
|
||||
"header_stories_from": "fan",
|
||||
"context_menu_button_sr": "Kontekstmenu foar {title} iepenje",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Kontekstmenu fan seksje iepenje",
|
||||
"type_label_visited": "Besocht",
|
||||
"type_label_bookmarked": "Blêdwizer makke",
|
||||
"type_label_synced": "Syngronisearre fan oar apparaat ôf",
|
||||
"type_label_recommended": "Trending",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Bewarre nei Pocket",
|
||||
"type_label_open": "Iepene",
|
||||
"type_label_topic": "Underwerp",
|
||||
"type_label_now": "No",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "Binne jo wis dat jo elke ferwizing fan dizze side út jo skiednis fuortsmite wolle?",
|
||||
"confirm_history_delete_notice_p2": "Dizze aksje kin net ûngedien makke wurde.",
|
||||
"menu_action_save_to_pocket": "Bewarje nei Pocket",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Fuortsmite út Pocket",
|
||||
"menu_action_archive_pocket": "Argivearje yn Pocket",
|
||||
"search_for_something_with": "Sykje nei {search_term} mei:",
|
||||
"search_button": "Sykje",
|
||||
"search_header": "{search_engine_name} trochsykje",
|
||||
"search_web_placeholder": "Sykje op it web",
|
||||
"search_settings": "Sykynstellingen wizigje",
|
||||
"section_info_option": "Ynfo",
|
||||
"section_info_send_feedback": "Kommentaar ferstjoere",
|
||||
"section_info_privacy_notice": "Privacyferklearring",
|
||||
"section_disclaimer_topstories": "De meast ynteressante ferhalen op it web, selektearre op basis fan wat jo lêzen hawwe. Fan Pocket, no ûnderdiel fan Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Lês hoe't it wurket.",
|
||||
"section_disclaimer_topstories_buttontext": "Oké, begrepen",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} m",
|
||||
"time_label_hour": "{number} o",
|
||||
"time_label_day": "{number} d",
|
||||
"prefs_home_header": "Ynhâld fan Firefox-startside",
|
||||
"prefs_home_description": "Kies hokker ynhâld jo op jo Firefox-startside werjaan wolle.",
|
||||
"prefs_restore_defaults_button": "Standertwearden opnij ynstelle",
|
||||
"prefs_section_rows_option": "{num} rige;{num} rigen",
|
||||
"prefs_search_header": "Sykje op it web",
|
||||
"prefs_topsites_description": "De troch jo meast besochte websites",
|
||||
"prefs_topstories_description": "Ynhâld fan hege kwaliteit dy't jo oars mooglik misse",
|
||||
"prefs_topstories_show_sponsored_label": "Sponsore ferhalen fan {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "Mear ynfo",
|
||||
"prefs_highlights_description": "In seleksje fan websites dy't jo bewarre of besocht hawwe",
|
||||
"prefs_snippets_description": "Fernijingen fan Mozilla en Firefox",
|
||||
"settings_pane_button_label": "Jo side foar nije ljepblêden oanpasse",
|
||||
"settings_pane_header": "Nij ljepblêdfoarkarren",
|
||||
"settings_pane_body2": "Kies wat jo op dizze side sjogge.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Benaderje de websites dy't jo it meast besykje.",
|
||||
"settings_pane_topsites_options_showmore": "Twa rigen toane",
|
||||
"settings_pane_bookmarks_header": "Resinte blêdwizers",
|
||||
"settings_pane_bookmarks_body": "Jo koartlyn oanmakke blêdwizers op ien handich plak.",
|
||||
"settings_pane_visit_again_header": "Nochris besykje",
|
||||
"settings_pane_visit_again_body": "Firefox sil jo ûnderdielen fan jo sneupskiednis toane dy't jo miskien ûnthâlde of nei werom gean wolle.",
|
||||
"settings_pane_highlights_header": "Hichtepunten",
|
||||
"settings_pane_highlights_body2": "Fyn fluch ynteressante saken werom út jo blêdwizers en resint besocht siden.",
|
||||
"settings_pane_highlights_options_bookmarks": "Blêdwizers",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Dien",
|
||||
"settings_pane_topstories_options_sponsored": "Sponsore ferhalen toane",
|
||||
"edit_topsites_button_text": "Bewurkje",
|
||||
"edit_topsites_button_label": "Jo seksje Topwebsites oanpasse",
|
||||
"edit_topsites_showmore_button": "Mear toane",
|
||||
"edit_topsites_showless_button": "Minder toane",
|
||||
"edit_topsites_done_button": "Dien",
|
||||
"edit_topsites_pin_button": "Dizze side fêstsette",
|
||||
"edit_topsites_unpin_button": "Dizze webstee loskeppelje",
|
||||
"edit_topsites_edit_button": "Dizze side bewurkje",
|
||||
"edit_topsites_dismiss_button": "Dizze side fuortsmite",
|
||||
"edit_topsites_add_button": "Tafoegje",
|
||||
"topsites_form_add_header": "Nije topwebsite",
|
||||
"topsites_form_edit_header": "Topwebsite tafoegje",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Titel",
|
||||
"topsites_form_title_placeholder": "Titel ynfiere",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL fan oanpaste ôfbylding",
|
||||
"topsites_form_url_placeholder": "Typ of plak in URL",
|
||||
"topsites_form_use_image_link": "In oanpaste ôfbylding brûke…",
|
||||
"topsites_form_preview_button": "Foarbyld",
|
||||
"topsites_form_add_button": "Tafoegje",
|
||||
"topsites_form_save_button": "Bewarje",
|
||||
"topsites_form_cancel_button": "Annulearje",
|
||||
"topsites_form_url_validation": "Jildige URL fereaske",
|
||||
"topsites_form_image_validation": "Ofbylding koe net laden wurde. Probearje in oare URL.",
|
||||
"pocket_read_more": "Populêre ûnderwerpen:",
|
||||
"pocket_read_even_more": "Mear ferhalen besjen",
|
||||
"pocket_feedback_header": "It bêste fan it web, sammele troch mear as 25 miljoen minsken.",
|
||||
"pocket_description": "Untdek ynhâld fan hege kwaliteit mei help fan Pocket (no ûnderdiel fan Mozilla), dy't jo oars misten.",
|
||||
"highlights_empty_state": "Start mei sneupen en wy toane jo guon moaie artikelen, fideo's en oare siden dy't jo resint besocht hawwe of in blêdwizer fan makke hawwe.",
|
||||
"topstories_empty_state": "Jo binne by. Kom letter werom foar mear ferhalen fan {provider}. Kin jo net wachtsje? Selektearje in populêr ûnderwerp om mear ferhalen fan it ynternet te finen.",
|
||||
"manual_migration_explanation2": "Probearje Firefox en ymportearje de blêdwizers, skiednis en wachtwurden fan oare browsers.",
|
||||
"manual_migration_cancel_button": "Nee tankewol",
|
||||
"manual_migration_import_button": "No ymportearje",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Topwebsite tafoegje"
|
||||
"error_fallback_default_info": "Oeps, der is wat misgien by it laden fan dizze ynhâld.",
|
||||
"error_fallback_default_refresh_suggestion": "Fernij de side om it opnij te probearjen.",
|
||||
"section_menu_action_remove_section": "Seksje fuortsmite",
|
||||
"section_menu_action_collapse_section": "Seksje ynklappe",
|
||||
"section_menu_action_expand_section": "Seksje útklappe",
|
||||
"section_menu_action_manage_section": "Seksje beheare",
|
||||
"section_menu_action_add_topsite": "Topwebsite tafoegje",
|
||||
"section_menu_action_move_up": "Omheech ferpleatse",
|
||||
"section_menu_action_move_down": "Omleech ferpleatse",
|
||||
"section_menu_action_privacy_notice": "Privacyferklearring",
|
||||
"section_info_option": "Ynfo",
|
||||
"section_info_privacy_notice": "Privacyferklearring",
|
||||
"settings_pane_bookmarks_body": "Jo koartlyn oanmakke blêdwizers op ien handich plak.",
|
||||
"settings_pane_visit_again_body": "Firefox sil jo ûnderdielen fan jo sneupskiednis toane dy't jo miskien ûnthâlde of nei werom gean wolle.",
|
||||
"edit_topsites_button_label": "Jo seksje Topwebsites oanpasse",
|
||||
"edit_topsites_showmore_button": "Mear toane",
|
||||
"edit_topsites_showless_button": "Minder toane",
|
||||
"edit_topsites_done_button": "Dien",
|
||||
"edit_topsites_pin_button": "Dizze side fêstsette",
|
||||
"edit_topsites_unpin_button": "Dizze webstee loskeppelje",
|
||||
"edit_topsites_dismiss_button": "Dizze side fuortsmite",
|
||||
"edit_topsites_add_button": "Tafoegje",
|
||||
"pocket_feedback_header": "It bêste fan it web, sammele troch mear as 25 miljoen minsken."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Cuardach {search_engine_name}",
|
||||
"search_web_placeholder": "Cuardaigh an Gréasán",
|
||||
"search_settings": "Socruithe Cuardaigh",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Send Feedback",
|
||||
"section_info_privacy_notice": "Privacy Notice",
|
||||
"section_disclaimer_topstories": "The most interesting stories on the web, selected based on what you read. From Pocket, now part of Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Learn how it works.",
|
||||
"section_disclaimer_topstories_buttontext": "Okay, got it",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}n",
|
||||
"time_label_hour": "{number}u",
|
||||
"time_label_day": "{number}l",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Saincheap an Leathanach do Chluaisín Nua",
|
||||
"settings_pane_header": "Sainroghanna do Chluaisín Nua",
|
||||
"settings_pane_body2": "Choose what you see on this page.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Na suímh Ghréasáin a dtugann tú cuairt orthu is minice.",
|
||||
"settings_pane_topsites_options_showmore": "Taispeáin dhá shraith",
|
||||
"settings_pane_bookmarks_header": "Leabharmharcanna Le Déanaí",
|
||||
"settings_pane_bookmarks_body": "Do chuid leabharmharcanna nua in áit amháin.",
|
||||
"settings_pane_visit_again_header": "Cuairt Arís",
|
||||
"settings_pane_visit_again_body": "Taispeánann Firefox nascanna ó do stair bhrabhsála a mbeadh suim agat filleadh orthu amach anseo.",
|
||||
"settings_pane_highlights_header": "Highlights",
|
||||
"settings_pane_highlights_body2": "Find your way back to interesting things you’ve recently visited or bookmarked.",
|
||||
"settings_pane_highlights_options_bookmarks": "Bookmarks",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Déanta",
|
||||
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
|
||||
"edit_topsites_button_text": "Eagar",
|
||||
"edit_topsites_button_label": "Saincheap na Barrshuímh",
|
||||
"edit_topsites_showmore_button": "Taispeáin níos mó",
|
||||
"edit_topsites_showless_button": "Taispeáin níos lú",
|
||||
"edit_topsites_done_button": "Déanta",
|
||||
"edit_topsites_pin_button": "Greamaigh an suíomh seo",
|
||||
"edit_topsites_unpin_button": "Díghreamaigh an suíomh seo",
|
||||
"edit_topsites_edit_button": "Cuir an suíomh seo in eagar",
|
||||
"edit_topsites_dismiss_button": "Ruaig an suíomh seo",
|
||||
"edit_topsites_add_button": "Cuir leis",
|
||||
"topsites_form_add_header": "Barrshuíomh Nua",
|
||||
"topsites_form_edit_header": "Cuir an Barrshuíomh in Eagar",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Cuir teideal isteach",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Clóscríobh nó greamaigh URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Cuir leis",
|
||||
"topsites_form_save_button": "Sábháil",
|
||||
"topsites_form_cancel_button": "Cealaigh",
|
||||
"topsites_form_url_validation": "URL neamhbhailí",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Topaicí i mbéal an phobail:",
|
||||
"pocket_read_even_more": "Tuilleadh Scéalta",
|
||||
"pocket_feedback_header": "Ábhar den chéad scoth ón Ghréasán, le níos mó ná 25 milliún duine i mbun coimeádaíochta.",
|
||||
"pocket_description": "Discover high-quality content you might otherwise miss, with help from Pocket, now part of Mozilla.",
|
||||
"highlights_empty_state": "Start browsing, and we’ll show some of the great articles, videos, and other pages you’ve recently visited or bookmarked here.",
|
||||
"topstories_empty_state": "You’ve caught up. Check back later for more top stories from {provider}. Can’t wait? Select a popular topic to find more great stories from around the web.",
|
||||
|
@ -113,8 +115,19 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"settings_pane_body": "Roghnaigh na rudaí a fheicfidh tú nuair a osclóidh tú cluaisín nua.",
|
||||
"settings_pane_bookmarks_body": "Do chuid leabharmharcanna nua in áit amháin.",
|
||||
"settings_pane_visit_again_body": "Taispeánann Firefox nascanna ó do stair bhrabhsála a mbeadh suim agat filleadh orthu amach anseo.",
|
||||
"settings_pane_pocketstories_header": "Barrscéalta",
|
||||
"settings_pane_pocketstories_body": "Le Pocket, ball de theaghlach Mozilla, beidh tú ábalta teacht ar ábhar den chéad scoth go héasca.",
|
||||
"edit_topsites_button_label": "Saincheap na Barrshuímh",
|
||||
"edit_topsites_showmore_button": "Taispeáin níos mó",
|
||||
"edit_topsites_showless_button": "Taispeáin níos lú",
|
||||
"edit_topsites_done_button": "Déanta",
|
||||
"edit_topsites_pin_button": "Greamaigh an suíomh seo",
|
||||
"edit_topsites_unpin_button": "Díghreamaigh an suíomh seo",
|
||||
"edit_topsites_dismiss_button": "Ruaig an suíomh seo",
|
||||
"edit_topsites_add_button": "Cuir leis",
|
||||
"pocket_feedback_header": "Ábhar den chéad scoth ón Ghréasán, le níos mó ná 25 milliún duine i mbun coimeádaíochta.",
|
||||
"pocket_feedback_body": "Le Pocket, ball de theaghlach Mozilla, beidh tú ábalta teacht ar ábhar den chéad scoth go héasca.",
|
||||
"pocket_send_feedback": "Tabhair Aiseolas Dúinn"
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,12 +11,12 @@ window.gActivityStreamStrings = {
|
|||
"header_bookmarks_placeholder": "Chan eil comharra-lìn sam bith agad fhathast.",
|
||||
"header_stories_from": "o",
|
||||
"context_menu_button_sr": "Fosgail an clàr-taice co-theacsail aig {title}",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"section_context_menu_button_sr": "Fosgail clàr-taice co-theacsail na h-earrainn",
|
||||
"type_label_visited": "Na thadhail thu air",
|
||||
"type_label_bookmarked": "’Nan comharran-lìn",
|
||||
"type_label_synced": "Sioncronaichte o uidheam eile",
|
||||
"type_label_recommended": "A’ treandadh",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "Air a shàbhaladh ann am Pocket",
|
||||
"type_label_open": "Fosgailte",
|
||||
"type_label_topic": "Cuspair",
|
||||
"type_label_now": "An-dràsta",
|
||||
|
@ -33,16 +33,14 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "A bheil thu cinnteach gu bheil thu airson gach ionstans na duilleige seo a sguabadh às an eachdraidh agad?",
|
||||
"confirm_history_delete_notice_p2": "Cha ghabh seo a neo-dhèanamh.",
|
||||
"menu_action_save_to_pocket": "Sàbhail sa phòcaid",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "Air a sguabadh à Pocket",
|
||||
"menu_action_archive_pocket": "Tasglannaich ann am Pocket",
|
||||
"search_for_something_with": "Lorg {search_term} le:",
|
||||
"search_button": "Lorg",
|
||||
"search_header": "Lorg le {search_engine_name}",
|
||||
"search_web_placeholder": "Lorg air an lìon",
|
||||
"search_settings": "Atharraich roghainnean an luirg",
|
||||
"section_info_option": "Fiosrachadh",
|
||||
"section_info_send_feedback": "Cuir thugainn do bheachdan",
|
||||
"section_info_privacy_notice": "Sanas prìobhaideachd",
|
||||
"section_disclaimer_topstories": "Na sgeulachdan as inntinniche air an lìon, air a thaghadh a-rèir na bhios tu a’ leughadh. O Phocket, a tha ’na phàirt de Mhozilla a-nis.",
|
||||
"section_disclaimer_topstories_linktext": "Seo mar a dh’obraicheas e.",
|
||||
"section_disclaimer_topstories_buttontext": "Ceart, tha mi agaibh",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}u",
|
||||
"time_label_day": "{number}l",
|
||||
"prefs_home_header": "Susbaint sgrìn mhòr Firefox",
|
||||
"prefs_home_description": "Tagh an t-susbaint a bu mhath leat fhaicinn air sgrìn mhòr Firefox",
|
||||
"prefs_restore_defaults_button": "Aisig na bun-roghainnean",
|
||||
"prefs_section_rows_option": "{num} ràgh;{num} ràgh;{num} ràghan;{num} ràgh",
|
||||
"prefs_search_header": "Lorg air an lìon",
|
||||
"prefs_topsites_description": "Na làraichean air an tadhail thu as trice",
|
||||
"prefs_topstories_description": "Brod susbaint a dh’fhairtlicheadh ort",
|
||||
"prefs_topstories_show_sponsored_label": "Sgeulachdan sponsairichte {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "Barrachd fiosrachaidh",
|
||||
"prefs_highlights_description": "Taghadh de làraichean a shàbhail thu no air an do thadhail thu",
|
||||
"prefs_snippets_description": "Ùrachaidhean o Mozilla is Firefox",
|
||||
"settings_pane_button_label": "Gnàthaich duilleag nan tabaichean ùra agad",
|
||||
"settings_pane_header": "Roghainnean nan tabaichean ùra",
|
||||
"settings_pane_body2": "Tagh na chì thu air an duilleag seo.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Faigh cothrom air na làraichean air an tadhail thu gu tric.",
|
||||
"settings_pane_topsites_options_showmore": "Seall dà ràgh",
|
||||
"settings_pane_bookmarks_header": "Comharran-lìn o chionn goirid",
|
||||
"settings_pane_bookmarks_body": "Na comharran-lìn ùra agad san aon àite ghoireasach.",
|
||||
"settings_pane_visit_again_header": "Tadhail a-rithist",
|
||||
"settings_pane_visit_again_body": "Seallaidh Firefox cuid dhen eachdraidh bhrabhsaidh agad dhut a bu toil leat cuimhneachadh no tadhal air a-rithist ma dh’fhaoidte.",
|
||||
"settings_pane_highlights_header": "Sàr-roghainn",
|
||||
"settings_pane_highlights_body2": "Faigh greim gu furasta air rudan inntinneach air an do thadhail thu roimhe no a rinn thu comharran-lìn dhiubh.",
|
||||
"settings_pane_highlights_options_bookmarks": "Comharran-lìn",
|
||||
|
@ -74,43 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Deiseil",
|
||||
"settings_pane_topstories_options_sponsored": "Seall sgeulachdan sponsairichte",
|
||||
"edit_topsites_button_text": "Deasaich",
|
||||
"edit_topsites_button_label": "Gnàthaich earrann brod nan làrach agad",
|
||||
"edit_topsites_showmore_button": "Seall barrachd",
|
||||
"edit_topsites_showless_button": "Seall nas lugha",
|
||||
"edit_topsites_done_button": "Deiseil",
|
||||
"edit_topsites_pin_button": "Prìnich an làrach seo",
|
||||
"edit_topsites_unpin_button": "Dì-phrìnich an làrach seo",
|
||||
"edit_topsites_edit_button": "Deasaich an làrach seo",
|
||||
"edit_topsites_dismiss_button": "Leig seachad an làrach seo",
|
||||
"edit_topsites_add_button": "Cuir ris",
|
||||
"topsites_form_add_header": "Brod làraich ùr",
|
||||
"topsites_form_edit_header": "Deasaich am brod làraich",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "Tiotal",
|
||||
"topsites_form_title_placeholder": "Cuir ainm a-steach",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "URL deilbh gnàthaichte",
|
||||
"topsites_form_url_placeholder": "Sgrìobh URL no cuir fear ann",
|
||||
"topsites_form_use_image_link": "Cleachd dealbh gnàthaichte...",
|
||||
"topsites_form_preview_button": "Ro-shealladh",
|
||||
"topsites_form_add_button": "Cuir ris",
|
||||
"topsites_form_save_button": "Sàbhail",
|
||||
"topsites_form_cancel_button": "Sguir dheth",
|
||||
"topsites_form_url_validation": "Tha feum air URL dligheach",
|
||||
"topsites_form_image_validation": "Dh’fhàillig luchdadh an deilbh. Feuch URL eile.",
|
||||
"pocket_read_more": "Cuspairean fèillmhor:",
|
||||
"pocket_read_even_more": "Seall barrachd sgeul",
|
||||
"pocket_feedback_header": "Brod an eadar-lìn, air a dheasachadh le barrachd air 25 millean duine.",
|
||||
"pocket_description": "Fiosraich sàr-shusbaint nach lorgadh tu ’s dòcha le taic o Pocket a tha ’na phàirt dhe Mozilla a-nis.",
|
||||
"highlights_empty_state": "Tòisich air brabhsadh is seallaidh sinn dhut an-seo cuid dhe na h-artaigilean, videothan is duilleagan eile air an do thadhail thu no a chuir thu ris na comharran-lìn o chionn ghoirid.",
|
||||
"topstories_empty_state": "Sin na naidheachdan uile o {provider} an-dràsta ach bidh barrachd ann a dh’aithghearr. No thoir sùil air cuspair air a bheil fèill mhòr is leugh na tha a’ dol mun cuairt air an lìon an-dràsta.",
|
||||
"manual_migration_explanation2": "Feuch Firefox leis na comharran-lìn, an eachdraidh ’s na faclan-faire o bhrabhsair eile.",
|
||||
"manual_migration_cancel_button": "Chan eil, tapadh leibh",
|
||||
"manual_migration_import_button": "Ion-phortaich an-dràsta",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "Cuir ris brod làraich"
|
||||
"error_fallback_default_info": "Ìoc, chaidh rudeigin cearr fhad ’s a bha sinn a’ luchdadh na susbaint seo.",
|
||||
"error_fallback_default_refresh_suggestion": "Ath-nuadhaich an duilleag airson fheuchainn ris a-rithist.",
|
||||
"section_menu_action_remove_section": "Thoir an earrann air falbh",
|
||||
"section_menu_action_collapse_section": "Co-theannaich an earrann",
|
||||
"section_menu_action_expand_section": "Leudaich an earrann",
|
||||
"section_menu_action_manage_section": "Stiùirich an earrann",
|
||||
"section_menu_action_add_topsite": "Cuir ris brod làraich",
|
||||
"section_menu_action_move_up": "Gluais suas",
|
||||
"section_menu_action_move_down": "Gluais sìos",
|
||||
"section_menu_action_privacy_notice": "Sanas prìobhaideachd",
|
||||
"section_info_option": "Fiosrachadh",
|
||||
"section_info_privacy_notice": "Sanas prìobhaideachd",
|
||||
"settings_pane_bookmarks_body": "Na comharran-lìn ùra agad san aon àite ghoireasach.",
|
||||
"settings_pane_visit_again_body": "Seallaidh Firefox cuid dhen eachdraidh bhrabhsaidh agad dhut a bu toil leat cuimhneachadh no tadhal air a-rithist ma dh’fhaoidte.",
|
||||
"edit_topsites_button_label": "Gnàthaich earrann brod nan làrach agad",
|
||||
"edit_topsites_showmore_button": "Seall barrachd",
|
||||
"edit_topsites_showless_button": "Seall nas lugha",
|
||||
"edit_topsites_done_button": "Deiseil",
|
||||
"edit_topsites_pin_button": "Prìnich an làrach seo",
|
||||
"edit_topsites_unpin_button": "Dì-phrìnich an làrach seo",
|
||||
"edit_topsites_dismiss_button": "Leig seachad an làrach seo",
|
||||
"edit_topsites_add_button": "Cuir ris",
|
||||
"pocket_feedback_header": "Brod an eadar-lìn, air a dheasachadh le barrachd air 25 millean duine."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Busca de {search_engine_name}",
|
||||
"search_web_placeholder": "Buscar na Web",
|
||||
"search_settings": "Cambiar configuración da busca",
|
||||
"section_info_option": "Información",
|
||||
"section_info_send_feedback": "Enviar opinión",
|
||||
"section_info_privacy_notice": "Política de privacidade",
|
||||
"section_disclaimer_topstories": "The most interesting stories on the web, selected based on what you read. From Pocket, now part of Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Learn how it works.",
|
||||
"section_disclaimer_topstories_buttontext": "Okay, got it",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Personalice a páxina de nova lapela",
|
||||
"settings_pane_header": "Preferencias de nova lapela",
|
||||
"settings_pane_body2": "Escolla que quere ver nesta páxina.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Acceda aos sitios web que máis visita.",
|
||||
"settings_pane_topsites_options_showmore": "Amosar dúas filas",
|
||||
"settings_pane_bookmarks_header": "Marcadores recentes",
|
||||
"settings_pane_bookmarks_body": "Your newly created bookmarks in one handy location.",
|
||||
"settings_pane_visit_again_header": "Visit Again",
|
||||
"settings_pane_visit_again_body": "Firefox will show you parts of your browsing history that you might want to remember or get back to.",
|
||||
"settings_pane_highlights_header": "Destacados",
|
||||
"settings_pane_highlights_body2": "Find your way back to interesting things you’ve recently visited or bookmarked.",
|
||||
"settings_pane_highlights_options_bookmarks": "Marcadores",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Feito",
|
||||
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
|
||||
"edit_topsites_button_text": "Editar",
|
||||
"edit_topsites_button_label": "Personalizar a sección de sitios favoritos",
|
||||
"edit_topsites_showmore_button": "Amosar máis",
|
||||
"edit_topsites_showless_button": "Amosar menos",
|
||||
"edit_topsites_done_button": "Feito",
|
||||
"edit_topsites_pin_button": "Fixar este sitio",
|
||||
"edit_topsites_unpin_button": "Quitar este sitio fixo",
|
||||
"edit_topsites_edit_button": "Editar este sitio",
|
||||
"edit_topsites_dismiss_button": "Rexeitar este sitio",
|
||||
"edit_topsites_add_button": "Engadir",
|
||||
"topsites_form_add_header": "Novo sitio favorito",
|
||||
"topsites_form_edit_header": "Editar sitio favorito",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Escribir un título",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Escribir ou pegar un URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Engadir",
|
||||
"topsites_form_save_button": "Gardar",
|
||||
"topsites_form_cancel_button": "Cancelar",
|
||||
"topsites_form_url_validation": "Requírese un URL válido",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Temas populares:",
|
||||
"pocket_read_even_more": "Ver máis historias",
|
||||
"pocket_feedback_header": "O mellor da Web, seleccionado por máis de 25 millóns de persoas.",
|
||||
"pocket_description": "Discover high-quality content you might otherwise miss, with help from Pocket, now part of Mozilla.",
|
||||
"highlights_empty_state": "Start browsing, and we’ll show some of the great articles, videos, and other pages you’ve recently visited or bookmarked here.",
|
||||
"topstories_empty_state": "You’ve caught up. Check back later for more top stories from {provider}. Can’t wait? Select a popular topic to find more great stories from around the web.",
|
||||
|
@ -111,5 +113,16 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Información",
|
||||
"section_info_privacy_notice": "Política de privacidade",
|
||||
"edit_topsites_button_label": "Personalizar a sección de sitios favoritos",
|
||||
"edit_topsites_showmore_button": "Amosar máis",
|
||||
"edit_topsites_showless_button": "Amosar menos",
|
||||
"edit_topsites_done_button": "Feito",
|
||||
"edit_topsites_pin_button": "Fixar este sitio",
|
||||
"edit_topsites_unpin_button": "Quitar este sitio fixo",
|
||||
"edit_topsites_dismiss_button": "Rexeitar este sitio",
|
||||
"edit_topsites_add_button": "Engadir",
|
||||
"pocket_feedback_header": "O mellor da Web, seleccionado por máis de 25 millóns de persoas."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "Eheka {search_engine_name} ndive",
|
||||
"search_web_placeholder": "Ñandutivevépe Jeheka",
|
||||
"search_settings": "Jeheka Reko Moambue",
|
||||
"section_info_option": "Kuaarã",
|
||||
"section_info_send_feedback": "Temimo'ã Ñemondo",
|
||||
"section_info_privacy_notice": "Tekovepypegua Rehegua",
|
||||
"section_disclaimer_topstories": "Mba'erechapyrã ñandutivevepegua ojeiporavóva ndéve g̃uarã ojejesareko rupi remoñe'ẽva jepi rehe. Pocket guive ha'éva ko'ág̃a Mozilla mba'e.",
|
||||
"section_disclaimer_topstories_linktext": "Eikuaave mba'éichapa oiko.",
|
||||
"section_disclaimer_topstories_buttontext": "Oĩma, hesakãma chéve",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Eñemomba'e ne Tendayke Pyahu roguére",
|
||||
"settings_pane_header": "Tendayke Pyahu Jeguererohoryrã",
|
||||
"settings_pane_body2": "Eiporavo rehechaséva ko toguépe.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Eike ñandutirenda rehechajepivévape.",
|
||||
"settings_pane_topsites_options_showmore": "Mokõi tysýi jechauka",
|
||||
"settings_pane_bookmarks_header": "Techaukaha Ramovéva",
|
||||
"settings_pane_bookmarks_body": "Techaukaha remoheñóiva peteĩ tenda porãvévape.",
|
||||
"settings_pane_visit_again_header": "Eike Jey",
|
||||
"settings_pane_visit_again_body": "Firefox ohechaukáta ndéve rechámava'ekue ha oiméne nemandu'aséva hese ýrõ rehechasejeýva.",
|
||||
"settings_pane_highlights_header": "Mba'erechapyrã",
|
||||
"settings_pane_highlights_body2": "Ehekajey tape reipuruva'ekue reg̃uahẽvo ñandutiroguépe reguerohorýva'ekue.",
|
||||
"settings_pane_highlights_options_bookmarks": "Techaukaha",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Oĩmbáma",
|
||||
"settings_pane_topstories_options_sponsored": "Ehechauka Mombe'upy ojehepyme'ẽva'ekue hese",
|
||||
"edit_topsites_button_text": "Mbosako'i",
|
||||
"edit_topsites_button_label": "Eñemomba'e Tendáre ojehechaukahápe Togue Ojehechavéva",
|
||||
"edit_topsites_showmore_button": "Ahechaseve",
|
||||
"edit_topsites_showless_button": "Ahechase Mbykyve",
|
||||
"edit_topsites_done_button": "Oĩmbáma",
|
||||
"edit_topsites_pin_button": "Emboja ko tenda",
|
||||
"edit_topsites_unpin_button": "Emboja'ỹ ko tenda",
|
||||
"edit_topsites_edit_button": "Embosako'i ko tenda",
|
||||
"edit_topsites_dismiss_button": "Emboguete ko tenda",
|
||||
"edit_topsites_add_button": "Embojoapy",
|
||||
"topsites_form_add_header": "Tenda Pyahu Ojeikevéva",
|
||||
"topsites_form_edit_header": "Tenda Ojeikevéva Mbosako'i",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Ehai herarã",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Ehai térã emboja peteĩ URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Embojoapy",
|
||||
"topsites_form_save_button": "Ñongatu",
|
||||
"topsites_form_cancel_button": "Heja",
|
||||
"topsites_form_url_validation": "Oñeikotevẽ URL oiko porãva",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Ñe'ẽmbyrã Ojehayhuvéva:",
|
||||
"pocket_read_even_more": "Ahechaseve Mombe'upy",
|
||||
"pocket_feedback_header": "Mba'e porãvéva ñandutivevepegua, oiporavóva ndéve g̃uarã 25 su tapicha.",
|
||||
"pocket_description": "Ejuhu mba'erecharã iporãitéva Pocket rupive, ha'éva ko'ág̃a Mozilla rembipuru.",
|
||||
"highlights_empty_state": "Eñepyrũ eikundaha ha rohechaukáta ndéve mba'ehai, mba'erecharã oĩva ha ambue ñandutirenda reikeva'ekue ýrõ rembotechaukava'ekue.",
|
||||
"topstories_empty_state": "Ko'ág̃a reikuaapáma ipyahúva. Eikejey ag̃ave ápe eikuaávo mombe'upy pyahu {provider} oikuave'ẽva ndéve. Ndaikatuvéima reha'ãrõ? Eiporavo peteĩ ñe'ẽmbyrã ha emoñe'ẽve oĩvéva ñande yvy ape ári.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Kuaarã",
|
||||
"section_info_privacy_notice": "Tekovepypegua Rehegua",
|
||||
"settings_pane_bookmarks_body": "Techaukaha remoheñóiva peteĩ tenda porãvévape.",
|
||||
"settings_pane_visit_again_body": "Firefox ohechaukáta ndéve rechámava'ekue ha oiméne nemandu'aséva hese ýrõ rehechasejeýva.",
|
||||
"edit_topsites_button_label": "Eñemomba'e Tendáre ojehechaukahápe Togue Ojehechavéva",
|
||||
"edit_topsites_showmore_button": "Ahechaseve",
|
||||
"edit_topsites_showless_button": "Ahechase Mbykyve",
|
||||
"edit_topsites_done_button": "Oĩmbáma",
|
||||
"edit_topsites_pin_button": "Emboja ko tenda",
|
||||
"edit_topsites_unpin_button": "Emboja'ỹ ko tenda",
|
||||
"edit_topsites_dismiss_button": "Emboguete ko tenda",
|
||||
"edit_topsites_add_button": "Embojoapy",
|
||||
"pocket_feedback_header": "Mba'e porãvéva ñandutivevepegua, oiporavóva ndéve g̃uarã 25 su tapicha."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} શોધ કરો",
|
||||
"search_web_placeholder": "વેબ પર શોધો",
|
||||
"search_settings": "શોધ ના સેટિંગ્સ બદલો",
|
||||
"section_info_option": "માહિતી",
|
||||
"section_info_send_feedback": "પ્રતિસાદ મોકલ",
|
||||
"section_info_privacy_notice": "ગોપનીયતા સૂચના",
|
||||
"section_disclaimer_topstories": "વેબ પરની સૌથી રસપ્રદ વાર્તાઓ, તમે જે વાંચો છો તેના આધારે પસંદ કરેલ છે. Pocket થી, હવે Mozilla નો ભાગ.",
|
||||
"section_disclaimer_topstories_linktext": "તે કેવી રીતે કાર્ય કરે છે તે જાણો.",
|
||||
"section_disclaimer_topstories_buttontext": "ઠીક છે, સમજાઇ ગયું",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}મિનિટ",
|
||||
"time_label_hour": "{number}કલાક",
|
||||
"time_label_day": "{number}દિવસ",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "તમારા નવા ટૅબ પૃષ્ઠને કસ્ટમાઇઝ કરો",
|
||||
"settings_pane_header": "નવી ટેબ પસંદગીઓ",
|
||||
"settings_pane_body2": "તમે આ પૃષ્ઠ પર જે જુઓ છો તે પસંદ કરો.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "તમે સૌથી વધુ મુલાકાત લો છો તે વેબસાઇટ્સને ઍક્સેસ કરો.",
|
||||
"settings_pane_topsites_options_showmore": "બે પંક્તિઓ બતાવો",
|
||||
"settings_pane_bookmarks_header": "તાજેતરના બુકમાર્ક્સ",
|
||||
"settings_pane_bookmarks_body": "તમારા નવા બનાવેલ બુકમાર્ક્સ એક હાથમાં સ્થાનમાં.",
|
||||
"settings_pane_visit_again_header": "ફરી મુલાકાત",
|
||||
"settings_pane_visit_again_body": "ફાયરફોક્સ તમને તમારા બ્રાઉઝિંગ હિસ્ટરીનાં ભાગો બતાવશે જે તમે યાદ રાખવા અથવા પાછા આવવા ઇચ્છતા હોવ.",
|
||||
"settings_pane_highlights_header": "વીતી ગયેલું",
|
||||
"settings_pane_highlights_body2": "તમે તાજેતરમાં મુલાકાત લીધેલા અથવા બુકમાર્ક કરેલી રસપ્રદ વસ્તુઓ પર તમારી રીત શોધો.",
|
||||
"settings_pane_highlights_options_bookmarks": "બુકમાર્ક્સ",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "પૂરું",
|
||||
"settings_pane_topstories_options_sponsored": "પ્રાયોજિત વાર્તાઓ બતાવો",
|
||||
"edit_topsites_button_text": "ફેરફાર કરો",
|
||||
"edit_topsites_button_label": "તમારા ટોચના સાઇટ્સ વિભાગને કસ્ટમાઇઝ કરો",
|
||||
"edit_topsites_showmore_button": "વધારે બતાવો",
|
||||
"edit_topsites_showless_button": "થોડું બતાવો",
|
||||
"edit_topsites_done_button": "પૂરું",
|
||||
"edit_topsites_pin_button": "આ સાઇટને પિન કરો",
|
||||
"edit_topsites_unpin_button": "આ સાઇટ અનપિન કરો",
|
||||
"edit_topsites_edit_button": "આ સાઇટને સંપાદિત કરો",
|
||||
"edit_topsites_dismiss_button": "આ સાઇટને કાઢી નાખો",
|
||||
"edit_topsites_add_button": "ઉમેરો",
|
||||
"topsites_form_add_header": "નવી ટોચની સાઇટ",
|
||||
"topsites_form_edit_header": "ટોચની સાઇટ સંપાદિત કરો",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "શીર્ષક દાખલ કરો",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "URL ટાઇપ કરો અથવા પેસ્ટ કરો",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "ઉમેરો",
|
||||
"topsites_form_save_button": "સાચવો",
|
||||
"topsites_form_cancel_button": "રદ કરો",
|
||||
"topsites_form_url_validation": "માન્ય URL આવશ્યક છે",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "લોકપ્રિય વિષયો:",
|
||||
"pocket_read_even_more": "વધુ વાર્તાઓ જુઓ",
|
||||
"pocket_feedback_header": "2.5 કરોડ વધુ લોકો દ્વારા બનાવાયેલા શ્રેષ્ઠ વેબ.",
|
||||
"pocket_description": "ઉચ્ચ ગુણવત્તાવાળી સામગ્રી શોધો અન્યથા તમે ચૂકી જશો, પોકેટની સહાયથી, હવે મોઝિલાનો એક ભાગ છે.",
|
||||
"highlights_empty_state": "બ્રાઉઝ કરવું પ્રારંભ કરો અને અમે અહીં કેટલાક સરસ લેખો, વિડિઓઝ અને અન્ય પૃષ્ઠો દર્શાવીશું જે તમે તાજેતરમાં મુલાકાત લીધાં છે અથવા બુકમાર્ક કર્યા છે.",
|
||||
"topstories_empty_state": "તમે પકડાઈ ગયા છો. {પ્રદાતા} તરફથી વધુ ટોચની વાતો માટે પછીથી પાછા તપાસો. રાહ નથી જોઈ શકતા? સમગ્ર વેબ પરથી વધુ સુંદર વાર્તાઓ શોધવા માટે એક લોકપ્રિય વિષય પસંદ કરો.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "ટોચની સાઇટ ઉમેરો"
|
||||
"section_info_option": "માહિતી",
|
||||
"section_info_privacy_notice": "ગોપનીયતા સૂચના",
|
||||
"settings_pane_bookmarks_body": "તમારા નવા બનાવેલ બુકમાર્ક્સ એક હાથમાં સ્થાનમાં.",
|
||||
"settings_pane_visit_again_body": "ફાયરફોક્સ તમને તમારા બ્રાઉઝિંગ હિસ્ટરીનાં ભાગો બતાવશે જે તમે યાદ રાખવા અથવા પાછા આવવા ઇચ્છતા હોવ.",
|
||||
"edit_topsites_button_label": "તમારા ટોચના સાઇટ્સ વિભાગને કસ્ટમાઇઝ કરો",
|
||||
"edit_topsites_showmore_button": "વધારે બતાવો",
|
||||
"edit_topsites_showless_button": "થોડું બતાવો",
|
||||
"edit_topsites_done_button": "પૂરું",
|
||||
"edit_topsites_pin_button": "આ સાઇટને પિન કરો",
|
||||
"edit_topsites_unpin_button": "આ સાઇટ અનપિન કરો",
|
||||
"edit_topsites_dismiss_button": "આ સાઇટને કાઢી નાખો",
|
||||
"edit_topsites_add_button": "ઉમેરો",
|
||||
"edit_topsites_add_button_tooltip": "ટોચની સાઇટ ઉમેરો",
|
||||
"pocket_feedback_header": "2.5 કરોડ વધુ લોકો દ્વારા બનાવાયેલા શ્રેષ્ઠ વેબ."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -10,13 +10,13 @@ window.gActivityStreamStrings = {
|
|||
"header_recommended_by": "מומלץ על ידי {provider}",
|
||||
"header_bookmarks_placeholder": "אין לך סימניות עדיין.",
|
||||
"header_stories_from": "מאת",
|
||||
"context_menu_button_sr": "Open context menu for {title}",
|
||||
"section_context_menu_button_sr": "Open the section context menu",
|
||||
"context_menu_button_sr": "פתיחת תפריט ההקשר עבור {title}",
|
||||
"section_context_menu_button_sr": "פתיחת תפריט ההקשר של המדור",
|
||||
"type_label_visited": "ביקורים קודמים",
|
||||
"type_label_bookmarked": "שמור כסימניה",
|
||||
"type_label_synced": "סונכרן מהתקן אחר",
|
||||
"type_label_recommended": "פופולרי",
|
||||
"type_label_pocket": "Saved to Pocket",
|
||||
"type_label_pocket": "נשמר ל־Pocket",
|
||||
"type_label_open": "פתיחה",
|
||||
"type_label_topic": "נושא",
|
||||
"type_label_now": "עכשיו",
|
||||
|
@ -33,17 +33,15 @@ window.gActivityStreamStrings = {
|
|||
"confirm_history_delete_p1": "למחוק כל עותק של העמוד הזה מההיסטוריה שלך?",
|
||||
"confirm_history_delete_notice_p2": "לא ניתן לבטל פעולה זו.",
|
||||
"menu_action_save_to_pocket": "שמירה ל־Pocket",
|
||||
"menu_action_delete_pocket": "Delete from Pocket",
|
||||
"menu_action_archive_pocket": "Archive in Pocket",
|
||||
"menu_action_delete_pocket": "מחיקה מ־Pocket",
|
||||
"menu_action_archive_pocket": "העברה לארכיון ב־Pocket",
|
||||
"search_for_something_with": "חיפוש אחר {search_term} עם:",
|
||||
"search_button": "חיפוש",
|
||||
"search_header": "חיפוש ב־{search_engine_name}",
|
||||
"search_web_placeholder": "חיפוש ברשת",
|
||||
"search_settings": "שינוי הגדרות חיפוש",
|
||||
"section_info_option": "מידע",
|
||||
"section_info_send_feedback": "שליחת משוב",
|
||||
"section_info_privacy_notice": "הצהרת פרטיות",
|
||||
"section_disclaimer_topstories": "The most interesting stories on the web, selected based on what you read. From Pocket, now part of Mozilla.",
|
||||
"section_disclaimer_topstories": "הסיפורים המעניינים ביותר באינטרנט, על בסיס מה שמעניין אותך. בעזרת Pocket, כיום חלק מ־Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "מידע על איך זה עובד.",
|
||||
"section_disclaimer_topstories_buttontext": "בסדר, הבנתי",
|
||||
"welcome_title": "ברוכים הבאים לדף הלשונית החדשה",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number} דקות",
|
||||
"time_label_hour": "{number} שעות",
|
||||
"time_label_day": "{number} ימים",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "בחירת תוכן שיוצג במסך הבית של Firefox.",
|
||||
"prefs_restore_defaults_button": "שחזור ברירות מחדל",
|
||||
"prefs_section_rows_option": "שורה אחת;{num} שורות",
|
||||
"prefs_search_header": "חיפוש ברשת",
|
||||
"prefs_topsites_description": "האתרים בהם ביקרת הכי הרבה",
|
||||
"prefs_topstories_description": "תוכן באיכות גבוהה שעלול להתפספס",
|
||||
"prefs_topstories_show_sponsored_label": "סיפורים ממומנים של {provider}",
|
||||
"prefs_topstories_sponsored_learn_more": "מידע נוסף",
|
||||
"prefs_highlights_description": "מבחר של אתרים ששמרת או ביקרת בהם",
|
||||
"prefs_snippets_description": "עדכונים מ־Mozilla ו־Firefox",
|
||||
"settings_pane_button_label": "התאמה אישית של דף הלשונית החדשה שלך",
|
||||
"settings_pane_header": "העדפות לשונית חדשה",
|
||||
"settings_pane_body2": "בחירה של מה שיופיע בעמוד הזה.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "גישה לאתרים בהם ביקרת הכי הרבה.",
|
||||
"settings_pane_topsites_options_showmore": "הצגת שתי שורות",
|
||||
"settings_pane_bookmarks_header": "סימניות אחרונות",
|
||||
"settings_pane_bookmarks_body": "הסימניות החדשות שיצרת במיקום נוח ואחיד.",
|
||||
"settings_pane_visit_again_header": "ביקור חוזר",
|
||||
"settings_pane_visit_again_body": "Firefox תציג לך חלקים מהיסטוריית הגלישה שלך שאולי יעניין אותך להיזכר בהם או לחזור אליהם.",
|
||||
"settings_pane_highlights_header": "מומלצים",
|
||||
"settings_pane_highlights_body2": "מציאת הדרך חזרה לדברים שמעניינים אותך בהתאם לפריטים בהם ביקרת לאחרונה או הוספת לסימניות.",
|
||||
"settings_pane_highlights_options_bookmarks": "סימניות",
|
||||
|
@ -74,42 +81,50 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "סיום",
|
||||
"settings_pane_topstories_options_sponsored": "הצגת סיפורים ממומנים",
|
||||
"edit_topsites_button_text": "עריכה",
|
||||
"edit_topsites_button_label": "התאמת אגף האתרים המובילים שלך",
|
||||
"edit_topsites_showmore_button": "להציג יותר",
|
||||
"edit_topsites_showless_button": "להציג פחות",
|
||||
"edit_topsites_done_button": "סיום",
|
||||
"edit_topsites_pin_button": "נעיצת אתר זה",
|
||||
"edit_topsites_unpin_button": "ביטול הצמדת אתר זה",
|
||||
"edit_topsites_edit_button": "עריכת אתר זה",
|
||||
"edit_topsites_dismiss_button": "הסרת אתר זה",
|
||||
"edit_topsites_add_button": "הוספה",
|
||||
"topsites_form_add_header": "אתר מוביל חדש",
|
||||
"topsites_form_edit_header": "עריכת אתר מוביל",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_label": "כותרת",
|
||||
"topsites_form_title_placeholder": "נא להזין כותרת",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_url_label": "כתובת",
|
||||
"topsites_form_image_url_label": "כתובת תמונה מותאמת אישית",
|
||||
"topsites_form_url_placeholder": "נא להקליד או להזין כתובת",
|
||||
"topsites_form_use_image_link": "שימוש בתמונה מותאמת אישית…",
|
||||
"topsites_form_preview_button": "תצוגה מקדימה",
|
||||
"topsites_form_add_button": "הוספה",
|
||||
"topsites_form_save_button": "שמירה",
|
||||
"topsites_form_cancel_button": "ביטול",
|
||||
"topsites_form_url_validation": "נדרשת כתובת תקינה",
|
||||
"topsites_form_image_validation": "טעינת התמונה נכשלה. נא לנסות כתובת שונה.",
|
||||
"pocket_read_more": "נושאים פופולריים:",
|
||||
"pocket_read_even_more": "צפייה בחדשות נוספות",
|
||||
"pocket_feedback_header": "המיטב מרחבי האינטרנט, נאסף על ידי 25 מיליון אנשים.",
|
||||
"pocket_description": "ניתן להחשף לתוכן באיכות גבוהה שיתכן שלא היית רואה, בעזרת Pocket, שכיום מהווה חלק מ־Mozilla.",
|
||||
"highlights_empty_state": "ניתן להתחיל בגלישה ואנו נציג בפניך מספר כתבות, סרטונים ועמודים שונים מעולים בהם ביקרת לאחרונה או שהוספת לסימניות.",
|
||||
"topstories_empty_state": "התעדכנת בכל הסיפורים. כדאי לנסות שוב מאוחר יותר כדי לקבל עוד סיפורים מובילים מאת {provider}. לא רוצה לחכות? ניתן לבחור נושא נפוץ כדי למצוא עוד סיפורים נפלאים מרחבי הרשת.",
|
||||
"manual_migration_explanation2": "ניתן להתנסות ב־Firefox עם הסימניות, ההיסטוריה והססמאות מדפדפן אחר.",
|
||||
"manual_migration_cancel_button": "לא תודה",
|
||||
"manual_migration_import_button": "ייבוא כעת",
|
||||
"error_fallback_default_info": "Oops, something went wrong loading this content.",
|
||||
"error_fallback_default_refresh_suggestion": "Refresh page to try again.",
|
||||
"section_menu_action_remove_section": "Remove Section",
|
||||
"section_menu_action_collapse_section": "Collapse Section",
|
||||
"section_menu_action_expand_section": "Expand Section",
|
||||
"section_menu_action_manage_section": "Manage Section",
|
||||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"error_fallback_default_info": "אופס, משהו השתבש בעת טעינת התוכן הזה.",
|
||||
"error_fallback_default_refresh_suggestion": "נא לרענן את הדף כדי לנסות שוב.",
|
||||
"section_menu_action_remove_section": "הסרת מדור",
|
||||
"section_menu_action_collapse_section": "צמצום מדור",
|
||||
"section_menu_action_expand_section": "הרחבת מדור",
|
||||
"section_menu_action_manage_section": "ניהול מדור",
|
||||
"section_menu_action_add_topsite": "הוספת אתר מוביל",
|
||||
"section_menu_action_move_up": "העברה למעלה",
|
||||
"section_menu_action_move_down": "העברה למטה",
|
||||
"section_menu_action_privacy_notice": "הצהרת פרטיות",
|
||||
"section_info_option": "מידע",
|
||||
"section_info_privacy_notice": "הצהרת פרטיות",
|
||||
"settings_pane_bookmarks_body": "הסימניות החדשות שיצרת במיקום נוח ואחיד.",
|
||||
"settings_pane_visit_again_body": "Firefox תציג לך חלקים מהיסטוריית הגלישה שלך שאולי יעניין אותך להיזכר בהם או לחזור אליהם.",
|
||||
"edit_topsites_button_label": "התאמת אגף האתרים המובילים שלך",
|
||||
"edit_topsites_showmore_button": "להציג יותר",
|
||||
"edit_topsites_showless_button": "להציג פחות",
|
||||
"edit_topsites_done_button": "סיום",
|
||||
"edit_topsites_pin_button": "נעיצת אתר זה",
|
||||
"edit_topsites_unpin_button": "ביטול הצמדת אתר זה",
|
||||
"edit_topsites_dismiss_button": "הסרת אתר זה",
|
||||
"edit_topsites_add_button": "הוספה",
|
||||
"pocket_feedback_header": "המיטב מרחבי האינטרנט, נאסף על ידי 25 מיליון אנשים."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} खोज",
|
||||
"search_web_placeholder": "वेब पर खोजें",
|
||||
"search_settings": "खोज सेटिंग बदलें",
|
||||
"section_info_option": "सूचना",
|
||||
"section_info_send_feedback": "प्रतिक्रिया भेजें",
|
||||
"section_info_privacy_notice": "गोपनीयता सूचना",
|
||||
"section_disclaimer_topstories": "वेब पर सबसे दिलचस्प कहानियाँ, आपके पठन के आधार पर चयनित. Pocket के द्वारा, जो अब है Mozilla का हिस्सा.",
|
||||
"section_disclaimer_topstories_linktext": "जाने यह कैसे काम करता है.",
|
||||
"section_disclaimer_topstories_buttontext": "ठीक है, समझ गए",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}मि0",
|
||||
"time_label_hour": "{number}मि0",
|
||||
"time_label_day": "{number}दिन",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "अपने नए टैब पृष्ठ को अनुकूलित करें",
|
||||
"settings_pane_header": "नयी टैब वरीयताएँ",
|
||||
"settings_pane_body2": "चुनें कि आप इस पृष्ठ पर क्या देखते हैं.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "आपके द्वारा सबसे ज्यादा खोजी जाने वाली वेबसाइट्स देखें.",
|
||||
"settings_pane_topsites_options_showmore": "दो पंक्तियाँ दिखाएँ",
|
||||
"settings_pane_bookmarks_header": "आधुनिक पुस्तचिह्न",
|
||||
"settings_pane_bookmarks_body": "आपके नए पुस्तचिह्न एक सुविधाजनक स्थान पर.",
|
||||
"settings_pane_visit_again_header": "पुनः पधारें",
|
||||
"settings_pane_visit_again_body": "Firefox आपको याद है या पुन: प्राप्त करने के लिए चाहते हो सकता है आपके ब्राउज़िंग इतिहास के कुछ हिस्सों दिखाएगा.",
|
||||
"settings_pane_highlights_header": "झलकियाँ",
|
||||
"settings_pane_highlights_body2": "हाल ही में देखी गयी या पुस्तचिंहित की गयी रोचक चीज़ों पर वापस जाएँ.",
|
||||
"settings_pane_highlights_options_bookmarks": "पुस्तचिह्न",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "संपन्न",
|
||||
"settings_pane_topstories_options_sponsored": "प्रायोजित कहानियाँ दिखाएँ",
|
||||
"edit_topsites_button_text": "संपादित करें",
|
||||
"edit_topsites_button_label": "अपने शीर्ष साइट्स अनुभाग को अनुकूलित करें",
|
||||
"edit_topsites_showmore_button": "अधिक दिखाएँ",
|
||||
"edit_topsites_showless_button": "कम दिखाएँ",
|
||||
"edit_topsites_done_button": "पूर्ण",
|
||||
"edit_topsites_pin_button": "इस साइट को पिन करें",
|
||||
"edit_topsites_unpin_button": "इस साइट को पिन मुक्त करें",
|
||||
"edit_topsites_edit_button": "इस साइट को संपादित करें",
|
||||
"edit_topsites_dismiss_button": "इस साइट को ख़ारिज करें",
|
||||
"edit_topsites_add_button": "जोड़ें",
|
||||
"topsites_form_add_header": "नई शीर्ष साइट",
|
||||
"topsites_form_edit_header": "शीर्ष साइट संपादित करें",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "एक शीर्षक दर्ज करें",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "एक URL टाइप करें अथवा पेस्ट करें",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "जोड़ें",
|
||||
"topsites_form_save_button": "सहेजें",
|
||||
"topsites_form_cancel_button": "रद्द करें",
|
||||
"topsites_form_url_validation": "मान्य URL आवश्यक",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "लोकप्रिय विषय:",
|
||||
"pocket_read_even_more": "और कहानियाँ देखें",
|
||||
"pocket_feedback_header": "वेब का सबसे बढ़िया हिस्सा, 25 लाख लोगों द्वारा निरीक्षित.",
|
||||
"pocket_description": "पॉकेट, जो अब Mozilla का हिस्सा है, की मदद से अन्यथा आपसे छूटने वाली उच्च-गुणवत्ता सामग्रियों को खोजें.",
|
||||
"highlights_empty_state": "ब्राउज़िंग प्रारंभ करें, और हम कुछ प्रमुख आलेख, विडियो, तथा अन्य पृष्ठों को प्रदर्शित करेंगे जिन्हें आपने हाल ही में देखा या पुस्तचिन्हित किया है.",
|
||||
"topstories_empty_state": "आप अंत तक आ गए हैं. {provider} से और शीर्ष घटनाओं के लिए कुछ समय में पुनः आइए. इंतज़ार नहीं कर सकते? वेब से और प्रमुख घटनाएं ढूंढने के लिए एक लोकप्रिय विषय चुनें.",
|
||||
|
@ -112,5 +114,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"edit_topsites_add_button_tooltip": "शीर्ष साइट जोड़ें"
|
||||
"section_info_option": "सूचना",
|
||||
"section_info_privacy_notice": "गोपनीयता सूचना",
|
||||
"settings_pane_bookmarks_body": "आपके नए पुस्तचिह्न एक सुविधाजनक स्थान पर.",
|
||||
"settings_pane_visit_again_body": "Firefox आपको याद है या पुन: प्राप्त करने के लिए चाहते हो सकता है आपके ब्राउज़िंग इतिहास के कुछ हिस्सों दिखाएगा.",
|
||||
"edit_topsites_button_label": "अपने शीर्ष साइट्स अनुभाग को अनुकूलित करें",
|
||||
"edit_topsites_showmore_button": "अधिक दिखाएँ",
|
||||
"edit_topsites_showless_button": "कम दिखाएँ",
|
||||
"edit_topsites_done_button": "पूर्ण",
|
||||
"edit_topsites_pin_button": "इस साइट को पिन करें",
|
||||
"edit_topsites_unpin_button": "इस साइट को पिन मुक्त करें",
|
||||
"edit_topsites_dismiss_button": "इस साइट को ख़ारिज करें",
|
||||
"edit_topsites_add_button": "जोड़ें",
|
||||
"edit_topsites_add_button_tooltip": "शीर्ष साइट जोड़ें",
|
||||
"pocket_feedback_header": "वेब का सबसे बढ़िया हिस्सा, 25 लाख लोगों द्वारा निरीक्षित."
|
||||
};
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,9 +40,7 @@ window.gActivityStreamStrings = {
|
|||
"search_header": "{search_engine_name} pretraživanje",
|
||||
"search_web_placeholder": "Pretraži web",
|
||||
"search_settings": "Promijeni postavke pretraživanja",
|
||||
"section_info_option": "Info",
|
||||
"section_info_send_feedback": "Pošaljite povratnu informaciju",
|
||||
"section_info_privacy_notice": "Politika privatnosti",
|
||||
"section_disclaimer_topstories": "The most interesting stories on the web, selected based on what you read. From Pocket, now part of Mozilla.",
|
||||
"section_disclaimer_topstories_linktext": "Learn how it works.",
|
||||
"section_disclaimer_topstories_buttontext": "Okay, got it",
|
||||
|
@ -53,6 +51,17 @@ window.gActivityStreamStrings = {
|
|||
"time_label_minute": "{number}m",
|
||||
"time_label_hour": "{number}h",
|
||||
"time_label_day": "{number}d",
|
||||
"prefs_home_header": "Firefox Home Content",
|
||||
"prefs_home_description": "Choose what content you want on your Firefox Home screen.",
|
||||
"prefs_restore_defaults_button": "Restore Defaults",
|
||||
"prefs_section_rows_option": "{num} row;{num} rows",
|
||||
"prefs_search_header": "Web Search",
|
||||
"prefs_topsites_description": "The sites you visit most",
|
||||
"prefs_topstories_description": "High-quality content you might otherwise miss",
|
||||
"prefs_topstories_show_sponsored_label": "{provider} Sponsored Stories",
|
||||
"prefs_topstories_sponsored_learn_more": "Learn more",
|
||||
"prefs_highlights_description": "A selection of sites that you’ve saved or visited",
|
||||
"prefs_snippets_description": "Updates from Mozilla and Firefox",
|
||||
"settings_pane_button_label": "Prilagodite svoju početnu stranicu nove kartice",
|
||||
"settings_pane_header": "Postavke nove kartice",
|
||||
"settings_pane_body2": "Odaberite što vidite na ovoj stranici.",
|
||||
|
@ -62,9 +71,7 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_topsites_body": "Pristupite stranicama koje najčešće posjećujete.",
|
||||
"settings_pane_topsites_options_showmore": "Prikaži dva reda",
|
||||
"settings_pane_bookmarks_header": "Nedavne zabilješke",
|
||||
"settings_pane_bookmarks_body": "Vaše novo stvorene zabilješke na jednom praktičnom mjestu.",
|
||||
"settings_pane_visit_again_header": "Posjetite ponovno",
|
||||
"settings_pane_visit_again_body": "Firefox će vam prikazati dijelove vaše povijesti pretraživanja koje možda želite zapamtiti ili posjetiti ponovno.",
|
||||
"settings_pane_highlights_header": "Istaknuto",
|
||||
"settings_pane_highlights_body2": "Pronađite put natrag do zanimljivih stvari koje ste nedavno posjetili ili zabilježili.",
|
||||
"settings_pane_highlights_options_bookmarks": "Zabilješke",
|
||||
|
@ -74,28 +81,23 @@ window.gActivityStreamStrings = {
|
|||
"settings_pane_done_button": "Gotovo",
|
||||
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
|
||||
"edit_topsites_button_text": "Uredi",
|
||||
"edit_topsites_button_label": "Prilagodite odjel s najboljim stranicama",
|
||||
"edit_topsites_showmore_button": "Prikaži više",
|
||||
"edit_topsites_showless_button": "Prikaži manje",
|
||||
"edit_topsites_done_button": "Gotovo",
|
||||
"edit_topsites_pin_button": "Zakači stranicu",
|
||||
"edit_topsites_unpin_button": "Otkači ovu stranicu",
|
||||
"edit_topsites_edit_button": "Uredi ovu stranicu",
|
||||
"edit_topsites_dismiss_button": "Odbaci stranicu",
|
||||
"edit_topsites_add_button": "Dodaj",
|
||||
"topsites_form_add_header": "Nova najbolja stranica",
|
||||
"topsites_form_edit_header": "Uredi najbolju stranicu",
|
||||
"topsites_form_title_label": "Title",
|
||||
"topsites_form_title_placeholder": "Unesi naslov",
|
||||
"topsites_form_url_label": "URL",
|
||||
"topsites_form_image_url_label": "Custom Image URL",
|
||||
"topsites_form_url_placeholder": "Utipkajte ili zalijepite URL",
|
||||
"topsites_form_use_image_link": "Use a custom image…",
|
||||
"topsites_form_preview_button": "Preview",
|
||||
"topsites_form_add_button": "Dodaj",
|
||||
"topsites_form_save_button": "Spremi",
|
||||
"topsites_form_cancel_button": "Otkaži",
|
||||
"topsites_form_url_validation": "Potrebno je unijeti ispravan URL",
|
||||
"topsites_form_image_validation": "Image failed to load. Try a different URL.",
|
||||
"pocket_read_more": "Popularne teme:",
|
||||
"pocket_read_even_more": "Prikaži više priča",
|
||||
"pocket_feedback_header": "Najbolje od interneta, birano od preko 25 miliona ljudi.",
|
||||
"pocket_description": "Otkrijte visoko kvalitetan sadržaj koji ste možda propustili, uz pomoć Pocketa koji je sada dio Mozille.",
|
||||
"highlights_empty_state": "Započnite pretraživati i pokazat ćemo vam neke od izvrsnih članaka, videa i drugih web stranica prema vašim nedavno posjećenim stranicama ili zabilješkama.",
|
||||
"topstories_empty_state": "Provjerite kasnije za više najpopularnijih priča od {provider}. Ne možete čekati? Odaberite popularne teme kako biste pronašli više kvalitetnih priča s cijelog weba.",
|
||||
|
@ -111,5 +113,18 @@ window.gActivityStreamStrings = {
|
|||
"section_menu_action_add_topsite": "Add Top Site",
|
||||
"section_menu_action_move_up": "Move Up",
|
||||
"section_menu_action_move_down": "Move Down",
|
||||
"section_menu_action_privacy_notice": "Privacy Notice"
|
||||
"section_menu_action_privacy_notice": "Privacy Notice",
|
||||
"section_info_option": "Info",
|
||||
"section_info_privacy_notice": "Politika privatnosti",
|
||||
"settings_pane_bookmarks_body": "Vaše novo stvorene zabilješke na jednom praktičnom mjestu.",
|
||||
"settings_pane_visit_again_body": "Firefox će vam prikazati dijelove vaše povijesti pretraživanja koje možda želite zapamtiti ili posjetiti ponovno.",
|
||||
"edit_topsites_button_label": "Prilagodite odjel s najboljim stranicama",
|
||||
"edit_topsites_showmore_button": "Prikaži više",
|
||||
"edit_topsites_showless_button": "Prikaži manje",
|
||||
"edit_topsites_done_button": "Gotovo",
|
||||
"edit_topsites_pin_button": "Zakači stranicu",
|
||||
"edit_topsites_unpin_button": "Otkači ovu stranicu",
|
||||
"edit_topsites_dismiss_button": "Odbaci stranicu",
|
||||
"edit_topsites_add_button": "Dodaj",
|
||||
"pocket_feedback_header": "Najbolje od interneta, birano od preko 25 miliona ljudi."
|
||||
};
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче