Bug 1413550 - Add per-platform styles, per-locale html and bug fixes to Activity Stream. r=k88hudson

MozReview-Commit-ID: I7Y4nfrAvLL

--HG--
extra : rebase_source : 82a7c81ba58e294761c0cb25a3b1a2253a22d541
This commit is contained in:
Ed Lee 2017-11-03 12:08:30 -07:00
parent 8c8a36efd9
commit 8cc937f0de
405 changed files with 12775 additions and 23201 deletions

View File

@ -22,4 +22,4 @@
# changes to stick? As of bug 928195, this shouldn't be necessary! Please
# don't change CLOBBER for WebIDL changes any more.
Bug 1163171, Android compiler change
Bug 1413550 - Activity Stream removed a bunch of files that would break ./mach package

View File

@ -90,11 +90,11 @@ let allowedImageReferences = [
isFromDevTools: true},
// Bug 1405539
{file: "chrome://global/skin/arrow/panelarrow-vertical@2x.png",
from: "resource://activity-stream/data/content/activity-stream.css",
from: "resource://activity-stream/css/activity-stream.css",
isFromDevTools: false,
platforms: ["linux", "win"]},
{file: "chrome://global/skin/arrow/panelarrow-vertical-themed.svg",
from: "resource://activity-stream/data/content/activity-stream.css",
from: "resource://activity-stream/css/activity-stream.css",
isFromDevTools: false,
platforms: ["macosx"]},
];

View File

@ -21,7 +21,7 @@ const TOPIC_LOCALES_CHANGE = "intl:requested-locales-changed";
// Automated tests ensure packaged locales are in this list. Copied output of:
// https://github.com/mozilla/activity-stream/blob/master/bin/render-activity-stream-html.js
const ACTIVITY_STREAM_LOCALES = new Set("en-US ach ar ast az be bg bn-BD bn-IN br bs ca cak cs cy da de dsb el en-GB eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd gu-IN he hi-IN hr hsb hu hy-AM ia id it ja ka kab kk km kn ko lij lo lt lv mk ml mr ms my nb-NO ne-NP nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru sk sl sq sr sv-SE ta te th tl tr uk ur uz vi zh-CN zh-TW".split(" "));
const ACTIVITY_STREAM_LOCALES = new Set("en-US ach ar ast az be bg bn-BD bn-IN br bs ca cak cs cy da de dsb el en-GB eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gu-IN he hi-IN hr hsb hu hy-AM ia id it ja ka kab kk km kn ko lij lo lt ltg lv mk ml mr ms my nb-NO ne-NP nl nn-NO pa-IN pl pt-BR pt-PT rm ro ru sk sl sq sr sv-SE ta te th tl tr uk ur uz vi zh-CN zh-TW".split(" "));
const ABOUT_URL = "about:newtab";

View File

@ -45,7 +45,7 @@ add_task(async function test_all_packaged_locales() {
const locale = file.replace("/", "");
if (locale !== "static") {
const url = await getUrlForLocale(locale);
Assert[locale === "en-US" ? "equal" : "notEqual"](url, DEFAULT_URL);
Assert[locale === "en-US" ? "equal" : "notEqual"](url, DEFAULT_URL, `can reference "${locale}" files`);
}
}
}

View File

@ -33,7 +33,6 @@ for (const type of [
"DIALOG_OPEN",
"DISABLE_ONBOARDING",
"INIT",
"LOCALE_UPDATED",
"MIGRATION_CANCEL",
"MIGRATION_COMPLETED",
"MIGRATION_START",
@ -256,6 +255,13 @@ this.actionUtils = {
}
return false;
},
isFromMain(action) {
if (!action.meta) {
return false;
}
return action.meta.from === MAIN_MESSAGE_TYPE &&
action.meta.to === CONTENT_MESSAGE_TYPE;
},
getPortIdOfSender(action) {
return (action.meta && action.meta.fromTarget) || null;
},

View File

@ -6,9 +6,6 @@
const {actionTypes: at} = Components.utils.import("resource://activity-stream/common/Actions.jsm", {});
const {Dedupe} = Components.utils.import("resource://activity-stream/common/Dedupe.jsm", {});
// Locales that should be displayed RTL
const RTL_LIST = ["ar", "he", "fa", "ur"];
const TOP_SITES_DEFAULT_LENGTH = 6;
const TOP_SITES_SHOWMORE_LENGTH = 12;
@ -18,12 +15,6 @@ const INITIAL_STATE = {
App: {
// Have we received real data from the app yet?
initialized: false,
// The locale of the browser
locale: "",
// Localized strings with defaults
strings: null,
// The text direction for the locale
textDirection: "",
// The version of the system-addon
version: null
},
@ -56,17 +47,6 @@ function App(prevState = INITIAL_STATE.App, action) {
switch (action.type) {
case at.INIT:
return Object.assign({}, prevState, action.data || {}, {initialized: true});
case at.LOCALE_UPDATED: {
if (!action.data) {
return prevState;
}
let {locale, strings} = action.data;
return Object.assign({}, prevState, {
locale,
strings,
textDirection: RTL_LIST.indexOf(locale.split("-")[0]) >= 0 ? "rtl" : "ltr"
});
}
default:
return prevState;
}

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,5 @@
@charset "UTF-8";
/* This is the mac variant */
html {
box-sizing: border-box; }
@ -40,55 +41,55 @@ input {
.icon.icon-bookmark-hollow {
background-image: url("chrome://browser/skin/bookmark-hollow.svg"); }
.icon.icon-delete {
background-image: url("assets/glyph-delete-16.svg"); }
background-image: url("../data/content/assets/glyph-delete-16.svg"); }
.icon.icon-dismiss {
background-image: url("assets/glyph-dismiss-16.svg"); }
background-image: url("../data/content/assets/glyph-dismiss-16.svg"); }
.icon.icon-info {
background-image: url("assets/glyph-info-16.svg"); }
background-image: url("../data/content/assets/glyph-info-16.svg"); }
.icon.icon-import {
background-image: url("assets/glyph-import-16.svg"); }
background-image: url("../data/content/assets/glyph-import-16.svg"); }
.icon.icon-new-window {
background-image: url("assets/glyph-newWindow-16.svg"); }
background-image: url("../data/content/assets/glyph-newWindow-16.svg"); }
.icon.icon-new-window-private {
background-image: url("chrome://browser/skin/privateBrowsing.svg"); }
.icon.icon-settings {
background-image: url("chrome://browser/skin/settings.svg"); }
.icon.icon-pin {
background-image: url("assets/glyph-pin-16.svg"); }
background-image: url("../data/content/assets/glyph-pin-16.svg"); }
.icon.icon-unpin {
background-image: url("assets/glyph-unpin-16.svg"); }
background-image: url("../data/content/assets/glyph-unpin-16.svg"); }
.icon.icon-edit {
background-image: url("assets/glyph-edit-16.svg"); }
background-image: url("../data/content/assets/glyph-edit-16.svg"); }
.icon.icon-pocket {
background-image: url("assets/glyph-pocket-16.svg"); }
background-image: url("../data/content/assets/glyph-pocket-16.svg"); }
.icon.icon-historyItem {
background-image: url("assets/glyph-historyItem-16.svg"); }
background-image: url("../data/content/assets/glyph-historyItem-16.svg"); }
.icon.icon-trending {
background-image: url("assets/glyph-trending-16.svg");
background-image: url("../data/content/assets/glyph-trending-16.svg");
transform: translateY(2px);
/* trending bolt is visually top heavy */ }
.icon.icon-now {
background-image: url("chrome://browser/skin/history.svg"); }
.icon.icon-topsites {
background-image: url("assets/glyph-topsites-16.svg"); }
background-image: url("../data/content/assets/glyph-topsites-16.svg"); }
.icon.icon-pin-small {
background-image: url("assets/glyph-pin-12.svg");
background-image: url("../data/content/assets/glyph-pin-12.svg");
background-size: 12px;
height: 12px;
width: 12px; }
.icon.icon-check {
background-image: url("chrome://browser/skin/check.svg"); }
.icon.icon-webextension {
background-image: url("assets/glyph-webextension-16.svg"); }
background-image: url("../data/content/assets/glyph-webextension-16.svg"); }
.icon.icon-highlights {
background-image: url("assets/glyph-highlights-16.svg"); }
background-image: url("../data/content/assets/glyph-highlights-16.svg"); }
.icon.icon-arrowhead-down {
background-image: url("assets/glyph-arrowhead-down-12.svg");
background-image: url("../data/content/assets/glyph-arrowhead-down-12.svg");
background-size: 12px;
height: 12px;
width: 12px; }
.icon.icon-arrowhead-forward {
background-image: url("assets/glyph-arrowhead-down-12.svg");
background-image: url("../data/content/assets/glyph-arrowhead-down-12.svg");
background-size: 12px;
height: 12px;
transform: rotate(-90deg);
@ -157,8 +158,9 @@ a {
display: flex;
flex-direction: row;
margin: 0;
padding: 15px 25px;
justify-content: flex-start; }
padding: 15px 25px 0 25px;
justify-content: flex-start;
flex-wrap: wrap; }
.actions button {
background: #F9F9FA;
border: 1px solid #B1B1B3;
@ -166,6 +168,7 @@ a {
color: inherit;
cursor: pointer;
padding: 10px 30px;
margin-bottom: 15px;
white-space: nowrap; }
.actions button:hover:not(.dismiss) {
box-shadow: 0 0 0 5px #D7D7DB;
@ -441,6 +444,7 @@ main {
offset-inline-end: 24px;
opacity: 0;
padding: 0 10px;
pointer-events: none;
position: absolute;
top: 2px;
transition: opacity 0.2s cubic-bezier(0.07, 0.95, 0, 1); }
@ -486,8 +490,9 @@ main {
.edit-topsites-wrapper .show-less span {
padding-inline-start: 3px; }
section.top-sites:hover .edit-topsites-button {
opacity: 1; }
section.top-sites:not(.collapsed):hover .edit-topsites-button {
opacity: 1;
pointer-events: auto; }
.topsite-form .form-wrapper {
margin: auto;
@ -632,7 +637,7 @@ section.top-sites:hover .edit-topsites-button {
.topic .topic-read-more:dir(rtl) {
float: left; } }
.topic .topic-read-more::after {
background: url("assets/topic-show-more-12.svg") no-repeat center center;
background: url("../data/content/assets/topic-show-more-12.svg") no-repeat center center;
content: '';
-moz-context-properties: fill;
display: inline-block;
@ -652,23 +657,24 @@ section.top-sites:hover .edit-topsites-button {
cursor: default;
display: flex;
position: relative;
margin: 0 0 40px;
margin: 1px 1px 40px;
width: 100%;
height: 36px; }
height: 35px; }
.search-wrapper input {
border: 1px solid rgba(0, 0, 0, 0.15);
border: none;
border-radius: 3px;
box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.1);
box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.15);
color: inherit;
padding: 0;
padding-inline-end: 36px;
padding-inline-start: 35px;
width: 100%;
font-size: 15px; }
.search-wrapper:hover input {
box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.25); }
.search-wrapper:active input,
.search-wrapper input:focus {
border-color: #0A84FF;
box-shadow: 0 0 0 2px #0A84FF; }
box-shadow: 0 0 0 3px #0A84FF; }
.search-wrapper .search-label {
background: url("chrome://browser/skin/search-glass.svg") no-repeat 12px center/16px;
fill: rgba(12, 12, 13, 0.4);
@ -818,7 +824,6 @@ section.top-sites:hover .edit-topsites-button {
border-left: 1px solid #D7D7DB;
bottom: 0;
offset-inline-end: 0;
padding: 20px;
position: fixed;
width: 400px; }
.prefs-pane .actions button {
@ -1093,12 +1098,14 @@ section.top-sites:hover .edit-topsites-button {
.manual-migration-actions button {
align-self: center;
height: 26px;
margin: 0;
margin-inline-start: 20px;
padding: 0 12px; }
.collapsible-section .section-title .click-target {
cursor: pointer;
vertical-align: top; }
vertical-align: top;
white-space: nowrap; }
.collapsible-section .section-title .icon-arrowhead-down,
.collapsible-section .section-title .icon-arrowhead-forward {
@ -1112,7 +1119,7 @@ section.top-sites:hover .edit-topsites-button {
position: absolute;
top: 0; }
.collapsible-section .section-top-bar .info-option-icon {
background-image: url("assets/glyph-info-option-12.svg");
background-image: url("../data/content/assets/glyph-info-option-12.svg");
background-size: 12px 12px;
background-repeat: no-repeat;
background-position: center;
@ -1193,7 +1200,7 @@ section.top-sites:hover .edit-topsites-button {
margin: 0;
padding: 0; }
.collapsible-section .section-top-bar .info-option-manage button::after {
background-image: url("assets/topic-show-more-12.svg");
background-image: url("../data/content/assets/topic-show-more-12.svg");
background-repeat: no-repeat;
content: '';
-moz-context-properties: fill;
@ -1207,8 +1214,44 @@ section.top-sites:hover .edit-topsites-button {
.collapsible-section .section-top-bar .info-option-manage button:dir(rtl)::after {
transform: scaleX(-1); }
.collapsible-section .section-disclaimer {
color: #4A4A4F;
font-size: 13px;
margin-bottom: 16px; }
.collapsible-section .section-disclaimer .section-disclaimer-text {
display: inline-block; }
@media (min-width: 416px) {
.collapsible-section .section-disclaimer .section-disclaimer-text {
width: 224px; } }
@media (min-width: 544px) {
.collapsible-section .section-disclaimer .section-disclaimer-text {
width: 336px; } }
@media (min-width: 800px) {
.collapsible-section .section-disclaimer .section-disclaimer-text {
width: 640px; } }
.collapsible-section .section-disclaimer a {
color: #008EA4;
padding-left: 3px; }
.collapsible-section .section-disclaimer button {
margin-top: 2px;
offset-inline-end: 0;
height: 26px;
background: #F9F9FA;
border: 1px solid #B1B1B3;
border-radius: 4px;
cursor: pointer; }
.collapsible-section .section-disclaimer button:hover:not(.dismiss) {
box-shadow: 0 0 0 5px #D7D7DB;
transition: box-shadow 150ms; }
@media (min-width: 224px) {
.collapsible-section .section-disclaimer button {
position: relative; } }
@media (min-width: 416px) {
.collapsible-section .section-disclaimer button {
position: absolute; } }
.collapsible-section .section-body {
max-height: 900px;
max-height: 1100px;
margin: 0 -7px;
padding: 0 7px; }
.collapsible-section .section-body.animating {
@ -1225,5 +1268,11 @@ section.top-sites:hover .edit-topsites-button {
max-height: 0;
overflow: hidden; }
.collapsible-section:hover .info-option-icon {
.collapsible-section.collapsed .section-disclaimer {
position: relative; }
.collapsible-section.collapsed .section-info-option {
pointer-events: none; }
.collapsible-section:not(.collapsed):hover .info-option-icon {
opacity: 1; }

File diff suppressed because it is too large Load Diff

View File

@ -94,7 +94,7 @@ const globalImportContext = typeof Window === "undefined" ? BACKGROUND_PROCESS :
// UNINIT: "UNINIT"
// }
const actionTypes = {};
for (const type of ["BLOCK_URL", "BOOKMARK_URL", "DELETE_BOOKMARK_BY_ID", "DELETE_HISTORY_URL", "DELETE_HISTORY_URL_CONFIRM", "DIALOG_CANCEL", "DIALOG_OPEN", "DISABLE_ONBOARDING", "INIT", "LOCALE_UPDATED", "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", "PREFS_INITIAL_VALUES", "PREF_CHANGED", "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_DATA", "SNIPPETS_RESET", "SYSTEM_TICK", "TELEMETRY_IMPRESSION_STATS", "TELEMETRY_PERFORMANCE_EVENT", "TELEMETRY_UNDESIRED_EVENT", "TELEMETRY_USER_EVENT", "TOP_SITES_ADD", "TOP_SITES_CANCEL_EDIT", "TOP_SITES_EDIT", "TOP_SITES_PIN", "TOP_SITES_UNPIN", "TOP_SITES_UPDATED", "UNINIT"]) {
for (const type of ["BLOCK_URL", "BOOKMARK_URL", "DELETE_BOOKMARK_BY_ID", "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", "PREFS_INITIAL_VALUES", "PREF_CHANGED", "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_DATA", "SNIPPETS_RESET", "SYSTEM_TICK", "TELEMETRY_IMPRESSION_STATS", "TELEMETRY_PERFORMANCE_EVENT", "TELEMETRY_UNDESIRED_EVENT", "TELEMETRY_USER_EVENT", "TOP_SITES_ADD", "TOP_SITES_CANCEL_EDIT", "TOP_SITES_EDIT", "TOP_SITES_PIN", "TOP_SITES_UNPIN", "TOP_SITES_UPDATED", "UNINIT"]) {
actionTypes[type] = type;
}
@ -266,6 +266,12 @@ var actionUtils = {
}
return false;
},
isFromMain(action) {
if (!action.meta) {
return false;
}
return action.meta.from === MAIN_MESSAGE_TYPE && action.meta.to === CONTENT_MESSAGE_TYPE;
},
getPortIdOfSender(action) {
return action.meta && action.meta.fromTarget || null;
},
@ -298,6 +304,12 @@ module.exports = ReactIntl;
/* 3 */
/***/ (function(module, exports) {
module.exports = ReactRedux;
/***/ }),
/* 4 */
/***/ (function(module, exports) {
var g;
// This works in non-strict mode
@ -321,12 +333,6 @@ try {
module.exports = g;
/***/ }),
/* 4 */
/***/ (function(module, exports) {
module.exports = ReactRedux;
/***/ }),
/* 5 */
/***/ (function(module, exports) {
@ -353,9 +359,6 @@ module.exports = {
const { actionTypes: at } = __webpack_require__(0);
const { Dedupe } = __webpack_require__(20);
// Locales that should be displayed RTL
const RTL_LIST = ["ar", "he", "fa", "ur"];
const TOP_SITES_DEFAULT_LENGTH = 6;
const TOP_SITES_SHOWMORE_LENGTH = 12;
@ -365,12 +368,6 @@ const INITIAL_STATE = {
App: {
// Have we received real data from the app yet?
initialized: false,
// The locale of the browser
locale: "",
// Localized strings with defaults
strings: null,
// The text direction for the locale
textDirection: "",
// The version of the system-addon
version: null
},
@ -403,18 +400,6 @@ function App(prevState = INITIAL_STATE.App, action) {
switch (action.type) {
case at.INIT:
return Object.assign({}, prevState, action.data || {}, { initialized: true });
case at.LOCALE_UPDATED:
{
if (!action.data) {
return prevState;
}
let { locale, strings } = action.data;
return Object.assign({}, prevState, {
locale,
strings,
textDirection: RTL_LIST.indexOf(locale.split("-")[0]) >= 0 ? "rtl" : "ltr"
});
}
default:
return prevState;
}
@ -1088,6 +1073,43 @@ class Info extends React.PureComponent {
const InfoIntl = injectIntl(Info);
class Disclaimer extends React.PureComponent {
constructor(props) {
super(props);
this.onAcknowledge = this.onAcknowledge.bind(this);
}
onAcknowledge() {
this.props.dispatch(ac.SetPref(this.props.disclaimerPref, false));
this.props.dispatch(ac.UserEvent({ event: "SECTION_DISCLAIMER_ACKNOWLEDGED", source: this.props.eventSource }));
}
render() {
const disclaimer = this.props.disclaimer;
return React.createElement(
"div",
{ className: "section-disclaimer" },
React.createElement(
"div",
{ className: "section-disclaimer-text" },
getFormattedMessage(disclaimer.text),
disclaimer.link && React.createElement(
"a",
{ href: disclaimer.link.href, target: "_blank", rel: "noopener noreferrer" },
getFormattedMessage(disclaimer.link.title || disclaimer.link)
)
),
React.createElement(
"button",
{ onClick: this.onAcknowledge },
getFormattedMessage(disclaimer.button)
)
);
}
}
const DisclaimerIntl = injectIntl(Disclaimer);
class CollapsibleSection extends React.PureComponent {
constructor(props) {
super(props);
@ -1146,7 +1168,9 @@ class CollapsibleSection extends React.PureComponent {
render() {
const isCollapsed = this.props.Prefs.values[this.props.prefName];
const { enableAnimation, isAnimating } = this.state;
const infoOption = this.props.infoOption;
const { id, infoOption, eventSource, disclaimer } = this.props;
const disclaimerPref = `section.${id}.showDisclaimer`;
const needsDisclaimer = disclaimer && this.props.Prefs.values[disclaimerPref];
return React.createElement(
"section",
@ -1170,6 +1194,7 @@ class CollapsibleSection extends React.PureComponent {
React.createElement(
"div",
{ className: `section-body${isAnimating ? " animating" : ""}`, onTransitionEnd: this.onTransitionEnd },
needsDisclaimer && React.createElement(DisclaimerIntl, { disclaimerPref: disclaimerPref, disclaimer: disclaimer, eventSource: eventSource, dispatch: this.props.dispatch }),
this.props.children
)
);
@ -1189,7 +1214,9 @@ module.exports = injectIntl(CollapsibleSection);
module.exports._unconnected = CollapsibleSection;
module.exports.Info = Info;
module.exports.InfoIntl = InfoIntl;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
module.exports.Disclaimer = Disclaimer;
module.exports.DisclaimerIntl = DisclaimerIntl;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
/***/ }),
/* 10 */
@ -1503,17 +1530,17 @@ module.exports = {
/* WEBPACK VAR INJECTION */(function(global) {const React = __webpack_require__(1);
const ReactDOM = __webpack_require__(13);
const Base = __webpack_require__(14);
const { Provider } = __webpack_require__(4);
const { Provider } = __webpack_require__(3);
const initStore = __webpack_require__(31);
const { reducers } = __webpack_require__(6);
const DetectUserSessionStart = __webpack_require__(33);
const { addSnippetsSubscriber } = __webpack_require__(34);
const { actionTypes: at, actionCreators: ac } = __webpack_require__(0);
new DetectUserSessionStart().sendEventOrAddListener();
const store = initStore(reducers, global.gActivityStreamPrerenderedState);
new DetectUserSessionStart(store).sendEventOrAddListener();
// If we are starting in a prerendered state, we must wait until the first render
// to request state rehydration (see Base.jsx). If we are NOT in a prerendered state,
// we can request it immedately.
@ -1524,11 +1551,14 @@ if (!global.gActivityStreamPrerenderedState) {
ReactDOM.render(React.createElement(
Provider,
{ store: store },
React.createElement(Base, { isPrerendered: !!global.gActivityStreamPrerenderedState })
React.createElement(Base, {
isPrerendered: !!global.gActivityStreamPrerenderedState,
locale: global.document.documentElement.lang,
strings: global.gActivityStreamStrings })
), document.getElementById("root"));
addSnippetsSubscriber(store);
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
/***/ }),
/* 13 */
@ -1540,8 +1570,8 @@ module.exports = ReactDOM;
/* 14 */
/***/ (function(module, exports, __webpack_require__) {
/* WEBPACK VAR INJECTION */(function(global) {const React = __webpack_require__(1);
const { connect } = __webpack_require__(4);
const React = __webpack_require__(1);
const { connect } = __webpack_require__(3);
const { addLocaleData, IntlProvider } = __webpack_require__(2);
const TopSites = __webpack_require__(15);
const Search = __webpack_require__(21);
@ -1555,21 +1585,15 @@ const { PrerenderData } = __webpack_require__(30);
// 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.
function addLocaleDataForReactIntl({ locale, textDirection }) {
function addLocaleDataForReactIntl(locale) {
addLocaleData([{ locale, parentLocale: "en" }]);
if (global.document) {
global.document.documentElement.lang = locale;
global.document.documentElement.dir = textDirection;
}
}
class Base extends React.PureComponent {
componentWillMount() {
const { App } = this.props;
const { App, locale } = this.props;
this.sendNewTabRehydrated(App);
if (App.locale) {
addLocaleDataForReactIntl(App);
}
addLocaleDataForReactIntl(locale);
}
componentDidMount() {
@ -1581,27 +1605,14 @@ class Base extends React.PureComponent {
this.props.dispatch(ac.SendToMain({ type: at.PAGE_PRERENDERED }));
}
// Also wait for the preloaded page to show, so the tab's title and favicon updates
// Also wait for the preloaded page to show, so the tab's favicon updates
addEventListener("visibilitychange", () => {
this.updateTitle(this.props.App);
document.getElementById("favicon").href += "#";
}, { once: true });
}
componentWillUpdate({ App }) {
this.sendNewTabRehydrated(App);
// Early loads might not have locale yet, so wait until we do
if (App.locale && App.locale !== this.props.App.locale) {
addLocaleDataForReactIntl(App);
this.updateTitle(App);
}
}
updateTitle({ strings }) {
if (strings) {
document.title = strings.newtab_page_title;
}
}
// The NEW_TAB_REHYDRATED event is used to inform feeds that their
@ -1616,7 +1627,8 @@ class Base extends React.PureComponent {
render() {
const props = this.props;
const { locale, strings, initialized } = props.App;
const { App, locale, strings } = props;
const { initialized } = App;
const prefs = props.Prefs.values;
const shouldBeFixedToTop = PrerenderData.arePrefsValid(name => prefs[name]);
@ -1627,12 +1639,9 @@ class Base extends React.PureComponent {
return null;
}
// Note: the key on IntlProvider must be static in order to not blow away
// all elements on a locale change (such as after preloading).
// See https://github.com/yahoo/react-intl/issues/695 for more info.
return React.createElement(
IntlProvider,
{ key: "STATIC", locale: locale, messages: strings },
{ locale: locale, messages: strings },
React.createElement(
"div",
{ className: outerClassName },
@ -1657,49 +1666,107 @@ class Base extends React.PureComponent {
module.exports = connect(state => ({ App: state.App, Prefs: state.Prefs }))(Base);
module.exports._unconnected = Base;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
/***/ }),
/* 15 */
/***/ (function(module, exports, __webpack_require__) {
const React = __webpack_require__(1);
const { connect } = __webpack_require__(4);
const { connect } = __webpack_require__(3);
const { FormattedMessage } = __webpack_require__(2);
const TopSitesEdit = __webpack_require__(16);
const { TopSite, TopSitePlaceholder } = __webpack_require__(7);
const CollapsibleSection = __webpack_require__(9);
const ComponentPerfTimer = __webpack_require__(10);
const { actionCreators: ac, actionTypes: at } = __webpack_require__(0);
const { MIN_RICH_FAVICON_SIZE, MIN_CORNER_FAVICON_SIZE } = __webpack_require__(5);
const TopSites = props => {
const realTopSites = props.TopSites.rows.slice(0, props.TopSitesCount);
const placeholderCount = props.TopSitesCount - realTopSites.length;
const infoOption = {
header: { id: "settings_pane_topsites_header" },
body: { id: "settings_pane_topsites_body" }
/**
* Iterates through TopSites and counts types of images.
* @param acc Accumulator for reducer.
* @param topsite Entry in TopSites.
*/
function countTopSitesIconsTypes(topSites) {
const countTopSitesTypes = (acc, link) => {
if (link.tippyTopIcon) {
acc.tippytop++;
} else if (link.faviconSize >= MIN_RICH_FAVICON_SIZE) {
acc.rich_icon++;
} else if (link.screenshot && link.faviconSize >= MIN_CORNER_FAVICON_SIZE) {
acc.screenshot_with_icon++;
} else if (link.screenshot) {
acc.screenshot++;
} else {
acc.no_image++;
}
return acc;
};
return React.createElement(
ComponentPerfTimer,
{ id: "topsites", initialized: props.TopSites.initialized, dispatch: props.dispatch },
React.createElement(
CollapsibleSection,
{ className: "top-sites", icon: "topsites", title: React.createElement(FormattedMessage, { id: "header_top_sites" }), infoOption: infoOption, prefName: "collapseTopSites", Prefs: props.Prefs, dispatch: props.dispatch },
return topSites.reduce(countTopSitesTypes, {
"screenshot_with_icon": 0,
"screenshot": 0,
"tippytop": 0,
"rich_icon": 0,
"no_image": 0
});
}
class TopSites extends React.PureComponent {
componentDidUpdate() {
const realTopSites = this.props.TopSites.rows.slice(0, this.props.TopSitesCount);
const topSitesIconsStats = countTopSitesIconsTypes(realTopSites);
// Dispatch telemetry event with the count of TopSites images types.
this.props.dispatch(ac.SendToMain({
type: at.SAVE_SESSION_PERF_DATA,
data: { topsites_icon_stats: topSitesIconsStats }
}));
}
componentDidMount() {
const realTopSites = this.props.TopSites.rows.slice(0, this.props.TopSitesCount);
const topSitesIconsStats = countTopSitesIconsTypes(realTopSites);
// Dispatch telemetry event with the count of TopSites images types.
this.props.dispatch(ac.SendToMain({
type: at.SAVE_SESSION_PERF_DATA,
data: { topsites_icon_stats: topSitesIconsStats }
}));
}
render() {
const props = this.props;
const realTopSites = props.TopSites.rows.slice(0, props.TopSitesCount);
const placeholderCount = props.TopSitesCount - realTopSites.length;
const infoOption = {
header: { id: "settings_pane_topsites_header" },
body: { id: "settings_pane_topsites_body" }
};
return React.createElement(
ComponentPerfTimer,
{ id: "topsites", initialized: props.TopSites.initialized, dispatch: props.dispatch },
React.createElement(
"ul",
{ className: "top-sites-list" },
realTopSites.map((link, index) => link && React.createElement(TopSite, {
key: link.guid || link.url,
dispatch: props.dispatch,
link: link,
index: index,
intl: props.intl })),
placeholderCount > 0 && [...Array(placeholderCount)].map((_, i) => React.createElement(TopSitePlaceholder, { key: i }))
),
React.createElement(TopSitesEdit, props)
)
);
};
CollapsibleSection,
{ className: "top-sites", icon: "topsites", title: React.createElement(FormattedMessage, { id: "header_top_sites" }), infoOption: infoOption, prefName: "collapseTopSites", Prefs: props.Prefs, dispatch: props.dispatch },
React.createElement(
"ul",
{ className: "top-sites-list" },
realTopSites.map((link, index) => link && React.createElement(TopSite, {
key: link.guid || link.url,
dispatch: props.dispatch,
link: link,
index: index,
intl: props.intl })),
placeholderCount > 0 && [...Array(placeholderCount)].map((_, i) => React.createElement(TopSitePlaceholder, { key: i }))
),
React.createElement(TopSitesEdit, props)
)
);
}
}
module.exports = connect(state => ({ TopSites: state.TopSites, Prefs: state.Prefs, TopSitesCount: state.Prefs.values.topSitesCount }))(TopSites);
module.exports._unconnected = TopSites;
@ -2188,7 +2255,7 @@ module.exports = {
icon: "bookmark-hollow",
action: ac.SendToMain({
type: at.BOOKMARK_URL,
data: { url: site.url, title: site.title }
data: { url: site.url, title: site.title, type: site.type }
}),
userEvent: "BOOKMARK_ADD"
}),
@ -2220,7 +2287,6 @@ module.exports = {
impression: ac.ImpressionStats({
source: eventSource,
block: 0,
incognito: true,
tiles: [{ id: site.guid, pos: index }]
}),
userEvent: "BLOCK"
@ -2266,7 +2332,6 @@ module.exports = {
impression: ac.ImpressionStats({
source: eventSource,
pocket: 0,
incognito: true,
tiles: [{ id: site.guid, pos: index }]
}),
userEvent: "SAVE_TO_POCKET"
@ -2333,7 +2398,7 @@ module.exports = {
const React = __webpack_require__(1);
const { connect } = __webpack_require__(4);
const { connect } = __webpack_require__(3);
const { FormattedMessage, injectIntl } = __webpack_require__(2);
const { actionCreators: ac } = __webpack_require__(0);
const { IS_NEWTAB } = __webpack_require__(22);
@ -2431,8 +2496,7 @@ class Search extends React.PureComponent {
}
}
// initialized is passed to props so that Search will rerender when it receives strings
module.exports = connect(state => ({ locale: state.App.locale }))(injectIntl(Search));
module.exports = connect()(injectIntl(Search));
module.exports._unconnected = Search;
/***/ }),
@ -2443,14 +2507,14 @@ module.exports._unconnected = Search;
// constant to know if the page is about:newtab or about:home
IS_NEWTAB: global.document && global.document.documentURI === "about:newtab"
};
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
/***/ }),
/* 23 */
/***/ (function(module, exports, __webpack_require__) {
const React = __webpack_require__(1);
const { connect } = __webpack_require__(4);
const { connect } = __webpack_require__(3);
const { FormattedMessage } = __webpack_require__(2);
const { actionTypes, actionCreators: ac } = __webpack_require__(0);
@ -2552,7 +2616,7 @@ module.exports.Dialog = ConfirmDialog;
/***/ (function(module, exports, __webpack_require__) {
const React = __webpack_require__(1);
const { connect } = __webpack_require__(4);
const { connect } = __webpack_require__(3);
const { FormattedMessage } = __webpack_require__(2);
const { actionTypes: at, actionCreators: ac } = __webpack_require__(0);
@ -2616,7 +2680,7 @@ module.exports._unconnected = ManualMigration;
/***/ (function(module, exports, __webpack_require__) {
const React = __webpack_require__(1);
const { connect } = __webpack_require__(4);
const { connect } = __webpack_require__(3);
const { injectIntl, FormattedMessage } = __webpack_require__(2);
const { actionCreators: ac, actionTypes: at } = __webpack_require__(0);
const { TOP_SITES_DEFAULT_LENGTH, TOP_SITES_SHOWMORE_LENGTH } = __webpack_require__(6);
@ -2815,7 +2879,7 @@ module.exports.PreferencesInput = PreferencesInput;
/* WEBPACK VAR INJECTION */(function(global) {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; };
const React = __webpack_require__(1);
const { connect } = __webpack_require__(4);
const { connect } = __webpack_require__(3);
const { injectIntl, FormattedMessage } = __webpack_require__(2);
const Card = __webpack_require__(27);
const { PlaceholderCard } = Card;
@ -2845,8 +2909,7 @@ class Section extends React.PureComponent {
if (this.needsImpressionStats(cards)) {
props.dispatch(ac.ImpressionStats({
source: props.eventSource,
tiles: cards.map(link => ({ id: link.guid })),
incognito: props.options && props.options.personalized
tiles: cards.map(link => ({ id: link.guid }))
}));
this.impressionCardGuids = cards.map(link => link.guid);
}
@ -2941,7 +3004,7 @@ class Section extends React.PureComponent {
const {
id, eventSource, title, icon, rows,
infoOption, emptyState, dispatch, maxRows,
contextMenuOptions, initialized
contextMenuOptions, initialized, disclaimer
} = this.props;
const maxCards = CARDS_PER_ROW * maxRows;
@ -2963,7 +3026,14 @@ class Section extends React.PureComponent {
this.props,
React.createElement(
CollapsibleSection,
{ className: "section", icon: icon, title: getFormattedMessage(title), infoOption: infoOption, prefName: `section.${id}.collapsed`, Prefs: this.props.Prefs, dispatch: this.props.dispatch },
{ className: "section", icon: icon, title: getFormattedMessage(title),
infoOption: infoOption,
id: id,
eventSource: eventSource,
disclaimer: disclaimer,
prefName: `section.${id}.collapsed`,
Prefs: this.props.Prefs,
dispatch: this.props.dispatch },
!shouldShowEmptyState && React.createElement(
"ul",
{ className: "section-list", style: { padding: 0 } },
@ -3015,7 +3085,7 @@ module.exports = connect(state => ({ Sections: state.Sections, Prefs: state.Pref
module.exports._unconnected = Sections;
module.exports.SectionIntl = SectionIntl;
module.exports._unconnectedSection = Section;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
/***/ }),
/* 27 */
@ -3106,7 +3176,6 @@ class Card extends React.PureComponent {
this.props.dispatch(ac.ImpressionStats({
source: this.props.eventSource,
click: 0,
incognito: true,
tiles: [{ id: this.props.link.guid, pos: this.props.index }]
}));
}
@ -3398,6 +3467,7 @@ const { actionTypes: at, actionCreators: ac, actionUtils: au } = __webpack_requi
const MERGE_STORE_ACTION = "NEW_TAB_INITIAL_STATE";
const OUTGOING_MESSAGE_NAME = "ActivityStream:ContentToMain";
const INCOMING_MESSAGE_NAME = "ActivityStream:MainToContent";
const EARLY_QUEUED_ACTIONS = [at.SAVE_SESSION_PERF_DATA, at.PAGE_PRERENDERED];
/**
* A higher-order function which returns a reducer that, on MERGE_STORE action,
@ -3468,6 +3538,33 @@ const rehydrationMiddleware = store => next => action => {
return next(action);
};
/**
* This middleware queues up all the EARLY_QUEUED_ACTIONS until it receives
* the first action from main. This is useful for those actions for main which
* require higher reliability, i.e. the action will not be lost in the case
* that it gets sent before the main is ready to receive it. Conversely, any
* actions allowed early are accepted to be ignorable or re-sendable.
*/
const queueEarlyMessageMiddleware = store => next => action => {
if (store._receivedFromMain) {
next(action);
} else if (au.isFromMain(action)) {
next(action);
store._receivedFromMain = true;
// Sending out all the early actions as main is ready now
if (store._earlyActionQueue) {
store._earlyActionQueue.forEach(next);
store._earlyActionQueue = [];
}
} else if (EARLY_QUEUED_ACTIONS.includes(action.type)) {
store._earlyActionQueue = store._earlyActionQueue || [];
store._earlyActionQueue.push(action);
} else {
// Let any other type of action go through
next(action);
}
};
/**
* initStore - Create a store and listen for incoming actions
*
@ -3476,7 +3573,7 @@ const rehydrationMiddleware = store => next => action => {
* @return {object} A redux store
*/
module.exports = function initStore(reducers, initialState) {
const store = createStore(mergeStateReducer(combineReducers(reducers)), initialState, global.addMessageListener && applyMiddleware(rehydrationMiddleware, messageMiddleware));
const store = createStore(mergeStateReducer(combineReducers(reducers)), initialState, global.addMessageListener && applyMiddleware(rehydrationMiddleware, queueEarlyMessageMiddleware, messageMiddleware));
store._didRehydrate = false;
store._didRequestInitialState = false;
@ -3496,10 +3593,12 @@ module.exports = function initStore(reducers, initialState) {
};
module.exports.rehydrationMiddleware = rehydrationMiddleware;
module.exports.queueEarlyMessageMiddleware = queueEarlyMessageMiddleware;
module.exports.MERGE_STORE_ACTION = MERGE_STORE_ACTION;
module.exports.OUTGOING_MESSAGE_NAME = OUTGOING_MESSAGE_NAME;
module.exports.INCOMING_MESSAGE_NAME = INCOMING_MESSAGE_NAME;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
module.exports.EARLY_QUEUED_ACTIONS = EARLY_QUEUED_ACTIONS;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
/***/ }),
/* 32 */
@ -3511,16 +3610,16 @@ module.exports = Redux;
/* 33 */
/***/ (function(module, exports, __webpack_require__) {
/* WEBPACK VAR INJECTION */(function(global) {const { actionTypes: at } = __webpack_require__(0);
/* WEBPACK VAR INJECTION */(function(global) {const { actionTypes: at, actionCreators: ac } = __webpack_require__(0);
const { perfService: perfSvc } = __webpack_require__(11);
const VISIBLE = "visible";
const VISIBILITY_CHANGE_EVENT = "visibilitychange";
module.exports = class DetectUserSessionStart {
constructor(options = {}) {
constructor(store, options = {}) {
this._store = store;
// Overrides for testing
this.sendAsyncMessage = options.sendAsyncMessage || global.sendAsyncMessage;
this.document = options.document || global.document;
this._perfService = options.perfService || perfSvc;
this._onVisibilityChange = this._onVisibilityChange.bind(this);
@ -3554,10 +3653,10 @@ module.exports = class DetectUserSessionStart {
try {
let visibility_event_rcvd_ts = this._perfService.getMostRecentAbsMarkStartByName("visibility_event_rcvd_ts");
this.sendAsyncMessage("ActivityStream:ContentToMain", {
this._store.dispatch(ac.SendToMain({
type: at.SAVE_SESSION_PERF_DATA,
data: { visibility_event_rcvd_ts }
});
}));
} catch (ex) {
// If this failed, it's likely because the `privacy.resistFingerprinting`
// pref is true. We should at least not blow up.
@ -3575,7 +3674,7 @@ module.exports = class DetectUserSessionStart {
}
}
};
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
/***/ }),
/* 34 */
@ -3932,7 +4031,7 @@ module.exports = {
SnippetsProvider,
SNIPPETS_UPDATE_INTERVAL_MS
};
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
/***/ })
/******/ ]);

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@
<em:type>2</em:type>
<em:bootstrap>true</em:bootstrap>
<em:unpack>false</em:unpack>
<em:version>2017.10.20.1325-95b4c353</em:version>
<em:version>2017.11.03.1438-bf427ddd</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>

View File

@ -17,8 +17,16 @@
content/vendor/redux.js (./vendor/redux.js)
content/vendor/react-redux.js (./vendor/react-redux.js)
content/data/ (./data/*)
#ifndef RELEASE_OR_BETA
# content/prerendered/static/activity-stream-debug.html (./prerendered/en-US/activity-stream-debug.html)
# content/prerendered/static/activity-stream-prerendered-debug.html (./prerendered/en-US/activity-stream-prerendered-debug.html)
#ifdef XP_MACOSX
content/css/activity-stream.css (./css/activity-stream-mac.css)
#elifdef XP_WIN
content/css/activity-stream.css (./css/activity-stream-windows.css)
#else
content/css/activity-stream.css (./css/activity-stream-linux.css)
#endif
content/prerendered/ (./prerendered/*)
content/prerendered/static/activity-stream-initial-state.js (./prerendered/static/activity-stream-initial-state.js)
#ifndef RELEASE_OR_BETA
content/prerendered/static/activity-stream-debug.html (./prerendered/static/activity-stream-debug.html)
content/prerendered/static/activity-stream-prerendered-debug.html (./prerendered/static/activity-stream-prerendered-debug.html)
#endif
content/prerendered/ (./prerendered/locales/*)

View File

@ -10,7 +10,6 @@ Cu.import("resource://gre/modules/Services.jsm");
// common case to avoid the overhead of wrapping and detecting lazy loading.
const {actionCreators: ac, actionTypes: at} = Cu.import("resource://activity-stream/common/Actions.jsm", {});
const {DefaultPrefs} = Cu.import("resource://activity-stream/lib/ActivityStreamPrefs.jsm", {});
const {LocalizationFeed} = Cu.import("resource://activity-stream/lib/LocalizationFeed.jsm", {});
const {ManualMigration} = Cu.import("resource://activity-stream/lib/ManualMigration.jsm", {});
const {NewTabInit} = Cu.import("resource://activity-stream/lib/NewTabInit.jsm", {});
const {SectionsFeed} = Cu.import("resource://activity-stream/lib/SectionsManager.jsm", {});
@ -64,6 +63,7 @@ const PREFS_CONFIG = new Map([
stories_endpoint: `https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=2&consumer_key=$apiKey&locale_lang=${args.locale}`,
stories_referrer: "https://getpocket.com/recommendations",
info_link: "https://www.mozilla.org/privacy/firefox/#pocketstories",
disclaimer_link: "https://getpocket.cdn.mozilla.net/firefox/new_tab_learn_more",
topics_endpoint: `https://getpocket.cdn.mozilla.net/v3/firefox/trending-topics?version=2&consumer_key=$apiKey&locale_lang=${args.locale}`,
show_spocs: false,
personalized: false
@ -113,18 +113,6 @@ const PREFS_CONFIG = new Map([
title: "Number of Top Sites to display",
value: 6
}],
["impressionStats.clicked", {
title: "GUIDs of clicked Top stories items",
value: "[]"
}],
["impressionStats.blocked", {
title: "GUIDs of blocked Top stories items",
value: "[]"
}],
["impressionStats.pocketed", {
title: "GUIDs of pocketed Top stories items",
value: "[]"
}],
["telemetry", {
title: "Enable system error and usage data collection",
value: true,
@ -141,17 +129,15 @@ const PREFS_CONFIG = new Map([
["section.topstories.collapsed", {
title: "Collapse the Top Stories section",
value: false
}],
["section.topstories.showDisclaimer", {
title: "Boolean flag that decides whether or not to show the topstories disclaimer.",
value: true
}]
]);
// Array of each feed's FEEDS_CONFIG factory and values to add to PREFS_CONFIG
const FEEDS_DATA = [
{
name: "localization",
factory: () => new LocalizationFeed(),
title: "Initialize strings and detect locale for Activity Stream",
value: true
},
{
name: "migration",
factory: () => new ManualMigration(),

View File

@ -142,7 +142,7 @@ this.ActivityStreamMessageChannel = class ActivityStreamMessageChannel {
simulateMessagesForExistingTabs() {
// Some pages might have already loaded, so we won't get the usual message
for (const target of this.channel.messagePorts) {
const simulatedMsg = {target};
const simulatedMsg = {target: Object.assign({simulated: true}, target)};
this.onNewTabInit(simulatedMsg);
if (target.loaded) {
this.onNewTabLoad(simulatedMsg);

View File

@ -21,6 +21,8 @@ XPCOMUtils.defineLazyModuleGetter(this, "NewTabUtils",
"resource://gre/modules/NewTabUtils.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "Screenshots",
"resource://activity-stream/lib/Screenshots.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "PageThumbs",
"resource://gre/modules/PageThumbs.jsm");
const HIGHLIGHTS_MAX_LENGTH = 9;
const MANY_EXTRA_LENGTH = HIGHLIGHTS_MAX_LENGTH * 5 + TOP_SITES_SHOWMORE_LENGTH;
@ -31,6 +33,7 @@ this.HighlightsFeed = class HighlightsFeed {
this.dedupe = new Dedupe(this._dedupeKey);
this.linksCache = new LinksCache(NewTabUtils.activityStreamLinks,
"getHighlights", ["image"]);
PageThumbs.addExpirationFilter(this);
}
_dedupeKey(site) {
@ -49,6 +52,22 @@ this.HighlightsFeed = class HighlightsFeed {
uninit() {
SectionsManager.disableSection(SECTION_ID);
PageThumbs.removeExpirationFilter(this);
}
filterForThumbnailExpiration(callback) {
const sectionIndex = SectionsManager.sections.get(SECTION_ID).order;
const state = this.store.getState().Sections[sectionIndex];
callback(state && state.initialized ? state.rows.reduce((acc, site) => {
// Screenshots call in `fetchImage` will search for preview_image_url or
// fallback to URL, so we prevent both from being expired.
acc.push(site.url);
if (site.preview_image_url) {
acc.push(site.preview_image_url);
}
return acc;
}, []) : []);
}
/**

View File

@ -98,7 +98,7 @@ this.LinksCache = class LinksCache {
if (oldLink) {
for (const property of this.migrateProperties) {
const oldValue = oldLink[property];
if (oldValue) {
if (oldValue !== undefined) {
newLink[property] = oldValue;
}
}

View File

@ -1,74 +0,0 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const {utils: Cu} = Components;
Cu.import("resource://gre/modules/Services.jsm");
Cu.importGlobalProperties(["fetch"]);
const {actionCreators: ac, actionTypes: at} = Cu.import("resource://activity-stream/common/Actions.jsm", {});
// What is our default locale for the app?
const DEFAULT_LOCALE = "en-US";
// Event from LocaleService when locales are assigned
const LOCALES_CHANGE_TOPIC = "intl:requested-locales-changed";
// Where is the packaged locales json with all strings?
const LOCALES_FILE = "resource://activity-stream/data/locales.json";
this.LocalizationFeed = class LocalizationFeed {
async init() {
Services.obs.addObserver(this, LOCALES_CHANGE_TOPIC);
let response = await fetch(LOCALES_FILE);
this.allStrings = await response.json();
this.updateLocale();
}
uninit() {
Services.obs.removeObserver(this, LOCALES_CHANGE_TOPIC);
}
updateLocale() {
// Order locales based on what we have available with fallback always first
const locales = Services.locale.negotiateLanguages(
Services.locale.getAppLocalesAsLangTags(), // desired locales
Object.keys(this.allStrings), // available locales
DEFAULT_LOCALE // fallback
).reverse();
// Start with default (first) locale then merge in strings of better locales
const strings = Object.assign({}, ...locales.map(l => this.allStrings[l]));
// Use the best (last) locale as the primary locale
const locale = locales.pop();
this.store.dispatch(ac.BroadcastToContent({
type: at.LOCALE_UPDATED,
data: {
locale,
strings
}
}));
}
observe(subject, topic, data) {
switch (topic) {
case LOCALES_CHANGE_TOPIC:
this.updateLocale();
break;
}
}
onAction(action) {
switch (action.type) {
case at.INIT:
this.init();
break;
case at.UNINIT:
this.uninit();
break;
}
}
};
this.EXPORTED_SYMBOLS = ["LocalizationFeed"];

View File

@ -13,31 +13,34 @@ const {actionCreators: ac, actionTypes: at} = Cu.import("resource://activity-str
*/
this.NewTabInit = class NewTabInit {
constructor() {
this._queue = new Set();
this._repliedEarlyTabs = new Map();
}
reply(target) {
// Skip this reply if we already replied to an early tab
if (this._repliedEarlyTabs.get(target)) {
return;
}
const action = {type: at.NEW_TAB_INITIAL_STATE, data: this.store.getState()};
this.store.dispatch(ac.SendToContent(action, target));
// Remember that this early tab has already gotten a rehydration response in
// case it thought we lost its initial REQUEST and asked again
if (this._repliedEarlyTabs.has(target)) {
this._repliedEarlyTabs.set(target, true);
}
}
onAction(action) {
switch (action.type) {
case at.NEW_TAB_STATE_REQUEST:
// If localization hasn't been loaded yet, we should wait for it.
if (!this.store.getState().App.strings) {
this._queue.add(action.meta.fromTarget);
return;
}
this.reply(action.meta.fromTarget);
break;
case at.LOCALE_UPDATED:
// If the queue is full because we were waiting for strings,
// dispatch them now.
if (this._queue.size > 0 && this.store.getState().App.strings) {
this._queue.forEach(target => this.reply(target));
this._queue.clear();
}
break;
case at.NEW_TAB_INIT:
// Initialize data for early tabs that might REQUEST twice
if (action.data.simulated) {
this._repliedEarlyTabs.set(action.data.portID, false);
}
if (action.data.url === "about:home") {
const prefs = this.store.getState().Prefs.values;
if (prefs["aboutHome.autoFocus"] && prefs.showSearch) {
@ -45,6 +48,10 @@ this.NewTabInit = class NewTabInit {
}
}
break;
case at.NEW_TAB_UNLOAD:
// Clean up for any tab (no-op if not an early tab)
this._repliedEarlyTabs.delete(action.meta.fromTarget);
break;
}
}
};

View File

@ -100,13 +100,21 @@ class BookmarksObserver extends Observer {
* @param {str} title
* @param {int} dateAdded
* @param {str} guid The unique id of the bookmark
* @param {str} parent guid
* @param {int} source Used to distinguish bookmarks made by different
* actions: sync, bookmarks import, other.
*/
onItemAdded(...args) {
const type = args[3];
if (type !== PlacesUtils.bookmarks.TYPE_BOOKMARK) {
const source = args[9];
const uri = args[4];
// Skips items that are not bookmarks (like folders), about:* pages or
// default bookmarks, added when the profile is created.
if (type !== PlacesUtils.bookmarks.TYPE_BOOKMARK ||
source === PlacesUtils.bookmarks.SOURCES.IMPORT_REPLACE ||
(uri.scheme !== "http" && uri.scheme !== "https")) {
return;
}
const uri = args[4];
const bookmarkTitle = args[5];
const dateAdded = args[6];
const bookmarkGuid = args[7];

View File

@ -73,9 +73,10 @@ this.Screenshots = {
@ @param onScreenshot {function} Callback for when the screenshot loads
*/
async maybeCacheScreenshot(link, url, property, onScreenshot) {
// Nothing to do if we already have a pending screenshot
// Nothing to do if we already have a pending screenshot or
// if a previous request failed and returned null.
const cache = link.__sharedCache;
if (cache.fetchingScreenshot) {
if (cache.fetchingScreenshot || link[property] !== undefined) {
return;
}
@ -87,9 +88,7 @@ this.Screenshots = {
delete cache.fetchingScreenshot;
// Update the cache for future links and call back for existing content
if (screenshot) {
cache.updateLink(property, screenshot);
onScreenshot(screenshot);
}
cache.updateLink(property, screenshot);
onScreenshot(screenshot);
}
};

View File

@ -32,6 +32,11 @@ const BUILT_IN_SECTIONS = {
eventSource: "TOP_STORIES",
icon: options.provider_icon,
title: {id: "header_recommended_by", values: {provider: options.provider_name}},
disclaimer: {
text: {id: options.disclaimer_text || "section_disclaimer_topstories"},
link: {href: options.disclaimer_link, id: options.disclaimer_linktext || "section_disclaimer_topstories_linktext"},
button: {id: options.disclaimer_buttontext || "section_disclaimer_topstories_buttontext"}
},
maxRows: 1,
availableContextMenuOptions: ["CheckBookmark", "SaveToPocket", "Separator", "OpenInNewWindow", "OpenInPrivateWindow", "Separator", "BlockUrl"],
infoOption: {
@ -151,8 +156,15 @@ const SectionsManager = {
}
},
/**
* Save metadata to places db and add a visit for that URL.
*/
updateBookmarkMetadata({url}) {
this.sections.forEach(section => {
this.sections.forEach((section, id) => {
if (id === "highlights") {
// Skip Highlights cards, we already have that metadata.
return;
}
if (section.rows) {
section.rows.forEach(card => {
if (card.url === url && card.description && card.title && card.image) {
@ -162,6 +174,12 @@ const SectionsManager = {
description: card.description,
previewImageURL: card.image
});
// Highlights query skips bookmarks with no visits.
PlacesUtils.history.insert({
url,
title: card.title,
visits: [{}]
});
}
});
}

View File

@ -22,12 +22,13 @@ function handleIDNHost(hostname) {
}
/**
* Returns the public suffix of a URL or empty string in case of error.
* @param {string} url The url to be analyzed.
* Get the effective top level domain of a host.
* @param {string} host The host to be analyzed.
* @return {str} The suffix or empty string if there's no suffix.
*/
function getETLD(url) {
function getETLD(host) {
try {
return Services.eTLD.getPublicSuffix(Services.io.newURI(url));
return Services.eTLD.getPublicSuffixFromHost(host);
} catch (err) {
return "";
}
@ -35,28 +36,38 @@ function getETLD(url) {
this.getETLD = getETLD;
/**
/**
* shortURL - Creates a short version of a link's url, used for display purposes
* e.g. {url: http://www.foosite.com} => "foosite"
*
* @param {obj} link A link object
* {str} link.url (required)- The url of the link
* {str} link.title (optional) - The title of the link
* @return {str} A short url
*/
this.shortURL = function shortURL(link) {
if (!link.url) {
this.shortURL = function shortURL({url}) {
if (!url) {
return "";
}
// Make sure we have a valid / parseable url
let parsed;
try {
parsed = new URL(url);
} catch (ex) {
// Not entirely sure what we have, but just give it back
return url;
}
// Clean up the url (lowercase hostname via URL and remove www.)
const hostname = parsed.hostname.replace(/^www\./i, "");
// Remove the eTLD (e.g., com, net) and the preceding period from the hostname
const eTLD = getETLD(link.url);
const eTLD = getETLD(hostname);
const eTLDExtra = eTLD.length > 0 ? -(eTLD.length + 1) : Infinity;
// Clean up the url and fallback to page title or url if necessary
const hostname = (new URL(link.url).hostname).replace(/^www\./i, "");
return handleIDNHost(hostname.slice(0, eTLDExtra).toLowerCase()) ||
link.title || link.url;
// Ideally get the short eTLD-less host but fall back to longer url parts
return handleIDNHost(hostname.slice(0, eTLDExtra) || hostname) ||
parsed.pathname || parsed.href;
};
this.EXPORTED_SYMBOLS = ["shortURL", "getETLD"];

View File

@ -34,79 +34,14 @@ const USER_PREFS_ENCODING = {
"showSponsored": 1 << 5
};
const IMPRESSION_STATS_RESET_TIME = 60 * 60 * 1000; // 60 minutes
const PREF_IMPRESSION_STATS_CLICKED = "impressionStats.clicked";
const PREF_IMPRESSION_STATS_BLOCKED = "impressionStats.blocked";
const PREF_IMPRESSION_STATS_POCKETED = "impressionStats.pocketed";
const PREF_IMPRESSION_ID = "impressionId";
const TELEMETRY_PREF = "telemetry";
/**
* A pref persistent GUID set
*/
class PersistentGuidSet extends Set {
constructor(prefs, prefName) {
let guids = [];
try {
guids = JSON.parse(prefs.get(prefName));
if (typeof guids[Symbol.iterator] !== "function") {
guids = [];
prefs.set(prefName, "[]");
}
} catch (e) {
Cu.reportError(e);
prefs.set(prefName, "[]");
}
super(guids);
this._prefs = prefs;
this._prefName = prefName;
}
/**
* Add a GUID and persist
*
* @param {Integer|String} guid a GUID to save
* @returns {Boolean} true if the item has been added
*/
save(guid) {
if (!this.has(guid)) {
this.add(guid);
this._prefs.set(this._prefName, JSON.stringify(this.items()));
return true;
}
return false;
}
/**
* Clear GUID set and persist
*/
clear() {
if (this.size !== 0) {
this._prefs.set(this._prefName, "[]");
super.clear();
}
}
/**
* Return GUID set as an array ordered by insertion time
*/
items() {
return [...this];
}
}
this.TelemetryFeed = class TelemetryFeed {
constructor(options) {
this.sessions = new Map();
this._prefs = new Prefs();
this._impressionStatsLastReset = Date.now();
this._impressionStats = {
clicked: new PersistentGuidSet(this._prefs, PREF_IMPRESSION_STATS_CLICKED),
blocked: new PersistentGuidSet(this._prefs, PREF_IMPRESSION_STATS_BLOCKED),
pocketed: new PersistentGuidSet(this._prefs, PREF_IMPRESSION_STATS_POCKETED)
};
this._impressionId = this.getOrCreateImpressionId();
this.telemetryEnabled = this._prefs.get(TELEMETRY_PREF);
this._aboutHomeSeen = false;
this._onTelemetryPrefChange = this._onTelemetryPrefChange.bind(this);
@ -117,6 +52,15 @@ this.TelemetryFeed = class TelemetryFeed {
Services.obs.addObserver(this.browserOpenNewtabStart, "browser-open-newtab-start");
}
getOrCreateImpressionId() {
let impressionId = this._prefs.get(PREF_IMPRESSION_ID);
if (!impressionId) {
impressionId = String(gUUIDGenerator.generateUUID());
this._prefs.set(PREF_IMPRESSION_ID, impressionId);
}
return impressionId;
}
browserOpenNewtabStart() {
perfService.mark("browser-open-newtab-start");
}
@ -315,7 +259,7 @@ this.TelemetryFeed = class TelemetryFeed {
const appInfo = this.store.getState().App;
const ping = {
addon_version: appInfo.version,
locale: appInfo.locale,
locale: Services.locale.getRequestedLocale(),
user_prefs: this.userPreferences
};
@ -335,25 +279,20 @@ this.TelemetryFeed = class TelemetryFeed {
* createImpressionStats - Create a ping for an impression stats
*
* @param {ob} action The object with data to be included in the ping.
* For some user interactions, a boolean "incognito"
* field of the "data" object could be used to empty
* all the user specific IDs with "n/a" in the ping.
* For some user interactions.
* @return {obj} A telemetry ping
*/
createImpressionStats(action) {
let ping = Object.assign(
return Object.assign(
this.createPing(au.getPortIdOfSender(action)),
action.data,
{action: "activity_stream_impression_stats"}
{
action: "activity_stream_impression_stats",
impression_id: this._impressionId,
client_id: "n/a",
session_id: "n/a"
}
);
if (ping.incognito) {
ping.client_id = "n/a";
ping.session_id = "n/a";
delete ping.incognito;
}
return ping;
}
createUserEvent(action) {
@ -402,26 +341,7 @@ this.TelemetryFeed = class TelemetryFeed {
}
handleImpressionStats(action) {
const payload = action.data;
let guidSet;
let index;
if ("click" in payload) {
guidSet = this._impressionStats.clicked;
index = payload.click;
} else if ("block" in payload) {
guidSet = this._impressionStats.blocked;
index = payload.block;
} else if ("pocket" in payload) {
guidSet = this._impressionStats.pocketed;
index = payload.pocket;
}
// If it is an impression ping, just send it out. For the click, block, and
// save to pocket pings, it only sends the first ping for the same article.
if (!guidSet || guidSet.save(payload.tiles[index].id)) {
this.sendEvent(this.createImpressionStats(action));
}
this.sendEvent(this.createImpressionStats(action));
}
handleUserEvent(action) {
@ -432,13 +352,6 @@ this.TelemetryFeed = class TelemetryFeed {
this.sendEvent(this.createUndesiredEvent(action));
}
resetImpressionStats() {
for (const key of Object.keys(this._impressionStats)) {
this._impressionStats[key].clear();
}
this._impressionStatsLastReset = Date.now();
}
onAction(action) {
switch (action.type) {
case at.INIT:
@ -456,11 +369,6 @@ this.TelemetryFeed = class TelemetryFeed {
case at.SAVE_SESSION_PERF_DATA:
this.saveSessionPerfData(au.getPortIdOfSender(action), action.data);
break;
case at.SYSTEM_TICK:
if (Date.now() - this._impressionStatsLastReset >= IMPRESSION_STATS_RESET_TIME) {
this.resetImpressionStats();
}
break;
case at.TELEMETRY_IMPRESSION_STATS:
this.handleImpressionStats(action);
break;
@ -535,11 +443,7 @@ this.TelemetryFeed = class TelemetryFeed {
this.EXPORTED_SYMBOLS = [
"TelemetryFeed",
"PersistentGuidSet",
"USER_PREFS_ENCODING",
"IMPRESSION_STATS_RESET_TIME",
"TELEMETRY_PREF",
"PREF_IMPRESSION_STATS_CLICKED",
"PREF_IMPRESSION_STATS_BLOCKED",
"PREF_IMPRESSION_STATS_POCKETED"
"PREF_IMPRESSION_ID",
"TELEMETRY_PREF"
];

View File

@ -20,6 +20,8 @@ XPCOMUtils.defineLazyModuleGetter(this, "NewTabUtils",
"resource://gre/modules/NewTabUtils.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "Screenshots",
"resource://activity-stream/lib/Screenshots.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "PageThumbs",
"resource://gre/modules/PageThumbs.jsm");
const DEFAULT_SITES_PREF = "default.sites";
const DEFAULT_TOP_SITES = [];
@ -36,7 +38,13 @@ this.TopSitesFeed = class TopSitesFeed {
!(oldOptions.numItems >= newOptions.numItems));
this.pinnedCache = new LinksCache(NewTabUtils.pinnedLinks, "links",
["favicon", "faviconSize", "screenshot"]);
PageThumbs.addExpirationFilter(this);
}
uninit() {
PageThumbs.removeExpirationFilter(this);
}
_dedupeKey(site) {
return site && site.hostname;
}
@ -57,6 +65,11 @@ this.TopSitesFeed = class TopSitesFeed {
}
}
filterForThumbnailExpiration(callback) {
const {rows} = this.store.getState().TopSites;
callback(rows.map(site => site.url));
}
async getLinksWithDefaults(action) {
// Get at least SHOWMORE amount so toggling between 1 and 2 rows has sites
const numItems = Math.max(this.store.getState().Prefs.values.topSitesCount,
@ -261,6 +274,9 @@ this.TopSitesFeed = class TopSitesFeed {
case at.TOP_SITES_ADD:
this.add(action);
break;
case at.UNINIT:
this.uninit();
break;
}
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ach",
"strings": {
"newtab_page_title": "Dirica matidi manyen",
"default_label_loading": "Tye ka cano…",
"header_top_sites": "Kakube maloyo",
"header_stories": "Lok madito",
"header_highlights": "Wiye madito",
"header_visit_again": "Lim doki",
"header_bookmarks": "Alamabuk ma cok coki",
"header_recommended_by": "Lami tam obedo {provider}",
"header_bookmarks_placeholder": "Pud i pee ki alamabuk.",
"header_stories_from": "ki bot",
"type_label_visited": "Kilimo",
"type_label_bookmarked": "Kiketo alamabuk",
"type_label_synced": "Kiribo ki i nyonyo mukene",
"type_label_recommended": "Ma cuke lamal",
"type_label_open": "Tye ayaba",
"type_label_topic": "Lok",
"type_label_now": "Kombedi",
"menu_action_bookmark": "Alamabuk",
"menu_action_remove_bookmark": "Kwany alamabuk",
"menu_action_copy_address": "Lok kabedo",
"menu_action_email_link": "Kakube me email…",
"menu_action_open_new_window": "Yab i dirica manyen",
"menu_action_open_private_window": "Yab i dirica manyen me mung",
"menu_action_dismiss": "Kwer",
"menu_action_delete": "Kwany ki ii gin mukato",
"menu_action_pin": "Mwon",
"menu_action_unpin": "War",
"confirm_history_delete_p1": "Imoko ni imito kwanyo nyig jami weng me potbuk man ki i gin mukato mamegi?",
"confirm_history_delete_notice_p2": "Pe ki twero gonyo tic man.",
"menu_action_save_to_pocket": "Gwoki i jaba",
"search_for_something_with": "Yeny pi {search_term} ki:",
"search_button": "Yeny",
"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",
"welcome_title": "Wajoli i dirica matidi manyen",
"welcome_body": "Firefox bi tic ki kabedo man me nyuto alamabukke mamegi, coc akwana, vidio, ki potbukke ma ilimo cokcoki ma pi gi tego loyo, wek i dok ii gi ma yot.",
"welcome_label": "Tye ka kube ki wiye madito mamegi",
"time_label_less_than_minute": "<dakika1",
"time_label_minute": "dakika{number}",
"time_label_hour": "cawa{number}",
"time_label_day": "nino{number}",
"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.",
"settings_pane_search_header": "Yeny",
"settings_pane_search_body": "Yeny Kakube ki i dirica ni matidi manyen.",
"settings_pane_topsites_header": "Kakube ma gi loyo",
"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",
"settings_pane_highlights_options_visited": "Kakube ma kilimo",
"settings_pane_snippets_header": "Kwena macek",
"settings_pane_snippets_body": "Kwan ngec manyen macego dok mamit ki bot Mozilla ikom Firefox, kwo me intanet, ki meme mabino atata.",
"settings_pane_done_button": "Otum",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Ket wiye",
"topsites_form_url_placeholder": "Coo onyo mwon URL",
"topsites_form_add_button": "Medi",
"topsites_form_save_button": "Gwoki",
"topsites_form_cancel_button": "Kwer",
"topsites_form_url_validation": "URL ma tye atir mite",
"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.",
"manual_migration_explanation2": "Tem Firefox ki alamabuk, gin mukato ki mung me donyo ki ii layeny mukene.",
"manual_migration_cancel_button": "Pe Apwoyo",
"manual_migration_import_button": "Kel kombedi"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ar",
"strings": {
"newtab_page_title": "لسان جديد",
"default_label_loading": "يُحمّل…",
"header_top_sites": "المواقع الأكثر زيارة",
"header_stories": "أهم الأخبار",
"header_highlights": "أهم الأحداث",
"header_visit_again": "زرها مجددا",
"header_bookmarks": "أحدث العلامات",
"header_recommended_by": "ينصح به {provider}",
"header_bookmarks_placeholder": "لا علامات لديك بعد.",
"header_stories_from": "من",
"type_label_visited": "مُزارة",
"type_label_bookmarked": "معلّمة",
"type_label_synced": "مُزامنة من جهاز آخر",
"type_label_recommended": "مُتداول",
"type_label_open": "مفتوحة",
"type_label_topic": "الموضوع",
"type_label_now": "الآن",
"menu_action_bookmark": "علّم",
"menu_action_remove_bookmark": "أزل العلامة",
"menu_action_copy_address": "انسخ العنوان",
"menu_action_email_link": "أرسل الرابط بالبريد…",
"menu_action_open_new_window": "افتح في نافذة جديدة",
"menu_action_open_private_window": "افتح في نافذة خاصة جديدة",
"menu_action_dismiss": "ألغِ",
"menu_action_delete": "احذف من التأريخ",
"menu_action_pin": "ثبّت",
"menu_action_unpin": "أزل",
"confirm_history_delete_p1": "هل أنت متأكد أنك تريد حذف كل وجود لهذه الصفحة من تأريخك؟",
"confirm_history_delete_notice_p2": "لا يمكن التراجع عن هذا الإجراء.",
"menu_action_save_to_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": "تنويه الخصوصية",
"welcome_title": "مرحبًا في لسان جديد",
"welcome_body": "سيستخدم فيرفكس هذا المكان لعرض أكثر العلامات، و المقالات، و الفيديوهات والصفحات التي زرتها مؤخرا، ليمكنك العودة إليها بسهولة.",
"welcome_label": "تعرّف على أهم الأخبار",
"time_label_less_than_minute": "< دقيقة",
"time_label_minute": "{number} دقيقة",
"time_label_hour": "{number} ساعة",
"time_label_day": "{number} يوم",
"settings_pane_button_label": "خصص صفحة اللسان الجديد",
"settings_pane_header": "تفضيلات صفحة اللسان الجديد",
"settings_pane_body2": "اختر ماتريد ان تراه في هذه الصفحه.",
"settings_pane_search_header": "بحث",
"settings_pane_search_body": "ابحث في الوِب من اللسان الجديد.",
"settings_pane_topsites_header": "المواقع الأكثر زيارة",
"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": "العلامات",
"settings_pane_highlights_options_visited": "المواقع المُزارة",
"settings_pane_snippets_header": "المقتطفات",
"settings_pane_snippets_body": "اقرأ تحديثات قصيرة و جميلة من موزيلا عن فَيَرفُكس، و ثقافة الإنترنت، و أحيانا صرعة عشوائية من الإنترنت.",
"settings_pane_done_button": "تمّ",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "أدخل عنوانًا",
"topsites_form_url_placeholder": "اكتب أو ألصق مسارًا",
"topsites_form_add_button": "أضِفْ",
"topsites_form_save_button": "احفظ",
"topsites_form_cancel_button": "ألغِ",
"topsites_form_url_validation": "مطلوب مسار صالح",
"pocket_read_more": "المواضيع الشائعة:",
"pocket_read_even_more": "اعرض المزيد من الأخبار",
"pocket_feedback_header": "أفضل ما في الوِب، انتقاها أكثر من ٢٥ مليون شخص.",
"pocket_description": "اكتشف محتوى عالي الجودة لربما قد فاتك دون هذا، بماسعدة من Pocket الذي أصبح الآن جزءا من موزيلا.",
"highlights_empty_state": "ابدأ التصفح وسنعرض أمامك بعض المقالات والفيديوهات والمواقع الأخرى التي زرتها حديثا أو أضفتها إلى العلامات هنا.",
"topstories_empty_state": "لا جديد. تحقق لاحقًا للحصول على مزيد من أهم الأخبار من {provider}. لا يمكنك الانتظار؟ اختر موضوعًا شائعًا للعثور على المزيد من القصص الرائعة من جميع أنحاء الوِب.",
"manual_migration_explanation2": "جرب فَيَرفُكس مع العلامات، و التأريخ، و كلمات السر من متصفح آخر.",
"manual_migration_cancel_button": "لا شكرًا",
"manual_migration_import_button": "استورد الآن"
},
"textDirection": "rtl",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ast",
"strings": {
"newtab_page_title": "Llingüeta nueva",
"default_label_loading": "Cargando…",
"header_top_sites": "Sitios destacaos",
"header_stories": "Histories destacaes",
"header_highlights": "Los destacaos",
"header_visit_again": "Visitar de nueves",
"header_bookmarks": "Marcadores recientes",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "Entá nun tienes dengún marcador.",
"header_stories_from": "de",
"type_label_visited": "Visitóse",
"type_label_bookmarked": "Amestóse a marcadores",
"type_label_synced": "Sincronizóse dende otru preséu",
"type_label_recommended": "Tendencia",
"type_label_open": "Abrir",
"type_label_topic": "Tema",
"type_label_now": "Agora",
"menu_action_bookmark": "Amestar a marcadores",
"menu_action_remove_bookmark": "Desaniciar marcador",
"menu_action_copy_address": "Copiar direición",
"menu_action_email_link": "Unviar enllaz per corréu…",
"menu_action_open_new_window": "Abrir nuna ventana nueva",
"menu_action_open_private_window": "Abrir nuna ventana privada nueva",
"menu_action_dismiss": "Escartar",
"menu_action_delete": "Desaniciar del historial",
"menu_action_pin": "Fixar",
"menu_action_unpin": "Desfixar",
"confirm_history_delete_p1": "¿De xuru que quies desaniciar cada instancia d'esta páxina del to historial?",
"confirm_history_delete_notice_p2": "Esta aición nun pue desfacese.",
"menu_action_save_to_pocket": "Guardar en Pocket",
"search_for_something_with": "Guetar {search_term} con:",
"search_button": "Guetar",
"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á",
"welcome_title": "Afáyate na llingüeta nueva",
"welcome_body": "Firefox usará esti espaciu p'amosate los marcadores, artículos, vídeos y páxines más relevantes que visitares apocayá, asina pues volver a ellos de mou cenciellu.",
"welcome_label": "Identifying your Highlights",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Search",
"settings_pane_search_body": "Search the Web from your new tab.",
"settings_pane_topsites_header": "Top Sites",
"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 youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "Fecho",
"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": "Amosar más",
"edit_topsites_showless_button": "Show Fewer",
"edit_topsites_done_button": "Fecho",
"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_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Amestar",
"topsites_form_save_button": "Guardar",
"topsites_form_cancel_button": "Encaboxar",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "az",
"strings": {
"newtab_page_title": "Yeni Vərəq",
"default_label_loading": "Yüklənir…",
"header_top_sites": "Qabaqcıl Saytlar",
"header_stories": "Qabaqcıl Hekayələr",
"header_highlights": "Seçilmişlər",
"header_visit_again": "Təkrar ziyarət et",
"header_bookmarks": "Son Əlfəcinlər",
"header_recommended_by": "{provider} məsləhət görür",
"header_bookmarks_placeholder": "Hələlik heç əlfəcininiz yoxdur.",
"header_stories_from": "qaynaq:",
"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_open": "Açıq",
"type_label_topic": "Mövzu",
"type_label_now": "İndi",
"menu_action_bookmark": "Əlfəcinlə",
"menu_action_remove_bookmark": "Əlfəcini sil",
"menu_action_copy_address": "Ünvanı köçür",
"menu_action_email_link": "Keçidi e-poçt ilə göndər…",
"menu_action_open_new_window": "Yeni Pəncərədə Aç",
"menu_action_open_private_window": "Yeni Məxfi Pəncərədə Aç",
"menu_action_dismiss": "Rədd et",
"menu_action_delete": "Tarixçədən Sil",
"menu_action_pin": "Bərkid",
"menu_action_unpin": ıxart",
"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",
"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",
"welcome_title": "Yeni vərəqə xoş gəldiniz",
"welcome_body": "Firefox bu səhifədə ən uyğun əlfəcin, məqalə, video və son ziyarət etdiyiniz səhifələri göstərərək onları rahat tapmağınıza kömək edəcək.",
"welcome_label": "Seçilmişləriniz təyin edilir",
"time_label_less_than_minute": "<1d",
"time_label_minute": "{number}d",
"time_label_hour": "{number}s",
"time_label_day": "{number}g",
"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.",
"settings_pane_search_header": "Axtar",
"settings_pane_search_body": "Yeni vərəqinizdən Web-də axtarış edin.",
"settings_pane_topsites_header": "Qabaqcıl Saytlar",
"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",
"settings_pane_highlights_options_visited": "Baxılmış Saytlar",
"settings_pane_snippets_header": "Hissələr",
"settings_pane_snippets_body": "Mozilladan Firefox, internet mədəniyyəti və digər yeniliklər haqqında qısa bildirişlər oxuyun.",
"settings_pane_done_button": "Oldu",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Başlıq daxil et",
"topsites_form_url_placeholder": "Ünvanı yazın və ya yapışdırın",
"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",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "be",
"strings": {
"newtab_page_title": "Новая картка",
"default_label_loading": "Загрузка…",
"header_top_sites": "Папулярныя сайты",
"header_stories": "Галоўныя навіны",
"header_highlights": "Выбранае",
"header_visit_again": "Наведаць зноў",
"header_bookmarks": "Нядаўнія закладкі",
"header_recommended_by": "Рэкамендавана {provider}",
"header_bookmarks_placeholder": "У вас яшчэ няма закладак.",
"header_stories_from": "ад",
"type_label_visited": "Наведанае",
"type_label_bookmarked": "У закладках",
"type_label_synced": "Сінхранізаванае з іншай прылады",
"type_label_recommended": "Тэндэнцыі",
"type_label_open": "Адкрыта",
"type_label_topic": "Тэма",
"type_label_now": "Зараз",
"menu_action_bookmark": "У закладкі",
"menu_action_remove_bookmark": "Выдаліць закладку",
"menu_action_copy_address": "Скапіраваць адрас",
"menu_action_email_link": "Даслаць спасылку…",
"menu_action_open_new_window": "Адкрыць у новым акне",
"menu_action_open_private_window": "Адкрыць у новым прыватным акне",
"menu_action_dismiss": "Адхіліць",
"menu_action_delete": "Выдаліць з гісторыі",
"menu_action_pin": "Замацаваць",
"menu_action_unpin": "Адмацаваць",
"confirm_history_delete_p1": "Вы сапраўды жадаеце выдаліць усе запісы аб гэтай старонцы з гісторыі?",
"confirm_history_delete_notice_p2": "Гэта дзеянне немагчыма адмяніць.",
"menu_action_save_to_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": "Паведамленне аб прыватнасці",
"welcome_title": "Калі ласка ў новую картку",
"welcome_body": "Firefox будзе выкарыстоўваць гэта месца, каб адлюстроўваць самыя актуальныя закладкі, артыкулы, відэа і старонкі, якія вы нядаўна наведалі, каб вы змаглі лёгка трапіць на іх зноў.",
"welcome_label": "Вызначэнне вашага выбранага",
"time_label_less_than_minute": "<1 хв",
"time_label_minute": "{number} хв",
"time_label_hour": "{number} г",
"time_label_day": "{number} д",
"settings_pane_button_label": "Наладзіць вашу старонку новай карткі",
"settings_pane_header": "Налады новай карткі",
"settings_pane_body2": "Выберыце тое, што вы бачыце на гэтай старонцы.",
"settings_pane_search_header": "Пошук",
"settings_pane_search_body": "Пошук у Сеціве з вашай новай карткі.",
"settings_pane_topsites_header": "Папулярныя сайты",
"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": "Закладкі",
"settings_pane_highlights_options_visited": "Наведаныя сайты",
"settings_pane_snippets_header": "Урыўкі",
"settings_pane_snippets_body": "Чытайце кароткія і радасныя навіны ад Mozilla аб Firefox, інтэрнэт-культуру і выпадковыя мемы.",
"settings_pane_done_button": "Гатова",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Увядзіце назву",
"topsites_form_url_placeholder": "Увядзіце або ўстаўце URL",
"topsites_form_add_button": "Дадаць",
"topsites_form_save_button": "Захаваць",
"topsites_form_cancel_button": "Скасаваць",
"topsites_form_url_validation": "Патрабуецца сапраўдны URL",
"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": "Імпартаваць зараз"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "bg",
"strings": {
"newtab_page_title": "Нов раздел",
"default_label_loading": "Зареждане…",
"header_top_sites": "Най-посещавани",
"header_stories": "Популярни",
"header_highlights": "Акценти",
"header_visit_again": "Посещаване",
"header_bookmarks": "Последни отметки",
"header_recommended_by": "Препоръчано от {provider}",
"header_bookmarks_placeholder": "Все още нямате отметки.",
"header_stories_from": "от",
"type_label_visited": "Посетена",
"type_label_bookmarked": "Отметната",
"type_label_synced": "Синхронизирана от друго устройство",
"type_label_recommended": "Тенденции",
"type_label_open": "Отваряне",
"type_label_topic": "Тема",
"type_label_now": "Сега",
"menu_action_bookmark": "Отметка",
"menu_action_remove_bookmark": "Премахване на отметка",
"menu_action_copy_address": "Копиране на адрес",
"menu_action_email_link": "Препратка по ел. поща…",
"menu_action_open_new_window": "Отваряне в раздел",
"menu_action_open_private_window": "Отваряне в поверителен прозорец",
"menu_action_dismiss": "Отхвърляне",
"menu_action_delete": "Премахване от историята",
"menu_action_pin": "Закачане",
"menu_action_unpin": "Откачане",
"confirm_history_delete_p1": "Сигурни ли сте, че желаете да премахнете страницата навсякъде от историята?",
"confirm_history_delete_notice_p2": "Действието е необратимо.",
"menu_action_save_to_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": "Политика на поверителност",
"welcome_title": "Добре дошли в нов раздел",
"welcome_body": "Firefox ще използва това място, за да ви покаже най-подходящите отметки, статии, видео и страници, които сте посетили наскоро, така че да ги намерите пак лесно.",
"welcome_label": "Търсене на акценти",
"time_label_less_than_minute": "<1м",
"time_label_minute": "{number} м",
"time_label_hour": "{number} ч",
"time_label_day": "{number} д",
"settings_pane_button_label": "Настройки на новия раздел",
"settings_pane_header": "Настройки на нов раздел",
"settings_pane_body2": "Изберете какво да виждате на тази страница.",
"settings_pane_search_header": "Търсене",
"settings_pane_search_body": "Търсете в мрежата от нов раздел.",
"settings_pane_topsites_header": "Най-посещавани",
"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": "Отметки",
"settings_pane_highlights_options_visited": "Посетени страници",
"settings_pane_snippets_header": "Изрезки",
"settings_pane_snippets_body": "Четете кратки и радостни новини от Mozilla относно Firefox, интернет-културата и случайни мемета.",
"settings_pane_done_button": "Готово",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Заглавие",
"topsites_form_url_placeholder": "Адрес",
"topsites_form_add_button": "Добавяне",
"topsites_form_save_button": "Запазване",
"topsites_form_cancel_button": "Отказ",
"topsites_form_url_validation": "Необходим е валиден URL",
"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": "Внасяне"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "bn-BD",
"strings": {
"newtab_page_title": "নতুন ট্যাব",
"default_label_loading": "লোড হচ্ছে…",
"header_top_sites": "শীর্ঘ সাইট",
"header_stories": "শীর্ষ গল্প",
"header_highlights": "হাইলাইটস",
"header_visit_again": "পুনরায় ভিজিট করুন",
"header_bookmarks": "সাম্প্রতিক বুকমার্ক",
"header_recommended_by": "{provider} দ্বারা সুপারিশকৃত",
"header_bookmarks_placeholder": "এখনও কোন বুকমার্ক নেই।",
"header_stories_from": "থেকে",
"type_label_visited": "পরিদর্শিত",
"type_label_bookmarked": "বুকমার্ক করা হয়েছে",
"type_label_synced": "অন্য ডিভাইস থেকে সিঙ্ক করা হয়েছে",
"type_label_recommended": "ঝোঁক",
"type_label_open": "খোলা",
"type_label_topic": "টপিক",
"type_label_now": "এখন",
"menu_action_bookmark": "বুকমার্ক",
"menu_action_remove_bookmark": "বুকমার্ক মুছে দিন",
"menu_action_copy_address": "ঠিকানা কপি করুন",
"menu_action_email_link": "ইমেইল লিঙ্ক…",
"menu_action_open_new_window": "নতুন উইন্ডোতে খুলুন",
"menu_action_open_private_window": "নতুন ব্যক্তিগত উইন্ডোতে খুলুন",
"menu_action_dismiss": "বাতিল",
"menu_action_delete": "ইতিহাস থেকে মুছে ফেলুন",
"menu_action_pin": "পিন",
"menu_action_unpin": "আনপিন",
"confirm_history_delete_p1": "আপনি কি নিশ্চিতভাবে আপনার ইতিহাস থেকে এই পাতার সকল কিছু মুছে ফেলতে চান?",
"confirm_history_delete_notice_p2": "এই পরিবর্তনটি অপরিবর্তনীয়।",
"menu_action_save_to_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": "গোপনীয়তা বিজ্ঞপ্তি",
"welcome_title": "নতুন ট্যাবে আপনাকে স্বাগতম",
"welcome_body": "আপনার সাথে মিলে এমন বুর্কমার্ক, নিবন্ধ, ভিডিও এবং পাতা যেগুলো আপনি সম্প্রতি ভ্রমণ করেছে তা Firefox এই জায়গায় দেখাবে, যাতে আপনি সেগুলো দ্রুত খুঁজে পান।",
"welcome_label": "আপনার হাইলাইট সমূহ চিহ্নিত করুন",
"time_label_less_than_minute": "<1মিনিট",
"time_label_minute": "{number} মিনিট",
"time_label_hour": "{number} ঘন্টা",
"time_label_day": "{number} দিন",
"settings_pane_button_label": "আপনার নতুন ট্যাব পেজটি কাস্টমাইজ করুন",
"settings_pane_header": "নতুন ট্যাব পছন্দসমূহ",
"settings_pane_body2": "আপনি এই পৃষ্ঠায় যা দেখেন তা পছন্দ করুন।",
"settings_pane_search_header": "অনুসন্ধান",
"settings_pane_search_body": "আপনার নতুন ট্যাব থেকে ওয়েবে খুঁজুন।",
"settings_pane_topsites_header": "শীর্ষ সাইট",
"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": "বুকমার্ক",
"settings_pane_highlights_options_visited": "পূর্বে পরিদর্শন করা সাইটগুলি",
"settings_pane_snippets_header": "টুকিটাকি",
"settings_pane_snippets_body": "Mozilla থেকে Firefox, ইন্টারনেট সংস্কৃতি, এবং মাঝে মাঝে উদ্দেশ্যহীন মেমে সম্পর্কে ছোট এবং মিষ্টি আপডেটগুলি পড়ুন।",
"settings_pane_done_button": "হয়েছে",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "নাম দিন",
"topsites_form_url_placeholder": "টাইপ করুন অথবা পেস্ট করুন URL",
"topsites_form_add_button": "যোগ",
"topsites_form_save_button": "সংরক্ষণ",
"topsites_form_cancel_button": "বাতিল",
"topsites_form_url_validation": "কার্যকর URL প্রয়োজন",
"pocket_read_more": "জনপ্রিয় বিষয়:",
"pocket_read_even_more": "আরও গল্প দেখুন",
"pocket_feedback_header": "ওয়েব জগতের সেরা, যা ২.৫ লক্ষ মানুষ রক্ষণাবেক্ষণ করে।",
"pocket_description": "Pocket এর সাহায্যে, যা এখন Mozilla এর অংশ, উচ্চ মানের বিষয়বস্তু আবিষ্কার করুন যা আপনি অন্যথায় পেতেন না।",
"highlights_empty_state": "ব্রাউজি করা শুরু করুন, এবং কিছু গুরুত্বপূর্ণ নিবন্ধ, ভিডিও, এবং আপনি সম্প্রতি পরিদর্শন বা বুকমার্ক করেছেন এমন কিছু পৃষ্ঠা আমরা এখানে প্রদর্শন করব।",
"topstories_empty_state": "কিছু একটা ঠিক নেই। {provider} এর শীর্ষ গল্পগুলো পেতে কিছুক্ষণ পর আবার দেখুন। অপেক্ষা করতে চান না? বিশ্বের সেরা গল্পগুলো পেতে কোন জনপ্রিয় বিষয় নির্বাচন করুন।",
"manual_migration_explanation2": "অন্য ব্রাউজার থেকে আনা বুকমার্ক, ইতিহাস এবং পাসওয়ার্ডগুলির সাথে ফায়ারফক্স ব্যবহার করে দেখুন।",
"manual_migration_cancel_button": "প্রয়োজন নেই",
"manual_migration_import_button": "এখনই ইম্পোর্ট করুন"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "bn-IN",
"strings": {
"newtab_page_title": "নতুন ট্যাব",
"default_label_loading": "লোড করা হচ্ছে…",
"header_top_sites": "শীর্ষ সাইটগুলি",
"header_stories": "শীর্ষ গল্প",
"header_highlights": "হাইলাইটস",
"header_visit_again": "পুনরায় ভিজিট করুন",
"header_bookmarks": "সাম্প্রতিক বুকমার্ক",
"header_recommended_by": "{provider} দ্বারা সুপারিশকৃত",
"header_bookmarks_placeholder": "এখনও কোন বুকমার্ক নেই।",
"header_stories_from": "থেকে",
"type_label_visited": "দেখা হয়েছে",
"type_label_bookmarked": "বুকমার্ক করা হয়েছে",
"type_label_synced": "অন্য ডিভাইস থেকে সিঙ্ক করা হয়েছে",
"type_label_recommended": "ঝোঁক",
"type_label_open": "খুলুন",
"type_label_topic": "বিষয়",
"type_label_now": "এখন",
"menu_action_bookmark": "বুকমার্ক",
"menu_action_remove_bookmark": "বুকমার্ক সরান",
"menu_action_copy_address": "ঠিকানা কপি করুন",
"menu_action_email_link": "ই-মেইল লিংক…",
"menu_action_open_new_window": "নতুন উইন্ডোর মধ্যে খুলুন",
"menu_action_open_private_window": "নতুন প্রাইভেট উইন্ডোর মধ্যে খুলুন",
"menu_action_dismiss": "বাতিল",
"menu_action_delete": "তালিকা থেকে মুছে ফেলুন",
"menu_action_pin": "পিন",
"menu_action_unpin": "আনপিন",
"confirm_history_delete_p1": "আপনি কি নিশ্চিতভাবে আপনার ইতিহাস থেকে এই পাতার সকল কিছু মুছে ফেলতে চান?",
"confirm_history_delete_notice_p2": "এই পরিবর্তনটি অপরিবর্তনীয়।",
"menu_action_save_to_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": "গোপনীয়তা বিজ্ঞপ্তি",
"welcome_title": "নতুন ট্যাবে স্বাগতম",
"welcome_body": "আপনার সাথে মিলে এমন বুর্কমার্ক, নিবন্ধ, ভিডিও এবং পাতা যেগুলো আপনি সম্প্রতি ভ্রমণ করেছে তা Firefox এই জায়গায় দেখাবে, যাতে আপনি সেগুলো দ্রুত খুঁজে পান।",
"welcome_label": "আপনার হাইলাইট সমূহ চিহ্নিত করা হচ্ছে",
"time_label_less_than_minute": "<1মিনিট",
"time_label_minute": "{number} মিনিট",
"time_label_hour": "{number} ঘন্টা",
"time_label_day": "{number} দিন",
"settings_pane_button_label": "আপনার নতুন ট্যাব পেজটি কাস্টমাইজ করুন",
"settings_pane_header": "নতুন ট্যাব পছন্দসমূহ",
"settings_pane_body2": "আপনি এই পৃষ্ঠায় যা দেখেন তা পছন্দ করুন।",
"settings_pane_search_header": "অনুসন্ধান",
"settings_pane_search_body": "আপনার নতুন ট্যাব থেকে ওয়েবে খুঁজুন।",
"settings_pane_topsites_header": "শীর্ষ সাইট",
"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": "বুকমার্ক",
"settings_pane_highlights_options_visited": "পূর্বে পরিদর্শন করা সাইটগুলি",
"settings_pane_snippets_header": "টুকিটাকি",
"settings_pane_snippets_body": "Mozilla থেকে Firefox, ইন্টারনেট সংস্কৃতি, এবং মাঝে মাঝে উদ্দেশ্যহীন মেমে সম্পর্কে ছোট এবং মিষ্টি আপডেটগুলি পড়ুন।",
"settings_pane_done_button": "হয়েছে",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "একটি শিরোনাম লিখুন",
"topsites_form_url_placeholder": "টাইপ করুন অথবা পেস্ট করুন URL",
"topsites_form_add_button": "যোগ",
"topsites_form_save_button": "সংরক্ষণ",
"topsites_form_cancel_button": "বাতিল করুন",
"topsites_form_url_validation": "কার্যকর URL প্রয়োজন",
"pocket_read_more": "জনপ্রিয় বিষয়:",
"pocket_read_even_more": "আরও গল্প দেখুন",
"pocket_feedback_header": "ওয়েব জগতের সেরা, যা ২.৫ লক্ষ মানুষ রক্ষণাবেক্ষণ করে।",
"pocket_description": "Pocket এর সাহায্যে, যা এখন Mozilla এর অংশ, উচ্চ মানের বিষয়বস্তু আবিষ্কার করুন যা আপনি অন্যথায় পেতেন না।",
"highlights_empty_state": "ব্রাউজি করা শুরু করুন, এবং কিছু গুরুত্বপূর্ণ নিবন্ধ, ভিডিও, এবং আপনি সম্প্রতি পরিদর্শন বা বুকমার্ক করেছেন এমন কিছু পৃষ্ঠা আমরা এখানে প্রদর্শন করব।",
"topstories_empty_state": "কিছু একটা ঠিক নেই। {provider} এর শীর্ষ গল্পগুলো পেতে কিছুক্ষণ পর আবার দেখুন। অপেক্ষা করতে চান না? বিশ্বের সেরা গল্পগুলো পেতে কোন জনপ্রিয় বিষয় নির্বাচন করুন।",
"manual_migration_explanation2": "অন্য ব্রাউজার থেকে আনা বুকমার্ক, ইতিহাস এবং পাসওয়ার্ডগুলির সাথে ফায়ারফক্স ব্যবহার করে দেখুন।",
"manual_migration_cancel_button": "প্রয়োজন নেই",
"manual_migration_import_button": "এখনই ইম্পোর্ট করুন"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "br",
"strings": {
"newtab_page_title": "Ivinell nevez",
"default_label_loading": "O kargañ…",
"header_top_sites": "Lec'hiennoù pennañ",
"header_stories": "Istorioù pennañ",
"header_highlights": "Mareoù pouezus",
"header_visit_again": "Gweladenniñ en-dro",
"header_bookmarks": "Sinedoù nevez",
"header_recommended_by": "Erbedet gant {provider}",
"header_bookmarks_placeholder": "N'ho peus sined ebet evit ar mare.",
"header_stories_from": "a-berzh",
"type_label_visited": "Gweladennet",
"type_label_bookmarked": "Lakaet er sinedoù",
"type_label_synced": "Goubredet eus un trevnad all",
"type_label_recommended": "Brudet",
"type_label_open": "Digeriñ",
"type_label_topic": "Danvez",
"type_label_now": "Bremañ",
"menu_action_bookmark": "Sined",
"menu_action_remove_bookmark": "Dilemel ar sined",
"menu_action_copy_address": "Eilañ ar chomlec'h",
"menu_action_email_link": "Kas an ere dre bostel…",
"menu_action_open_new_window": "Digeriñ e-barzh ur prenestr nevez",
"menu_action_open_private_window": "Digeriñ e-barzh ur prenestr merdeiñ prevez nevez",
"menu_action_dismiss": "Argas",
"menu_action_delete": "Dilemel eus ar roll istor",
"menu_action_pin": "Spilhennañ",
"menu_action_unpin": "Dispilhennañ",
"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",
"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",
"welcome_title": "Donemat war un ivinell nevez",
"welcome_body": "Firefox a implijo al lec'h-mañ evit diskouez deoc'h sinedoù, pennadoù, videoioù ha pajennoù bet gweladennet ganeoc'h, evit adkavout anezho en un doare aes.",
"welcome_label": "Naoudiañ ho mareoù pouezus",
"time_label_less_than_minute": "< 1 m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}e",
"time_label_day": "{number}d",
"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ñ.",
"settings_pane_search_header": "Klask",
"settings_pane_search_body": "Klask er web adalek an ivinell nevez.",
"settings_pane_topsites_header": "Lec'hiennoù gwellañ",
"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ù",
"settings_pane_highlights_options_visited": "Lec'hiennoù gweladennet",
"settings_pane_snippets_header": "Notennigoù",
"settings_pane_snippets_body": "Lennit an hizivadurioù berr ha dous graet gant Mozilla evit Firefox, sevenadur ar genrouedad, hag ur mem dre-zegouezh ur wech an amzer.",
"settings_pane_done_button": "Graet",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Enankañ un titl",
"topsites_form_url_placeholder": "Skrivit pe pegit un URL",
"topsites_form_add_button": "Ouzhpennañ",
"topsites_form_save_button": "Enrollañ",
"topsites_form_cancel_button": "Nullañ",
"topsites_form_url_validation": "URL talvoudek azgoulennet",
"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 deoch pennadoù, videoioù ha pajennoù all gweladennet pe lakaet er sinedoù nevez zo.",
"topstories_empty_state": "Aet oc'h betek penn. Distroit diwezhatoc'h evit muioch a istorioù digant {provider}. Noc'h ket evit gortoz? Dibabit un danvez brudet evit klask muioch a bennadoù dedennus eus pep lech er web.",
"manual_migration_explanation2": "Amprouit Firefox gant sinedoù, roll istor ha gerioù-tremen ur merdeer all.",
"manual_migration_cancel_button": "N'am bo ket",
"manual_migration_import_button": "Emporzhiañ bremañ"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "bs",
"strings": {
"newtab_page_title": "Novi tab",
"default_label_loading": "Učitavam…",
"header_top_sites": "Najbolje stranice",
"header_stories": "Najbolje priče",
"header_highlights": "Istaknuto",
"header_visit_again": "Posjeti ponovo",
"header_bookmarks": "Nedavne zabilješke",
"header_recommended_by": "Preporučeno od {provider}",
"header_bookmarks_placeholder": "Nemate nijednu zabilješku.",
"header_stories_from": "od",
"type_label_visited": "Posjećeno",
"type_label_bookmarked": "Zabilježeno",
"type_label_synced": "Sinhronizovano s drugog uređaja",
"type_label_recommended": "Popularno",
"type_label_open": "Otvoreno",
"type_label_topic": "Tema",
"type_label_now": "Sada",
"menu_action_bookmark": "Zabilježi",
"menu_action_remove_bookmark": "Ukloni zabilješku",
"menu_action_copy_address": "Kopiraj adresu",
"menu_action_email_link": "Pošalji vezu e-poštom…",
"menu_action_open_new_window": "Otvori u novom prozoru",
"menu_action_open_private_window": "Otvori u novom privatnom prozoru",
"menu_action_dismiss": "Odbaci",
"menu_action_delete": "Izbriši iz historije",
"menu_action_pin": "Zakači",
"menu_action_unpin": "Otkači",
"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",
"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",
"welcome_title": "Dobrodošli u novi tab",
"welcome_body": "Firefox će koristiti ovaj prostor da vam prikaže vaše najrelevantnije zabilješke, članke, video i stranice koje ste nedavno posjetili, da bi im mogli lahko ponovo pristupiti.",
"welcome_label": "Identificiram vaše istaknute stavke",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Traži",
"settings_pane_search_body": "Pretražite web iz novog taba.",
"settings_pane_topsites_header": "Najbolje stranice",
"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",
"settings_pane_highlights_options_visited": "Posjećene stranice",
"settings_pane_snippets_header": "Isječci",
"settings_pane_snippets_body": "Pročitajte kratke i slatke obavijesti od Mozille o Firefoxu, internet kulturi i povremenim nasumičnim temama.",
"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 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_placeholder": "Unesi naslov",
"topsites_form_url_placeholder": "Upišite ili zalijepite URL",
"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",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ca",
"strings": {
"newtab_page_title": "Pestanya nova",
"default_label_loading": "S'està carregant…",
"header_top_sites": "Llocs principals",
"header_stories": "Articles populars",
"header_highlights": "Destacats",
"header_visit_again": "Torneu a visitar",
"header_bookmarks": "Adreces d'interès recents",
"header_recommended_by": "Recomanat per {provider}",
"header_bookmarks_placeholder": "Encara no teniu cap adreça d'interès.",
"header_stories_from": "de",
"type_label_visited": "Visitat",
"type_label_bookmarked": "A les adreces d'interès",
"type_label_synced": "Sincronitzat des d'un altre dispositiu",
"type_label_recommended": "Tendència",
"type_label_open": "Obert",
"type_label_topic": "Tema",
"type_label_now": "Ara",
"menu_action_bookmark": "Afegeix a les adreces d'interès",
"menu_action_remove_bookmark": "Elimina l'adreça d'interès",
"menu_action_copy_address": "Copia l'adreça",
"menu_action_email_link": "Envia l'enllaç per correu…",
"menu_action_open_new_window": "Obre en una finestra nova",
"menu_action_open_private_window": "Obre en una finestra privada nova",
"menu_action_dismiss": "Descarta",
"menu_action_delete": "Elimina de l'historial",
"menu_action_pin": "Fixa",
"menu_action_unpin": "No fixis",
"confirm_history_delete_p1": "Segur que voleu suprimir de l'historial totes les instàncies d'aquesta pàgina?",
"confirm_history_delete_notice_p2": "Aquesta acció no es pot desfer.",
"menu_action_save_to_pocket": "Desa al Pocket",
"search_for_something_with": "Cerca {search_term} amb:",
"search_button": "Cerca",
"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",
"welcome_title": "Us donem la benvinguda a la pestanya nova",
"welcome_body": "El Firefox utilitzarà aquest espai per mostrar-vos les adreces d'interès, els articles i els vídeos més rellevants, així com les pàgines que heu visitat recentment, per tal que hi pugueu accedir fàcilment.",
"welcome_label": "S'estan identificant els vostres llocs destacats",
"time_label_less_than_minute": "<1 m",
"time_label_minute": "{number} m",
"time_label_hour": "{number} h",
"time_label_day": "{number} d",
"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.",
"settings_pane_search_header": "Cerca",
"settings_pane_search_body": "Cerca al web des de la pestanya nova.",
"settings_pane_topsites_header": "Llocs principals",
"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": "Find your way back to interesting things youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Adreces d'interès",
"settings_pane_highlights_options_visited": "Llocs visitats",
"settings_pane_snippets_header": "Retalls",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "Fet",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Escriviu el títol",
"topsites_form_url_placeholder": "Escriviu o enganxeu un URL",
"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",
"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": "Discover high-quality content you might otherwise miss, with help from Pocket, now part of Mozilla.",
"highlights_empty_state": "Start browsing, and well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"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.",
"manual_migration_explanation2": "Proveu el Firefox amb les adreces d'interès, l'historial i les contrasenyes d'un altre navegador.",
"manual_migration_cancel_button": "No, gràcies",
"manual_migration_import_button": "Importa-ho ara"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "cak",
"strings": {
"newtab_page_title": "K'ak'a' ruwi'",
"default_label_loading": "Tajin nusamajij…",
"header_top_sites": "Utziläj taq Ruxaq K'amaya'l",
"header_stories": "Utziläj taq B'anob'äl",
"header_highlights": "Taq k'ewachinïk",
"header_visit_again": "Titz'et chik",
"header_bookmarks": "K'ak'a' taq Yaketal",
"header_recommended_by": "Chilab'en ruma {provider}",
"header_bookmarks_placeholder": "K'a majun ayaketal k'o.",
"header_stories_from": "richin",
"type_label_visited": "Tz'eton",
"type_label_bookmarked": "Yakon retal",
"type_label_synced": "Ximon rik'in jun chik okisaxel",
"type_label_recommended": "Rujawaxik",
"type_label_open": "Tijaq",
"type_label_topic": "Na'oj",
"type_label_now": "Wakami",
"menu_action_bookmark": "Yaketal",
"menu_action_remove_bookmark": "Tiyuj el ri yaketal",
"menu_action_copy_address": "Tiwachib'ëx Ochochib'äl",
"menu_action_email_link": "Titaq Ximonel Tzij…",
"menu_action_open_new_window": "Tijaq pa jun K'ak'a' Tzuwäch",
"menu_action_open_private_window": "Tijaq pa jun K'ak'a' Ichinan Tzuwäch",
"menu_action_dismiss": "Tichup ruwäch",
"menu_action_delete": "Tiyuj el pa ri Natab'äl",
"menu_action_pin": "Ximoj",
"menu_action_unpin": "Tosq'opïx",
"confirm_history_delete_p1": "¿La kan nawajo ye'ayüj el ronojel ri kib'eyal re taq ruxaq re' chi kikojol ri anatab'al?",
"confirm_history_delete_notice_p2": "Man yatikïr ta najäl re b'anïk re'.",
"menu_action_save_to_pocket": "Tiyak pa Pocket",
"search_for_something_with": "Tikanoj {search_term} rik'in:",
"search_button": "Tikanöx",
"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",
"welcome_title": "Ütz apetik pa ri k'ak'a' ruwi'",
"welcome_body": "Firefox xtrokisaj re k'ojlib'äl re' richin xtuk'üt ri taq ruwi', rutzijol, tzuwäch chuqa' taq ruxaq yalan kejqalem ri k'a ja' xe'atz'ët, richin chanin yatikïr yatok jun mul chik.",
"welcome_label": "Tiya' ketal ri Nïm taq K'ojlib'äl",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}m",
"time_label_day": "{ajilab'äl}m",
"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'.",
"settings_pane_search_header": "Tikanöx",
"settings_pane_search_body": "Tikanoj ri k'ak'a' taq ruwi' pa ri K'amaya'l.",
"settings_pane_topsites_header": "Utziläj taq ruxaq K'amaya'l",
"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",
"settings_pane_highlights_options_visited": "Ruxaq k'amaya'l etz'eton",
"settings_pane_snippets_header": "Taq pir",
"settings_pane_snippets_body": "Ke'asik'ij koköj taq rutzijol Mozilla chi rij Firefox, rub'anob'al k'amaya'l, chuqa' jantäq q'olonel wachib'äl.",
"settings_pane_done_button": "Xk'is",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Tatz'ib'aj jun b'i'aj",
"topsites_form_url_placeholder": "Tatz'ib'aj o tatz'ajb'a' jun URL",
"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",
"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.",
"manual_migration_explanation2": "Tatojtob'ej Firefox kik'in ri taq ruyaketal, runatab'äl chuqa' taq ewan rutzij jun chik okik'amaya'l.",
"manual_migration_cancel_button": "Mani matyox",
"manual_migration_import_button": "Tijik' pe"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "cs",
"strings": {
"newtab_page_title": "Nový panel",
"default_label_loading": "Načítání…",
"header_top_sites": "Top stránky",
"header_stories": "Nejlepší příběhy",
"header_highlights": "Vybrané",
"header_visit_again": "Znovu navštívit",
"header_bookmarks": "Nedávno přidané záložky",
"header_recommended_by": "Doporučení ze služby {provider}",
"header_bookmarks_placeholder": "Zatím nemáte uložené žádné záložky.",
"header_stories_from": "ze šlužby",
"type_label_visited": "Navštívené",
"type_label_bookmarked": "V záložkách",
"type_label_synced": "Synchronizované z jiného zařízení",
"type_label_recommended": "Populární",
"type_label_open": "Otevřené",
"type_label_topic": "Téma",
"type_label_now": "Teď",
"menu_action_bookmark": "Přidat do záložek",
"menu_action_remove_bookmark": "Odebrat záložku",
"menu_action_copy_address": "Zkopírovat adresu",
"menu_action_email_link": "Poslat odkaz…",
"menu_action_open_new_window": "Otevřít v novém okně",
"menu_action_open_private_window": "Otevřít v novém anonymním okně",
"menu_action_dismiss": "Skrýt",
"menu_action_delete": "Smazat z historie",
"menu_action_pin": "Připnout",
"menu_action_unpin": "Odepnout",
"confirm_history_delete_p1": "Opravdu chcete smazat všechny výskyty této stránky z vaší historie?",
"confirm_history_delete_notice_p2": "Tuto akci nelze vzít zpět.",
"menu_action_save_to_pocket": "Uložit do služby Pocket",
"search_for_something_with": "Vyhledat {search_term} s:",
"search_button": "Hledat",
"search_header": "Vyhledat pomocí {search_engine_name}",
"search_web_placeholder": "Hledat 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í",
"welcome_title": "Vítejte na stránce nového panelu",
"welcome_body": "Tady Firefox zobrazí nejrelevantnější záložky, články, videa a stránky, které jste nedávno navštívili. Návrat k nim je tak velmi jednoduchý.",
"welcome_label": "Rozpoznávání Vybraných stránek",
"time_label_less_than_minute": "< 1 min",
"time_label_minute": "{number} min",
"time_label_hour": "{number} h",
"time_label_day": "{number} d",
"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.",
"settings_pane_search_header": "Vyhledávání",
"settings_pane_search_body": "Vyhledávání na webu rovnou ze stránky nového panelu.",
"settings_pane_topsites_header": "Top stránky",
"settings_pane_topsites_body": "Přístup ke stránkám, které nejčastěji navštěvujete.",
"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",
"settings_pane_highlights_options_visited": "Navštívené stránky",
"settings_pane_snippets_header": "Útržky",
"settings_pane_snippets_body": "Přečtěte si krátké zprávy od Mozilly o Firefoxu, internetu a občas i náhodné memy a hlášky.",
"settings_pane_done_button": "Hotovo",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Zadejte název",
"topsites_form_url_placeholder": "Zadejte nebo vložte URL adresu",
"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",
"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.",
"manual_migration_explanation2": "Vyzkoušejte Firefox se záložkami, historií a hesly z jiného vašeho prohlížeče.",
"manual_migration_cancel_button": "Ne, děkuji",
"manual_migration_import_button": "Importovat nyní"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "cy",
"strings": {
"newtab_page_title": "Tab Newydd",
"default_label_loading": "Llwytho…",
"header_top_sites": "Hoff Wefannau",
"header_stories": "Hoff Straeon",
"header_highlights": "Goreuon",
"header_visit_again": "Ymweld Eto",
"header_bookmarks": "Nodau Tudalen Diweddar",
"header_recommended_by": "Argymhellwyd gan {provider}",
"header_bookmarks_placeholder": "Nid oes gennych unrhyw nodau tudalen eto.",
"header_stories_from": "oddi wrth",
"type_label_visited": "Ymwelwyd",
"type_label_bookmarked": "Nod Tudalen",
"type_label_synced": "Cydweddwyd o ddyfais arall",
"type_label_recommended": "Trendio",
"type_label_open": "Ar Agor",
"type_label_topic": "Pwnc",
"type_label_now": "Nawr",
"menu_action_bookmark": "Nod Tudalen",
"menu_action_remove_bookmark": "Tynnu Nod Tudalen",
"menu_action_copy_address": "Copïo'r Cyfeiriad",
"menu_action_email_link": "Dolen E-bost…",
"menu_action_open_new_window": "Agor Ffenestr Newydd",
"menu_action_open_private_window": "Agor mewn Ffenestr Preifat Newydd",
"menu_action_dismiss": "Cau",
"menu_action_delete": "Dileu o'r Hanes",
"menu_action_pin": "Pinio",
"menu_action_unpin": "Dad-binio",
"confirm_history_delete_p1": "Ydych chi'n siŵr eich bod chi am ddileu pob enghraifft o'r dudalen hon o'ch hanes?",
"confirm_history_delete_notice_p2": "Nid oes modd dadwneud hyn.",
"menu_action_save_to_pocket": "Cadw i Pocket",
"search_for_something_with": "Chwilio am {search_term} gyda:",
"search_button": "Chwilio",
"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",
"welcome_title": "Croeso i dab newydd",
"welcome_body": "Bydd Firefox yn defnyddio'r gofod hwn i ddangos y nodau tudalen, erthyglau, fideos a thudalennau mwyaf perthnasol i chi, a thudalennau fuoch yn ymweld â nhw'n ddiweddar, fel bod modd i chi ddychwelydd atyn nhw'n hawdd.",
"welcome_label": "Adnabod eich Goreuon",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}a",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Chwilio",
"settings_pane_search_body": "Chwilio'r We o'ch tab newydd.",
"settings_pane_topsites_header": "Hoff Wefannau",
"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",
"settings_pane_highlights_options_visited": "Gwefannau Ymwelwyd â Nhw",
"settings_pane_snippets_header": "Tameidiau",
"settings_pane_snippets_body": "Darllenwch ddiweddariadau cryno gan Mozilla am Firefox, diwylliant y Rhyngrwyd ac weithiau meme ar hap.",
"settings_pane_done_button": "Gorffen",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Rhoi teitl",
"topsites_form_url_placeholder": "Teipio neu ludo URL",
"topsites_form_add_button": "Ychwanegu",
"topsites_form_save_button": "Cadw",
"topsites_form_cancel_button": "Diddymu",
"topsites_form_url_validation": "Mae angen URL Ddilys",
"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. ",
"manual_migration_explanation2": "Profwch Firefox gyda nodau tudalen, hanes a chyfrineiriau o borwr arall.",
"manual_migration_cancel_button": "Dim Diolch",
"manual_migration_import_button": "Mewnforio Nawr"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "da",
"strings": {
"newtab_page_title": "Nyt faneblad",
"default_label_loading": "Indlæser…",
"header_top_sites": "Mest besøgte websider",
"header_stories": "Tophistorier",
"header_highlights": "Fremhævede",
"header_visit_again": "Besøg igen",
"header_bookmarks": "Seneste bogmærker",
"header_recommended_by": "Anbefalet af {provider}",
"header_bookmarks_placeholder": "Du har ingen bogmærker endnu.",
"header_stories_from": "fra",
"type_label_visited": "Besøgt",
"type_label_bookmarked": "Bogmærket",
"type_label_synced": "Synkroniseret fra en anden enhed",
"type_label_recommended": "Populært",
"type_label_open": "Åben",
"type_label_topic": "Emne",
"type_label_now": "Nu",
"menu_action_bookmark": "Bogmærk",
"menu_action_remove_bookmark": "Fjern bogmærke",
"menu_action_copy_address": "Kopier adresse",
"menu_action_email_link": "Send link…",
"menu_action_open_new_window": "Åbn i et nyt vindue",
"menu_action_open_private_window": "Åbn i et nyt privat vindue",
"menu_action_dismiss": "Afvis",
"menu_action_delete": "Slet fra historik",
"menu_action_pin": "Fastgør",
"menu_action_unpin": "Frigør",
"confirm_history_delete_p1": "Er du sikker på, at du vil slette alle forekomster af denne side fra din historik?",
"confirm_history_delete_notice_p2": "Denne handling kan ikke fortrydes.",
"menu_action_save_to_pocket": "Gem til Pocket",
"search_for_something_with": "Søg efter {search_term} med:",
"search_button": "Søg",
"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",
"welcome_title": "Velkommen til nyt faneblad",
"welcome_body": "Firefox vil bruge denne plads til at vise dine mest relevante bogmærker, artikler, videoer og sider, du har besøgt for nylig - så kan du nemmere finde dem.",
"welcome_label": "Finder dine vigtigste sider",
"time_label_less_than_minute": "<1 m.",
"time_label_minute": "{number} m.",
"time_label_hour": "{number} t.",
"time_label_day": "{number} d.",
"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.",
"settings_pane_search_header": "Søgning",
"settings_pane_search_body": "Søg på nettet fra Nyt faneblad.",
"settings_pane_topsites_header": "Mest besøgte websider",
"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",
"settings_pane_highlights_options_visited": "Besøgte websider",
"settings_pane_snippets_header": "Notitser",
"settings_pane_snippets_body": "Læs korte opdateringer fra Mozilla om Firefox, internet-kultur og lidt underholdning fra tid til anden.",
"settings_pane_done_button": "Færdig",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Indtast en titel",
"topsites_form_url_placeholder": "Indtast eller indsæt en URL",
"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",
"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.",
"manual_migration_explanation2": "Prøv Firefox med bogmærkerne, historikken og adgangskoderne fra en anden browser.",
"manual_migration_cancel_button": "Nej tak",
"manual_migration_import_button": "Importer nu"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "de",
"strings": {
"newtab_page_title": "Neuer Tab",
"default_label_loading": "Wird geladen…",
"header_top_sites": "Meistbesuchte Seiten",
"header_stories": "Meistgelesene Meldungen",
"header_highlights": "Wichtigste Seiten",
"header_visit_again": "Erneut besuchen",
"header_bookmarks": "Neue Lesezeichen",
"header_recommended_by": "Empfohlen von {provider}",
"header_bookmarks_placeholder": "Sie haben noch keine Lesezeichen.",
"header_stories_from": "von",
"type_label_visited": "Besucht",
"type_label_bookmarked": "Lesezeichen",
"type_label_synced": "Von anderem Gerät synchronisiert",
"type_label_recommended": "Populär",
"type_label_open": "Geöffnet",
"type_label_topic": "Thema",
"type_label_now": "Jetzt",
"menu_action_bookmark": "Lesezeichen",
"menu_action_remove_bookmark": "Lesezeichen entfernen",
"menu_action_copy_address": "Adresse kopieren",
"menu_action_email_link": "Link per E-Mail versenden…",
"menu_action_open_new_window": "In neuem Fenster öffnen",
"menu_action_open_private_window": "In neuem privaten Fenster öffnen",
"menu_action_dismiss": "Entfernen",
"menu_action_delete": "Aus Chronik löschen",
"menu_action_pin": "Anheften",
"menu_action_unpin": "Ablösen",
"confirm_history_delete_p1": "Soll wirklich jede Instanz dieser Seite aus Ihrer Chronik gelöscht werden?",
"confirm_history_delete_notice_p2": "Diese Aktion kann nicht rückgängig gemacht werden.",
"menu_action_save_to_pocket": "Bei Pocket speichern",
"search_for_something_with": "Nach {search_term} suchen mit:",
"search_button": "Suchen",
"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",
"welcome_title": "Willkommen im neuen Tab",
"welcome_body": "Firefox nutzt diesen Bereich, um Ihnen Ihre wichtigsten Lesezeichen, Artikel, Videos und kürzlich besuchten Seiten anzuzeigen, damit Sie diese einfach wiederfinden.",
"welcome_label": "Auswahl Ihrer wichtigsten Seiten",
"time_label_less_than_minute": "< 1 min",
"time_label_minute": "{number} m",
"time_label_hour": "{number} h",
"time_label_day": "{number} t",
"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.",
"settings_pane_search_header": "Suche",
"settings_pane_search_body": "Suchen Sie aus einem neuen Tab im Internet.",
"settings_pane_topsites_header": "Meistbesuchte Seiten",
"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 praktisch 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": "Wichtigste Seiten",
"settings_pane_highlights_body2": "Finden Sie schnell wieder auf die wichtigen Seiten zurück, die Sie kürzlich besucht oder als Lesezeichen gespeichert haben.",
"settings_pane_highlights_options_bookmarks": "Lesezeichen",
"settings_pane_highlights_options_visited": "Besuchte Websites",
"settings_pane_snippets_header": "Kurzinformationen",
"settings_pane_snippets_body": "Lesen Sie kurze Neuigkeiten von Mozilla über Firefox, die Internetkultur und ab und an mal ein Meme.",
"settings_pane_done_button": "Fertig",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Bearbeiten",
"edit_topsites_button_label": "Anpassen der meistbesuchten 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 lö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 meistbesuchte Seite",
"topsites_form_edit_header": "Meistbesuchte Seite bearbeiten",
"topsites_form_title_placeholder": "Name eingeben",
"topsites_form_url_placeholder": "Eine Adresse eingeben oder einfügen",
"topsites_form_add_button": "Hinzufügen",
"topsites_form_save_button": "Speichern",
"topsites_form_cancel_button": "Abbrechen",
"topsites_form_url_validation": "Gültige URL erforderlich",
"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 von Mozilla), die Sie ansonsten verpassen würden.",
"highlights_empty_state": "Surfen Sie los und wir zeigen Ihnen hier tolle Artikel, Videos und andere 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.",
"manual_migration_explanation2": "Probieren Sie Firefox aus und importieren Sie die Lesezeichen, Chronik und Passwörter eines anderen Browsers.",
"manual_migration_cancel_button": "Nein, danke",
"manual_migration_import_button": "Jetzt importieren"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

File diff suppressed because one or more lines are too long

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "dsb",
"strings": {
"newtab_page_title": "Nowy rejtark",
"default_label_loading": "Zacytujo se…",
"header_top_sites": "Nejcesćej woglědane sedła",
"header_stories": "Nejcesćej pśecytane powěźenki",
"header_highlights": "Wjerški",
"header_visit_again": "Hyšći raz se woglědaś",
"header_bookmarks": "Nejnowše cytańske znamjenja",
"header_recommended_by": "Wót {provider} dopórucony",
"header_bookmarks_placeholder": "Hyšći cytańske znamjenja njamaśo.",
"header_stories_from": "wót",
"type_label_visited": "Woglědany",
"type_label_bookmarked": "Ako cytańske znamje skłaźony",
"type_label_synced": "Z drugego rěda synchronizěrowany",
"type_label_recommended": "Popularny",
"type_label_open": "Wócynjony",
"type_label_topic": "Tema",
"type_label_now": "Něnto",
"menu_action_bookmark": "Ako cytańske znamje składowaś",
"menu_action_remove_bookmark": "Cytańske znamje wótpóraś",
"menu_action_copy_address": "Adresu kopěrowaś",
"menu_action_email_link": "Wótkaz e-mailowaś…",
"menu_action_open_new_window": "W nowem woknje wócyniś",
"menu_action_open_private_window": "W nowem priwatnem woknje wócyniś",
"menu_action_dismiss": "Zachyśiś",
"menu_action_delete": "Z historije lašowaś",
"menu_action_pin": "Pśipěś",
"menu_action_unpin": "Wótpěś",
"confirm_history_delete_p1": "Cośo napšawdu kuždu instancu toś togo boka ze swójeje historije lašowaś?",
"confirm_history_delete_notice_p2": "Toś ta akcija njedajo se anulěrowaś.",
"menu_action_save_to_pocket": "Pla Pocket składowaś",
"search_for_something_with": "Za {search_term} pytaś z:",
"search_button": "Pytaś",
"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",
"welcome_title": "Witajśo k nowemu rejtarkoju",
"welcome_body": "Firefox buźo toś ten rum wužywaś, aby waše nejwažnjejše cytańske znamjenja, nastawki, wideo a rowno woglědane boki pokazał, aby mógł se lažko k nim wrośiś.",
"welcome_label": "Wuběranje wašych nejwažnjejšych bokow",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number} m",
"time_label_hour": "{number} h",
"time_label_day": "",
"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.",
"settings_pane_search_header": "Pytaś",
"settings_pane_search_body": "Pśepytajśo web ze swójogo nowego rejtarka.",
"settings_pane_topsites_header": "Nejcesćej woglědane sedła",
"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",
"settings_pane_highlights_options_visited": "Woglědane sedła",
"settings_pane_snippets_header": "Kuski",
"settings_pane_snippets_body": "Cytajśo krotke aktualizacije wót Mozilla wó Firefox, internetnej kulturje a casy meme.",
"settings_pane_done_button": "Gótowo",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Titel zapódaś",
"topsites_form_url_placeholder": "URL zapódaś abo zasajźiś",
"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",
"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ł.",
"manual_migration_explanation2": "Wopytajśo Firefox z cytanskimi znamjenjami, historiju a gronidłami z drugego wobglědowaka.",
"manual_migration_cancel_button": "Ně, źěkujom se",
"manual_migration_import_button": "Něnto importěrowaś"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "el",
"strings": {
"newtab_page_title": "Νέα καρτέλα",
"default_label_loading": "Φόρτωση…",
"header_top_sites": "Κορυφαίες ιστοσελίδες",
"header_stories": "Κορυφαίες ιστορίες",
"header_highlights": "Κορυφαίες στιγμές",
"header_visit_again": "Επίσκεψη ξανά",
"header_bookmarks": "Πρόσφατοι σελιδοδείκτες",
"header_recommended_by": "Προτεινόμενο από τον πάροχο {provider}",
"header_bookmarks_placeholder": "Δεν έχετε κανένα σελιδοδείκτη ακόμα.",
"header_stories_from": "από",
"type_label_visited": "Από ιστορικό",
"type_label_bookmarked": "Από σελιδοδείκτες",
"type_label_synced": "Συγχρονισμένα από άλλη συσκευή",
"type_label_recommended": "Τάσεις",
"type_label_open": "Ανοικτό",
"type_label_topic": "Θέμα",
"type_label_now": "Τώρα",
"menu_action_bookmark": "Προσθήκη σελιδοδείκτη",
"menu_action_remove_bookmark": "Αφαίρεση σελιδοδείκτη",
"menu_action_copy_address": "Αντιγραφή διεύθυνσης",
"menu_action_email_link": "Αποστολή συνδέσμου…",
"menu_action_open_new_window": "Άνοιγμα σε νέο παράθυρο",
"menu_action_open_private_window": "Άνοιγμα σε νέο ιδιωτικό παράθυρο",
"menu_action_dismiss": "Απόρριψη",
"menu_action_delete": "Διαγραφή από ιστορικό",
"menu_action_pin": "Καρφίτσωμα",
"menu_action_unpin": "Ξεκαρφίτσωμα",
"confirm_history_delete_p1": "Θέλετε σίγουρα να διαγράψετε κάθε παρουσία της σελίδας αυτής από το ιστορικό σας;",
"confirm_history_delete_notice_p2": "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.",
"menu_action_save_to_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": "Σημείωση απορρήτου",
"welcome_title": "Καλώς ορίσατε στη νέα καρτέλα",
"welcome_body": "Το Firefox θα χρησιμοποιήσει αυτό το χώρο για να εμφανίσει τους πιο σχετικούς σελιδοδείκτες, άρθρα, βίντεο και σελίδες που επισκεφθήκατε πρόσφατα, ώστε να έχετε εύκολη πρόσβαση.",
"welcome_label": "Αναγνώριση κορυφαίων στιγμών",
"time_label_less_than_minute": "<1λ",
"time_label_minute": "{number}λ",
"time_label_hour": "{number}ώ",
"time_label_day": "{number}η",
"settings_pane_button_label": "Προσαρμογή της σελίδας Νέας Καρτέλας",
"settings_pane_header": "Προτιμήσεις νέας καρτέλας",
"settings_pane_body2": "Επιλέξτε τι θα βλέπετε σε αυτή τη σελίδα.",
"settings_pane_search_header": "Αναζήτηση",
"settings_pane_search_body": "Αναζήτηση στο διαδίκτυο από τη νέα σας καρτέλα.",
"settings_pane_topsites_header": "Κορυφαίες ιστοσελίδες",
"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": "Σελιδοδείκτες",
"settings_pane_highlights_options_visited": "Πρόσφατες ιστοσελίδες",
"settings_pane_snippets_header": "Αποσπάσματα",
"settings_pane_snippets_body": "Διαβάστε σύντομες και όμορφες ενημερώσεις από τη Mozilla σχετικά με το Firefox, το διαδικτυακό πολιτισμό και τα περιστασιακά, τυχαία memes.",
"settings_pane_done_button": "Τέλος",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Εισάγετε έναν τίτλο",
"topsites_form_url_placeholder": "Πληκτρολόγηση ή επικόλληση ενός URL",
"topsites_form_add_button": "Προσθήκη",
"topsites_form_save_button": "Αποθήκευση",
"topsites_form_cancel_button": "Ακύρωση",
"topsites_form_url_validation": "Απαιτείται έγκυρο URL",
"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": "Εισαγωγή τώρα"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,167 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "en-GB",
"strings": {
"newtab_page_title": "New Tab",
"default_label_loading": "Loading…",
"header_top_sites": "Top Sites",
"header_stories": "Top Stories",
"header_highlights": "Highlights",
"header_visit_again": "Visit Again",
"header_bookmarks": "Recent Bookmarks",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "You dont have any bookmarks yet.",
"header_stories_from": "from",
"type_label_visited": "Visited",
"type_label_bookmarked": "Bookmarked",
"type_label_synced": "Synchronised from another device",
"type_label_recommended": "Trending",
"type_label_open": "Open",
"type_label_topic": "Topic",
"type_label_now": "Now",
"menu_action_bookmark": "Bookmark",
"menu_action_remove_bookmark": "Remove Bookmark",
"menu_action_copy_address": "Copy Address",
"menu_action_email_link": "Email Link…",
"menu_action_open_new_window": "Open in a New Window",
"menu_action_open_private_window": "Open in a New Private Window",
"menu_action_dismiss": "Dismiss",
"menu_action_delete": "Delete from History",
"menu_action_pin": "Pin",
"menu_action_unpin": "Unpin",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "This action cannot be undone.",
"menu_action_save_to_pocket": "Save to Pocket",
"search_for_something_with": "Search for {search_term} with:",
"search_button": "Search",
"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",
"welcome_title": "Welcome to new tab",
"welcome_body": "Firefox will use this space to show your most relevant bookmarks, articles, videos, and pages youve recently visited, so you can get back to them easily.",
"welcome_label": "Identifying your Highlights",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Search",
"settings_pane_search_body": "Search the Web from your new tab.",
"settings_pane_topsites_header": "Top Sites",
"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 youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"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_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Add",
"topsites_form_save_button": "Save",
"topsites_form_cancel_button": "Cancel",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now",
"settings_pane_body": "Choose what you see when you open a new tab.",
"settings_pane_pocketstories_header": "Top Stories",
"settings_pane_pocketstories_body": "Pocket, a part of the Mozilla family, will help connect you to high-quality content that you may not have found otherwise.",
"pocket_feedback_body": "Pocket, a part of the Mozilla family, will help connect you to high-quality content that you may not have found otherwise.",
"pocket_send_feedback": "Send Feedback"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,167 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "en-US",
"strings": {
"newtab_page_title": "New Tab",
"default_label_loading": "Loading…",
"header_top_sites": "Top Sites",
"header_stories": "Top Stories",
"header_highlights": "Highlights",
"header_visit_again": "Visit Again",
"header_bookmarks": "Recent Bookmarks",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "You dont have any bookmarks yet.",
"header_stories_from": "from",
"type_label_visited": "Visited",
"type_label_bookmarked": "Bookmarked",
"type_label_synced": "Synced from another device",
"type_label_recommended": "Trending",
"type_label_open": "Open",
"type_label_topic": "Topic",
"type_label_now": "Now",
"menu_action_bookmark": "Bookmark",
"menu_action_remove_bookmark": "Remove Bookmark",
"menu_action_copy_address": "Copy Address",
"menu_action_email_link": "Email Link…",
"menu_action_open_new_window": "Open in a New Window",
"menu_action_open_private_window": "Open in a New Private Window",
"menu_action_dismiss": "Dismiss",
"menu_action_delete": "Delete from History",
"menu_action_pin": "Pin",
"menu_action_unpin": "Unpin",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "This action cannot be undone.",
"menu_action_save_to_pocket": "Save to Pocket",
"search_for_something_with": "Search for {search_term} with:",
"search_button": "Search",
"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",
"welcome_title": "Welcome to new tab",
"welcome_body": "Firefox will use this space to show your most relevant bookmarks, articles, videos, and pages youve recently visited, so you can get back to them easily.",
"welcome_label": "Identifying your Highlights",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Search",
"settings_pane_search_body": "Search the Web from your new tab.",
"settings_pane_topsites_header": "Top Sites",
"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 youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"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_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Add",
"topsites_form_save_button": "Save",
"topsites_form_cancel_button": "Cancel",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now",
"settings_pane_body": "Choose what you see when you open a new tab.",
"settings_pane_pocketstories_header": "Top Stories",
"settings_pane_pocketstories_body": "Pocket, a part of the Mozilla family, will help connect you to high-quality content that you may not have found otherwise.",
"pocket_feedback_body": "Pocket, a part of the Mozilla family, will help connect you to high-quality content that you may not have found otherwise.",
"pocket_send_feedback": "Send Feedback"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "eo",
"strings": {
"newtab_page_title": "Nova langeto",
"default_label_loading": "Ŝargado…",
"header_top_sites": "Plej vizititaj",
"header_stories": "Ĉefaj artikoloj",
"header_highlights": "Elstaraĵoj",
"header_visit_again": "Viziti denove",
"header_bookmarks": "Ĵusaj legosignoj",
"header_recommended_by": "Rekomendita de {provider}",
"header_bookmarks_placeholder": "Vi ankoraŭ ne havas legosignojn.",
"header_stories_from": "el",
"type_label_visited": "Vizititaj",
"type_label_bookmarked": "Kun legosigno",
"type_label_synced": "Spegulitaj el alia aparato",
"type_label_recommended": "Tendencoj",
"type_label_open": "Malfermita",
"type_label_topic": "Temo",
"type_label_now": "Nun",
"menu_action_bookmark": "Aldoni legosignon",
"menu_action_remove_bookmark": "Forigi legosignon",
"menu_action_copy_address": "Kopii adreson",
"menu_action_email_link": "Sendi ligilon retpoŝte…",
"menu_action_open_new_window": "Malfermi en nova fenestro",
"menu_action_open_private_window": "Malfermi en nova privata fenestro",
"menu_action_dismiss": "Ignori",
"menu_action_delete": "Forigi el historio",
"menu_action_pin": "Alpingli",
"menu_action_unpin": "Depingli",
"confirm_history_delete_p1": "Ĉu vi certe volas forigi ĉiun aperon de tiu ĉi paĝo el via historio?",
"confirm_history_delete_notice_p2": "Tiu ĉi ago ne estas malfarebla.",
"menu_action_save_to_pocket": "Konservi en Pocket",
"search_for_something_with": "Serĉi {search_term} per:",
"search_button": "Serĉi",
"search_header": "Serĉo de {search_engine_name}",
"search_web_placeholder": "Serĉi la Teksaĵon",
"search_settings": "Modifi serĉajn agordojn",
"section_info_option": "Informo",
"section_info_send_feedback": "Sendi komentojn",
"section_info_privacy_notice": "Rimarko pri privateco",
"welcome_title": "Bonvenon al nova langeto",
"welcome_body": "Firefox uzos tiun ĉi spacon por montri al vi viaj plej gravajn legosignojn, artikolojn, filmetojn kaj paĝojn, kiujn vi vizitis antaŭ nelonge, tiel ke vi povos reiri al ili facile.",
"welcome_label": "Elstaraĵoj identigataj",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}t",
"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.",
"settings_pane_search_header": "Serĉi",
"settings_pane_search_body": "Serĉi la Teksaĵon el via nova langeto.",
"settings_pane_topsites_header": "Plej vizitaj",
"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",
"settings_pane_highlights_options_visited": "Vizititaj retejoj",
"settings_pane_snippets_header": "Fragmentoj",
"settings_pane_snippets_body": "Legu mallongaj novaĵojn de Mozila pri Firefox, interreta kulturo kaj, de tempo al tempo, hazarda «meme».",
"settings_pane_done_button": "Farita",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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 ofta retejo",
"topsites_form_title_placeholder": "Tajpu titolon",
"topsites_form_url_placeholder": "Tajpu aŭ alguu retadreson",
"topsites_form_add_button": "Aldoni",
"topsites_form_save_button": "Konservi",
"topsites_form_cancel_button": "Nuligi",
"topsites_form_url_validation": "Valida retadreso estas postulata",
"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.",
"manual_migration_explanation2": "Provu Firefox kun la legosignoj, historio kaj pasvortoj de alia retumilo.",
"manual_migration_cancel_button": "Ne, dankon",
"manual_migration_import_button": "Importi nun"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

File diff suppressed because one or more lines are too long

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "es-AR",
"strings": {
"newtab_page_title": "Nueva pestaña",
"default_label_loading": "Cargando…",
"header_top_sites": "Más visitados",
"header_stories": "Historias principales",
"header_highlights": "Destacados",
"header_visit_again": "Visitar de nuevo",
"header_bookmarks": "Marcadores recientes",
"header_recommended_by": "Recomendado por {provider}",
"header_bookmarks_placeholder": "Todavía no hay ningún marcador.",
"header_stories_from": "de",
"type_label_visited": "Visitados",
"type_label_bookmarked": "Marcados",
"type_label_synced": "Sincronizados de otro dispositivo",
"type_label_recommended": "Tendencias",
"type_label_open": "Abrir",
"type_label_topic": "Tópico",
"type_label_now": "Ahora",
"menu_action_bookmark": "Marcador",
"menu_action_remove_bookmark": "Eliminar marcador",
"menu_action_copy_address": "Copiar dirección",
"menu_action_email_link": "Enlace por correo electrónico…",
"menu_action_open_new_window": "Abrir en nueva ventana",
"menu_action_open_private_window": "Abrir en nueva ventana privada",
"menu_action_dismiss": "Descartar",
"menu_action_delete": "Borrar del historial",
"menu_action_pin": "Pegar",
"menu_action_unpin": "Despegar",
"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",
"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",
"welcome_title": "Bienvenido a una nueva pestaña",
"welcome_body": "Firefox usará este espacio para mostrar sus marcadores, artículos, videos y páginas más relevantes que se hayan visitado para poder volver más fácilmente.",
"welcome_label": "Identificar los destacados",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Buscar",
"settings_pane_search_body": "Buscar en la Web desde nueva pestaña.",
"settings_pane_topsites_header": "Más visitados",
"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",
"settings_pane_highlights_options_visited": "Sitios visitados",
"settings_pane_snippets_header": "Recortes",
"settings_pane_snippets_body": "Leer dulces actualizaciones cortas de Mozilla sobre Firefox, cultura de Internet y algún meme ocasional al azar.",
"settings_pane_done_button": "Listo",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Ingresar un título",
"topsites_form_url_placeholder": "Escribir o pegar URL",
"topsites_form_add_button": "Agregar",
"topsites_form_save_button": "Guardar",
"topsites_form_cancel_button": "Cancelar",
"topsites_form_url_validation": "Se requiere URL válida",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "es-CL",
"strings": {
"newtab_page_title": "Nueva pestaña",
"default_label_loading": "Cargando…",
"header_top_sites": "Sitios frecuentes",
"header_stories": "Historias populares",
"header_highlights": "Destacados",
"header_visit_again": "Volver a visitar",
"header_bookmarks": "Marcadores recientes",
"header_recommended_by": "Recomendado por {provider}",
"header_bookmarks_placeholder": "Todavía no tienes marcadores.",
"header_stories_from": "de",
"type_label_visited": "Visitado",
"type_label_bookmarked": "Marcado",
"type_label_synced": "Sacado de otro dispositivo",
"type_label_recommended": "Popular",
"type_label_open": "Abrir",
"type_label_topic": "Tema",
"type_label_now": "Ahora",
"menu_action_bookmark": "Marcador",
"menu_action_remove_bookmark": "Remover marcador",
"menu_action_copy_address": "Copiar dirección",
"menu_action_email_link": "Enviar enlace por correo",
"menu_action_open_new_window": "Abrir en una nueva ventana",
"menu_action_open_private_window": "Abrir en una nueva ventana privada",
"menu_action_dismiss": "Descartar",
"menu_action_delete": "Eliminar del historial",
"menu_action_pin": "Fijar",
"menu_action_unpin": "Soltar",
"confirm_history_delete_p1": "¿Estás seguro de que quieres eliminar cada instancia de esta página de tu historial?",
"confirm_history_delete_notice_p2": "Esta acción no puede ser deshecha.",
"menu_action_save_to_pocket": "Guardar en Pocket",
"search_for_something_with": "Buscar {search_term} con:",
"search_button": "Buscar",
"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",
"welcome_title": "Bienvenido a la nueva pestaña",
"welcome_body": "Firefox usará este espacio para mostrarte los marcadores, artículos, videos y páginas visitadas recientemente más relevantes, para que puedas regresar a ellos de una.",
"welcome_label": "Identificando tus destacados",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Buscar",
"settings_pane_search_body": "Busca en la Web desde tu nueva pestaña.",
"settings_pane_topsites_header": "Sitios frecuentes",
"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",
"settings_pane_highlights_options_visited": "Sitios visitados",
"settings_pane_snippets_header": "Fragmentos",
"settings_pane_snippets_body": "Lee breves y dulces actualizaciones de Mozilla sobre Firefox, la cultura de internet y un meme aleatorio ocasional.",
"settings_pane_done_button": "Hecho",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Ingresar un título",
"topsites_form_url_placeholder": "Escribe o pega una URL",
"topsites_form_add_button": "Añadir",
"topsites_form_save_button": "Guardar",
"topsites_form_cancel_button": "Cancelar",
"topsites_form_url_validation": "URL válida requerida",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "es-ES",
"strings": {
"newtab_page_title": "Nueva pestaña",
"default_label_loading": "Cargando…",
"header_top_sites": "Sitios favoritos",
"header_stories": "Historias populares",
"header_highlights": "Destacados",
"header_visit_again": "Visitar de nuevo",
"header_bookmarks": "Marcadores recientes",
"header_recommended_by": "Recomendado por {provider}",
"header_bookmarks_placeholder": "Todavía no tienes ningún marcador.",
"header_stories_from": "desde",
"type_label_visited": "Visitados",
"type_label_bookmarked": "En marcadores",
"type_label_synced": "Sincronizado desde otro dispositivo",
"type_label_recommended": "Tendencias",
"type_label_open": "Abrir",
"type_label_topic": "Tema",
"type_label_now": "Ahora",
"menu_action_bookmark": "Marcador",
"menu_action_remove_bookmark": "Eliminar marcador",
"menu_action_copy_address": "Copiar dirección",
"menu_action_email_link": "Enviar enlace…",
"menu_action_open_new_window": "Abrir en una nueva ventana",
"menu_action_open_private_window": "Abrir en una nueva ventana privada",
"menu_action_dismiss": "Ignorar",
"menu_action_delete": "Eliminar del historial",
"menu_action_pin": "Fijar",
"menu_action_unpin": "Soltar",
"confirm_history_delete_p1": "¿Estás seguro de que quieres eliminar de tu historial todas las instancias de esta página?",
"confirm_history_delete_notice_p2": "Esta acción no se puede deshacer.",
"menu_action_save_to_pocket": "Guardar en Pocket",
"search_for_something_with": "Buscar {search_term} con:",
"search_button": "Buscar",
"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",
"welcome_title": "Bienvenido a la nueva pestaña",
"welcome_body": "Firefox utilizará este espacio para mostrarte los marcadores, artículos y vídeos más relevantes y las páginas que has visitado recientemente, para que puedas acceder más rápido.",
"welcome_label": "Identificar lo más destacado para ti",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Buscar",
"settings_pane_search_body": "Busca en la Web desde tu nueva pestaña.",
"settings_pane_topsites_header": "Sitios populares",
"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",
"settings_pane_highlights_options_visited": "Sitios visitados",
"settings_pane_snippets_header": "Fragmentos de código",
"settings_pane_snippets_body": "Lee actualizaciones breves de Mozilla sobre Firefox, la cultura de internet y el típico meme aleatorio.",
"settings_pane_done_button": "Hecho",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Introducir título",
"topsites_form_url_placeholder": "Escribir o pegar una URL",
"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",
"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.",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "es-MX",
"strings": {
"newtab_page_title": "Nueva pestaña",
"default_label_loading": "Cargando…",
"header_top_sites": "Sitios favoritos",
"header_stories": "Historias populares",
"header_highlights": "Destacados",
"header_visit_again": "Visitar de nuevo",
"header_bookmarks": "Marcadores recientes",
"header_recommended_by": "Recomendado por {provider}",
"header_bookmarks_placeholder": "Aún no tienes ningún marcador.",
"header_stories_from": "de",
"type_label_visited": "Visitados",
"type_label_bookmarked": "Marcados",
"type_label_synced": "Sincronizado desde otro dispositivo",
"type_label_recommended": "Tendencias",
"type_label_open": "Abrir",
"type_label_topic": "Tema",
"type_label_now": "Ahora",
"menu_action_bookmark": "Marcador",
"menu_action_remove_bookmark": "Eliminar marcador",
"menu_action_copy_address": "Copiar dirección",
"menu_action_email_link": "Enlace por correo electrónico…",
"menu_action_open_new_window": "Abrir en una Nueva Ventana",
"menu_action_open_private_window": "Abrir en una Nueva Ventana Privada",
"menu_action_dismiss": "Descartar",
"menu_action_delete": "Eliminar del historial",
"menu_action_pin": "Anclar",
"menu_action_unpin": "Desanclar",
"confirm_history_delete_p1": "¿Estás seguro de que quieres eliminar de tu historial todas las instancias de esta página?",
"confirm_history_delete_notice_p2": "Esta acción no se puede deshacer.",
"menu_action_save_to_pocket": "Guardar en Pocket",
"search_for_something_with": "Buscar {search_term} con:",
"search_button": "Buscar",
"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",
"welcome_title": "Bienvenido a una nueva pestaña",
"welcome_body": "Firefox usará este espacio para mostrar tus marcadores, artículos, videos y páginas más relevantes que se hayan visitado para poder volver más fácilmente.",
"welcome_label": "Identificando tus destacados",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Buscar",
"settings_pane_search_body": "Busca en la web de tu nueva pestaña.",
"settings_pane_topsites_header": "Sitios populares",
"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",
"settings_pane_highlights_options_visited": "Sitios visitados",
"settings_pane_snippets_header": "Fragmentos",
"settings_pane_snippets_body": "Lee actualizaciones breves de Mozilla sobre Firefox, la cultura de internet y de repente un meme de vez en cuando.",
"settings_pane_done_button": "Listo",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Introducir un título",
"topsites_form_url_placeholder": "Escribir o pegar una URL",
"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",
"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.",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "et",
"strings": {
"newtab_page_title": "Uus kaart",
"default_label_loading": "Laadimine…",
"header_top_sites": "Top saidid",
"header_stories": "Top lood",
"header_highlights": "Esiletõstetud",
"header_visit_again": "Külasta jälle",
"header_bookmarks": "Hiljutised järjehoidjad",
"header_recommended_by": "{provider} soovitab",
"header_bookmarks_placeholder": "Sul pole veel järjehoidjaid.",
"header_stories_from": "allikast",
"type_label_visited": "Külastatud",
"type_label_bookmarked": "Järjehoidjatest",
"type_label_synced": "Sünkroniseeritud teisest seadmest",
"type_label_recommended": "Menukad",
"type_label_open": "Avatud",
"type_label_topic": "Teema",
"type_label_now": "Praegu",
"menu_action_bookmark": "Lisa järjehoidjatesse",
"menu_action_remove_bookmark": "Eemalda järjehoidja",
"menu_action_copy_address": "Kopeeri aadress",
"menu_action_email_link": "Saada link e-postiga…",
"menu_action_open_new_window": "Ava uues aknas",
"menu_action_open_private_window": "Ava uues privaatses aknas",
"menu_action_dismiss": "Peida",
"menu_action_delete": "Kustuta ajaloost",
"menu_action_pin": "Kinnita",
"menu_action_unpin": "Eemalda kohakinnitus",
"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",
"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",
"welcome_title": "Tere tulemast uuele kaardile",
"welcome_body": "Firefox kasutab seda lehte, et kuvada sulle kõige olulisemaid järjehoidjaid, artikleid, videoid ja lehti, mida oled hiljuti külastanud, nii et pääseksid kergelt nende juurde tagasi.",
"welcome_label": "Esiletõstetava sisu tuvastamine",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}t",
"time_label_day": "{number}p",
"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.",
"settings_pane_search_header": "Otsing",
"settings_pane_search_body": "Veebis otsimine uuel kaardil.",
"settings_pane_topsites_header": "Top saidid",
"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",
"settings_pane_highlights_options_visited": "Külastatud saidid",
"settings_pane_snippets_header": "Infokillud",
"settings_pane_snippets_body": "Loe lühikesi ja mõnusaid infokilde Mozillalt Firefoxi, interneti kultuuri ja vahel ka juhuslike netimeemide kohta.",
"settings_pane_done_button": "Valmis",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Sisesta pealkiri",
"topsites_form_url_placeholder": "Sisesta või aseta URL",
"topsites_form_add_button": "Lisa",
"topsites_form_save_button": "Salvesta",
"topsites_form_cancel_button": "Tühista",
"topsites_form_url_validation": "URL peab olema korrektne",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "eu",
"strings": {
"newtab_page_title": "Fitxa berria",
"default_label_loading": "Kargatzen…",
"header_top_sites": "Gune erabilienak",
"header_stories": "Istorio ezagunenak",
"header_highlights": "Nabarmendutakoak",
"header_visit_again": "Bisitatu berriro",
"header_bookmarks": "Azken laster-markak",
"header_recommended_by": "{provider} hornitzaileak gomendatuta",
"header_bookmarks_placeholder": "Ez daukazu laster-markarik oraindik.",
"header_stories_from": "hornitzailea:",
"type_label_visited": "Bisitatuta",
"type_label_bookmarked": "Laster-marka eginda",
"type_label_synced": "Beste gailu batetik sinkronizatuta",
"type_label_recommended": "Joerak",
"type_label_open": "Ireki",
"type_label_topic": "Gaia",
"type_label_now": "Orain",
"menu_action_bookmark": "Egin laster-marka",
"menu_action_remove_bookmark": "Kendu laster-marka",
"menu_action_copy_address": "Kopiatu helbidea",
"menu_action_email_link": "Bidali lotura postaz…",
"menu_action_open_new_window": "Ireki leiho berri batean",
"menu_action_open_private_window": "Ireki leiho pribatu berrian",
"menu_action_dismiss": "Baztertu",
"menu_action_delete": "Ezabatu historiatik",
"menu_action_pin": "Ainguratu",
"menu_action_unpin": "Desainguratu",
"confirm_history_delete_p1": "Ziur zaude orri honen agerpen guztiak ezabatu nahi dituzula historiatik?",
"confirm_history_delete_notice_p2": "Ekintza hau ezin da desegin.",
"menu_action_save_to_pocket": "Gorde Pocket-en",
"search_for_something_with": "Bilatu {search_term} honekin:",
"search_button": "Bilatu",
"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",
"welcome_title": "Ongi etorri fitxa berrira",
"welcome_body": "Zuretzat esanguratsuenak diren laster-markak, artikuluak, bideoak eta bisitatutako azken orriak erakusteko erabiliko du eremu hau Firefoxek, hauetara itzultzea erraza izan dadin.",
"welcome_label": "Zure nabarmendutakoak identifikatzea",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"settings_pane_button_label": "Pertsonalizatu fitxa berriaren orria",
"settings_pane_header": "Fitxa berriaren hobespenak",
"settings_pane_body2": "Aukeratu orri honetan ikusiko duzuna.",
"settings_pane_search_header": "Bilaketa",
"settings_pane_search_body": "Bilatu webean zure fitxa berritik.",
"settings_pane_topsites_header": "Gune erabilienak",
"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",
"settings_pane_highlights_options_visited": "Bisitatutako guneak",
"settings_pane_snippets_header": "Mezu-zatiak",
"settings_pane_snippets_body": "Irakurri Firefoxi eta interneteko kulturari buruzko Mozillaren eguneraketa laburrak, hala nola tartekako ausazko memeak.",
"settings_pane_done_button": "Eginda",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Idatzi izenburua",
"topsites_form_url_placeholder": "Idatzi edo itsatsi URLa",
"topsites_form_add_button": "Gehitu",
"topsites_form_save_button": "Gorde",
"topsites_form_cancel_button": "Utzi",
"topsites_form_url_validation": "Baliozko URLa behar da",
"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.",
"manual_migration_explanation2": "Probatu Firefox beste nabigatzaile batetik ekarritako laster-marka, historia eta pasahitzekin.",
"manual_migration_cancel_button": "Ez, eskerrik asko",
"manual_migration_import_button": "Inportatu orain"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "fa",
"strings": {
"newtab_page_title": "زبانه جدید",
"default_label_loading": "در حال بارگیری…",
"header_top_sites": "سایت‌های برتر",
"header_stories": "برترین داستان‌ها",
"header_highlights": "برجسته‌ها",
"header_visit_again": "مشاهده دوباره",
"header_bookmarks": "نشانک‌های اخیر",
"header_recommended_by": "پیشنهاد شده توسط {provider}",
"header_bookmarks_placeholder": "هنوز هیچ نشانکی ندارید.",
"header_stories_from": "از",
"type_label_visited": "مشاهده شده",
"type_label_bookmarked": "نشانک شده",
"type_label_synced": "هم‌گام شده از دستگاهی دیگر",
"type_label_recommended": "موضوعات داغ",
"type_label_open": "باز کردن",
"type_label_topic": "موضوع",
"type_label_now": "هم‌اکنون",
"menu_action_bookmark": "نشانک",
"menu_action_remove_bookmark": "حذف نشانک",
"menu_action_copy_address": "رونوشت از آدرس",
"menu_action_email_link": "ارسال پیوند…",
"menu_action_open_new_window": "باز کردن در یک پنجره جدید",
"menu_action_open_private_window": "بار کردن در یک پنجره ناشناس جدید",
"menu_action_dismiss": "رد کردن",
"menu_action_delete": "حذف از تاریخچه",
"menu_action_pin": "سنجاق کردن",
"menu_action_unpin": "جدا کردن",
"confirm_history_delete_p1": "آیا از پاک کردن همه نمونه‌های این صفحه از تاریخ‌چه خود اطمینان دارید؟",
"confirm_history_delete_notice_p2": "این عمل قابل برگشت نیست.",
"menu_action_save_to_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": "نکات حفظ حریم خصوصی",
"welcome_title": "به زبانه جدید خوش‌آمدید",
"welcome_body": "فایرفاکس از این فضا برای نمایش نشانک‌ها، مقالات، ویدئوها و صفحات مرتبطی که به‌تازگی مشاهده کرده‌اید استفاده می‌کند، تا شما به راحتی دوباره به آنها دسترسی داشته باشید.",
"welcome_label": "شناسایی گزینه‌های برجسته شما",
"time_label_less_than_minute": "> ۱ دقیقه",
"time_label_minute": "{number} د",
"time_label_hour": "{number} س",
"time_label_day": "{number} ر",
"settings_pane_button_label": "صفحهٔ زبانه جدید را سفارشی کنید",
"settings_pane_header": "تنظیمات زبانه جدید",
"settings_pane_body2": "انتخاب کنید چیزی را که مایل هستید در این صفحه مشاهده کنید.",
"settings_pane_search_header": "جست‌وجو",
"settings_pane_search_body": "وب را از زبانه جدید خود جست‌وجو کنید.",
"settings_pane_topsites_header": "سایت‌های برتر",
"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": "نشانک‌ها",
"settings_pane_highlights_options_visited": "سایت‌های بازدید شده",
"settings_pane_snippets_header": "قطعه‌ها",
"settings_pane_snippets_body": "بروزرسانی های شیرین و کوتاه موزیلا در مورد فایرفاکس،‌ فرهنگ اینترنت، و تصاویر تصادفی مناسبتی مطالعه کنید.",
"settings_pane_done_button": "انجام شد",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "عنوان را وارد کنید",
"topsites_form_url_placeholder": "یک URL تایپ کنید یا بچسبانید",
"topsites_form_add_button": "افزودن",
"topsites_form_save_button": "ذخیره",
"topsites_form_cancel_button": "انصراف",
"topsites_form_url_validation": "URL معتبر الزامی است",
"pocket_read_more": "موضوع‌های محبوب:",
"pocket_read_even_more": "مشاهده داستان‌های بیشتر",
"pocket_feedback_header": "بهترین‌های وب، گزینش شده توسط بیش از ۲۵ میلیون نفر.",
"pocket_description": "محتواهای با کیفیتی را پیدا کنید که ممکن است از دست داده باشید، به کمک Pocket که اکنون بخشی از موزیلا است.",
"highlights_empty_state": "مرور کردن را شروع کنید و شاهد تعداد زیادی مقاله، فیلم و صفحات خوبی باشید که اخیر مشاهده کرده اید یا نشانگ گذاری کرده اید.",
"topstories_empty_state": "فعلا تموم شد. بعدا دوباره سر بزن تا مطالب جدید از {provider} ببینی. نمی‌تونی صبر کنی؟ یک موضوع محبوب رو انتخاب کن تا مطالب جالب مرتبط از سراسر دنیا رو پیدا کنی.",
"manual_migration_explanation2": "فایرفاکس را با نشانک‌ها،‌ تاریخچه‌ها و کلمات عبور از سایر مرورگر ها تجربه کنید.",
"manual_migration_cancel_button": "نه ممنون",
"manual_migration_import_button": "هم‌اکنون وارد شوند"
},
"textDirection": "rtl",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "fi",
"strings": {
"newtab_page_title": "Uusi välilehti",
"default_label_loading": "Ladataan…",
"header_top_sites": "Ykkössivustot",
"header_stories": "Ykkösjutut",
"header_highlights": "Nostot",
"header_visit_again": "Käy toistekin",
"header_bookmarks": "Uusimmat kirjanmerkit",
"header_recommended_by": "Suositukset lähteestä {provider}",
"header_bookmarks_placeholder": "Sinulla ei ole vielä kirjanmerkkejä.",
"header_stories_from": "Lähde",
"type_label_visited": "Vierailtu",
"type_label_bookmarked": "Kirjanmerkki",
"type_label_synced": "Synkronoitu toiselta laitteelta",
"type_label_recommended": "Pinnalla",
"type_label_open": "Avoin",
"type_label_topic": "Aihe",
"type_label_now": "Nyt",
"menu_action_bookmark": "Lisää kirjanmerkki",
"menu_action_remove_bookmark": "Poista kirjanmerkki",
"menu_action_copy_address": "Kopioi osoite",
"menu_action_email_link": "Lähetä linkki…",
"menu_action_open_new_window": "Avaa uuteen ikkunaan",
"menu_action_open_private_window": "Avaa uuteen yksityiseen ikkunaan",
"menu_action_dismiss": "Hylkää",
"menu_action_delete": "Poista historiasta",
"menu_action_pin": "Kiinnitä",
"menu_action_unpin": "Poista kiinnitys",
"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",
"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ö",
"welcome_title": "Tervetuloa uuteen välilehteen",
"welcome_body": "Firefox käyttää tätä tilaa näyttämään olennaisimmat kirjanmerkit, artikkelit, videot ja sivut, joita olet katsellut, jotta pääset niihin takaisin nopeasti.",
"welcome_label": "Tunnistetaan nostojasi",
"time_label_less_than_minute": "<1 min",
"time_label_minute": "{number} min",
"time_label_hour": "{number} h",
"time_label_day": "{number} pv",
"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.",
"settings_pane_search_header": "Haku",
"settings_pane_search_body": "Tee verkkohakuja uudesta välilehdestä.",
"settings_pane_topsites_header": "Ykkössivustot",
"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",
"settings_pane_highlights_options_visited": "Vieraillut sivustot",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "Valmis",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Kirjoita otsikko",
"topsites_form_url_placeholder": "Kirjoita tai liitä osoite",
"topsites_form_add_button": "Lisää",
"topsites_form_save_button": "Tallenna",
"topsites_form_cancel_button": "Peruuta",
"topsites_form_url_validation": "Kelvollinen osoite vaaditaan",
"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": "Discover high-quality content you might otherwise miss, with help from Pocket, now part of Mozilla.",
"highlights_empty_state": "Start browsing, and well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"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": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "Ei kiitos",
"manual_migration_import_button": "Tuo nyt"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "fr",
"strings": {
"newtab_page_title": "Nouvel onglet",
"default_label_loading": "Chargement…",
"header_top_sites": "Sites les plus visités",
"header_stories": "Articles populaires",
"header_highlights": "Éléments-clés",
"header_visit_again": "Visiter à nouveau",
"header_bookmarks": "Marque-pages récents",
"header_recommended_by": "Recommandations par {provider}",
"header_bookmarks_placeholder": "Vous ne possédez aucun marque-page pour linstant.",
"header_stories_from": "par",
"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_open": "Ouvert",
"type_label_topic": "Thème",
"type_label_now": "Maintenant",
"menu_action_bookmark": "Marquer cette page",
"menu_action_remove_bookmark": "Supprimer le marque-page",
"menu_action_copy_address": "Copier ladresse",
"menu_action_email_link": "Envoyer un lien par courriel…",
"menu_action_open_new_window": "Ouvrir dans une nouvelle fenêtre",
"menu_action_open_private_window": "Ouvrir dans une nouvelle fenêtre privée",
"menu_action_dismiss": "Retirer",
"menu_action_delete": "Supprimer de lhistorique",
"menu_action_pin": "Épingler",
"menu_action_unpin": "Détacher",
"confirm_history_delete_p1": "Voulez-vous vraiment supprimer de lhistorique toutes les occurrences de cette page ?",
"confirm_history_delete_notice_p2": "Cette action est irréversible.",
"menu_action_save_to_pocket": "Enregistrer 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é",
"welcome_title": "Bienvenue sur la page Nouvel onglet",
"welcome_body": "Firefox utilisera cet espace pour afficher des éléments pertinents, comme des marque-pages, des articles, des vidéos, et des pages que vous avez visitées, afin que vous les retrouviez facilement.",
"welcome_label": "Identification des éléments-clés",
"time_label_less_than_minute": "<1 min",
"time_label_minute": "{number} min",
"time_label_hour": "{number} h",
"time_label_day": "{number} j",
"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.",
"settings_pane_search_header": "Recherche",
"settings_pane_search_body": "Effectuez une recherche sur le Web depuis le nouvel onglet.",
"settings_pane_topsites_header": "Sites les plus visités",
"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",
"settings_pane_highlights_options_visited": "Sites visités",
"settings_pane_snippets_header": "Brèves",
"settings_pane_snippets_body": "Consultez les brèves de Mozilla à propos de Firefox, la culture Internet, mais aussi quelques mèmes Internet de temps en temps.",
"settings_pane_done_button": "Terminé",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Saisir un titre",
"topsites_form_url_placeholder": "Saisir ou coller une adresse web",
"topsites_form_add_button": "Ajouter",
"topsites_form_save_button": "Enregistrer",
"topsites_form_cancel_button": "Annuler",
"topsites_form_url_validation": "Adresse web valide requise",
"pocket_read_more": "Sujets populaires :",
"pocket_read_even_more": "Afficher plus darticles",
"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 dautres pages que vous avez récemment visités ou ajoutés aux marque-pages.",
"topstories_empty_state": "Il ny en a pas dautres. Revenez plus tard pour plus darticles de {provider}. Vous ne voulez pas attendre ? Choisissez un sujet parmi les plus populaires pour découvrir dautres articles intéressants sur le Web.",
"manual_migration_explanation2": "Essayez Firefox en important les marque-pages, lhistorique et les mots de passe depuis un autre navigateur.",
"manual_migration_cancel_button": "Non merci",
"manual_migration_import_button": "Importer"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "fy-NL",
"strings": {
"newtab_page_title": "Nij ljepblêd",
"default_label_loading": "Lade…",
"header_top_sites": "Topwebsites",
"header_stories": "Topferhalen",
"header_highlights": "Hichtepunten",
"header_visit_again": "Nochris besykje",
"header_bookmarks": "Resinte blêdwizers",
"header_recommended_by": "Oanrekommandearre troch {provider}",
"header_bookmarks_placeholder": "Jo hawwe noch gjin inkelde blêdwizer.",
"header_stories_from": "fan",
"type_label_visited": "Besocht",
"type_label_bookmarked": "Blêdwizer makke",
"type_label_synced": "Syngronisearre fan oar apparaat ôf",
"type_label_recommended": "Trending",
"type_label_open": "Iepene",
"type_label_topic": "Underwerp",
"type_label_now": "No",
"menu_action_bookmark": "Blêdwizer",
"menu_action_remove_bookmark": "Blêdwizer fuortsmite",
"menu_action_copy_address": "Adres kopiearje",
"menu_action_email_link": "Keppeling e-maile…",
"menu_action_open_new_window": "Iepenje yn in nij finster",
"menu_action_open_private_window": "Iepenje yn in nij priveefinster",
"menu_action_dismiss": "Fuortsmite",
"menu_action_delete": "Fuortsmite út skiednis",
"menu_action_pin": "Fêstsette",
"menu_action_unpin": "Losmeitsje",
"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",
"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",
"welcome_title": "Wolkom by it nije ljepblêd",
"welcome_body": "Firefox brûkt dizze romte om jo meast relevante blêdwizers, artikelen, fideos en siden dy't jo koartlyn besocht hawwe wer te jaan, sadat jo dizze ienfâldichwei weromfine kinne.",
"welcome_label": "Jo hichtepunten oantsjutte",
"time_label_less_than_minute": "< 1 m",
"time_label_minute": "{number} m",
"time_label_hour": "{number} o",
"time_label_day": "{number} d",
"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.",
"settings_pane_search_header": "Sykje",
"settings_pane_search_body": "Sykje op it web fan jo nije ljepblêd út.",
"settings_pane_topsites_header": "Topwebsites",
"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",
"settings_pane_highlights_options_visited": "Besochte websites",
"settings_pane_snippets_header": "Koarte ynformaasje",
"settings_pane_snippets_body": "Lês koart nijs fan Mozilla oer Firefox, ynternetkultuer en somtiden in meme.",
"settings_pane_done_button": "Dien",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Titel ynfiere",
"topsites_form_url_placeholder": "Typ of plak in URL",
"topsites_form_add_button": "Tafoegje",
"topsites_form_save_button": "Bewarje",
"topsites_form_cancel_button": "Annulearje",
"topsites_form_url_validation": "Jildige URL fereaske",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,167 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ga-IE",
"strings": {
"newtab_page_title": "Cluaisín Nua",
"default_label_loading": "Á Lódáil…",
"header_top_sites": "Barrshuímh",
"header_stories": "Barrscéalta",
"header_highlights": "Highlights",
"header_visit_again": "Cuairt Arís",
"header_bookmarks": "Leabharmharcanna Le Déanaí",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "Níl aon leabharmharcanna agat.",
"header_stories_from": "ó",
"type_label_visited": "Feicthe",
"type_label_bookmarked": "Leabharmharcáilte",
"type_label_synced": "Sioncronaithe ó ghléas eile",
"type_label_recommended": "Treochtáil",
"type_label_open": "Oscailte",
"type_label_topic": "Ábhar",
"type_label_now": "Now",
"menu_action_bookmark": "Cruthaigh leabharmharc",
"menu_action_remove_bookmark": "Scrios an Leabharmharc",
"menu_action_copy_address": "Cóipeáil an Seoladh",
"menu_action_email_link": "Seol an Nasc trí Ríomhphost…",
"menu_action_open_new_window": "Oscail i bhFuinneog Nua",
"menu_action_open_private_window": "Oscail i bhFuinneog Nua Phríobháideach",
"menu_action_dismiss": "Ruaig",
"menu_action_delete": "Scrios ón Stair",
"menu_action_pin": "Pionnáil",
"menu_action_unpin": "Díphionnáil",
"confirm_history_delete_p1": "An bhfuil tú cinnte gur mhaith leat an leathanach seo a scriosadh go hiomlán ó do stair?",
"confirm_history_delete_notice_p2": "Ní féidir an gníomh seo a chur ar ceal.",
"menu_action_save_to_pocket": "Sábháil in Pocket",
"search_for_something_with": "Déan cuardach ar {search_term} le:",
"search_button": "Cuardach",
"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",
"welcome_title": "Fáilte go dtí cluaisín nua",
"welcome_body": "Úsáidfidh Firefox an spás seo chun na leabharmharcanna, ailt, físeáin, agus leathanaigh is tábhachtaí a thaispeáint duit, ionas go mbeidh tú in ann filleadh orthu gan stró.",
"welcome_label": "Buaicphointí á lorg",
"time_label_less_than_minute": "< 1 n",
"time_label_minute": "{number}n",
"time_label_hour": "{number}u",
"time_label_day": "{number}l",
"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.",
"settings_pane_search_header": "Cuardach",
"settings_pane_search_body": "Cuardaigh an Gréasán go díreach ón gcluaisín nua.",
"settings_pane_topsites_header": "Barrshuímh",
"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 youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"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_placeholder": "Cuir teideal isteach",
"topsites_form_url_placeholder": "Clóscríobh nó greamaigh URL",
"topsites_form_add_button": "Cuir leis",
"topsites_form_save_button": "Sábháil",
"topsites_form_cancel_button": "Cealaigh",
"topsites_form_url_validation": "URL neamhbhailí",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now",
"settings_pane_body": "Roghnaigh na rudaí a fheicfidh tú nuair a osclóidh tú cluaisín nua.",
"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.",
"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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "gd",
"strings": {
"newtab_page_title": "Taba ùr",
"default_label_loading": "Ga luchdadh…",
"header_top_sites": "Brod nan làrach",
"header_stories": "Brod nan sgeul",
"header_highlights": "Sàr-roghainn",
"header_visit_again": "Tadhail a-rithist",
"header_bookmarks": "Comharran-lìn o chionn goirid",
"header_recommended_by": "Ga mholadh le {provider}",
"header_bookmarks_placeholder": "Chan eil comharra-lìn sam bith agad fhathast.",
"header_stories_from": "o",
"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_open": "Fosgailte",
"type_label_topic": "Cuspair",
"type_label_now": "An-dràsta",
"menu_action_bookmark": "Comharra-lìn",
"menu_action_remove_bookmark": "Thoir an comharra-lìn air falbh",
"menu_action_copy_address": "Dèan lethbhreac dhen t-seòladh",
"menu_action_email_link": "Cuir an ceangal air a phost-d…",
"menu_action_open_new_window": "Fosgail ann an uinneag ùr",
"menu_action_open_private_window": "Fosgail ann an uinneag phrìobhaideach ùr",
"menu_action_dismiss": "Leig seachad",
"menu_action_delete": "Sguab às an eachdraidh",
"menu_action_pin": "Prìnich",
"menu_action_unpin": "Dì-phrìnich",
"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",
"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",
"welcome_title": "Fàilte gun taba ùr",
"welcome_body": "Seallaidh Firefox na comharran-lìn, artaigealan, videothan is duilleagan as iomchaidhe dhut, an fheadhainn air an do thadhail thu o chionn goirid, ach an ruig thu iad gu luath.",
"welcome_label": "Ag aithneachadh nan highlights agad",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}u",
"time_label_day": "{number}l",
"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.",
"settings_pane_search_header": "Lorg",
"settings_pane_search_body": "Lorg air an lìon on taba ùr agad.",
"settings_pane_topsites_header": "Brod nan làrach",
"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 dhfhaoidte.",
"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",
"settings_pane_highlights_options_visited": "Làraichean a thadhladh orra",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Leugh naidheachdan goirid tlachdmhor o Mozilla mu Firefox, cultar an lìn s mìm no dhà.",
"settings_pane_done_button": "Deiseil",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Cuir ainm a-steach",
"topsites_form_url_placeholder": "Sgrìobh URL no cuir fear ann",
"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",
"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 dhaithghearr. 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"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "gu-IN",
"strings": {
"newtab_page_title": "નવું ટૅબ",
"default_label_loading": "લોડ કરી રહ્યું છે...",
"header_top_sites": "ટોપ સાઇટ્સ",
"header_stories": "શીર્ષ વાર્તાઓ",
"header_highlights": "વીતી ગયેલું",
"header_visit_again": "ફરી મુલાકાત",
"header_bookmarks": "તાજેતરના બુકમાર્ક્સ",
"header_recommended_by": "દ્વારા ભલામણ",
"header_bookmarks_placeholder": "તમારી પાસે હજી સુધી કોઈ બુકમાર્ક્સ નથી.",
"header_stories_from": "થી",
"type_label_visited": "જોવામા આવેલ:",
"type_label_bookmarked": "બુકમાર્ક્સ",
"type_label_synced": "બીજા ઉપકરણ થી સમન્વયિત કરેલ છે",
"type_label_recommended": "વલણ",
"type_label_open": "ખોલો",
"type_label_topic": "વિષય",
"type_label_now": "હવે",
"menu_action_bookmark": "બુકમાર્ક",
"menu_action_remove_bookmark": "બુકમાર્ક કાઢો",
"menu_action_copy_address": "સરનામું કૉપિ કરો",
"menu_action_email_link": "ઇમેલ કડી…",
"menu_action_open_new_window": "નવી વિન્ડોમાં ખોલો",
"menu_action_open_private_window": "ખાનગી વિન્ડોમાં ખોલો",
"menu_action_dismiss": "રદ કરો",
"menu_action_delete": "ઇતિહાસમાંથી દૂર કરો",
"menu_action_pin": "પિન",
"menu_action_unpin": "અનપિન",
"confirm_history_delete_p1": "શું તમે ખરેખર તમારા ઇતિહાસમાંથી આ પૃષ્ઠનાં દરેક ઘટકને કાઢી નાખવા માંગો છો?",
"confirm_history_delete_notice_p2": "આ ક્રિયા પૂર્વવત્ કરી શકાતી નથી.",
"menu_action_save_to_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": "ગોપનીયતા સૂચના",
"welcome_title": "નવી વિન્ડોમાં આપનું સ્વાગત છે",
"welcome_body": "ફાયરફોક્સ, તમારા સૌથી સંબંધિત બુકમાર્ક્સ, લેખો, વિડિઓઝ, અને પૃષ્ઠો જે તમે તાજેતરમાં મુલાકાત લીધી એ બતાવવા માટે આ જગ્યાનો ઉપયોગ કરશે જેથી તમે પાછા તેમને સરળતાથી મેળવી શકો છો.",
"welcome_label": "તમારા હાઇલાઇટ્સ ઓળખવા",
"time_label_less_than_minute": "<1મિનિટ",
"time_label_minute": "{number}મિનિટ",
"time_label_hour": "{number}કલાક",
"time_label_day": "{number}દિવસ",
"settings_pane_button_label": "તમારા નવા ટૅબ પૃષ્ઠને કસ્ટમાઇઝ કરો",
"settings_pane_header": "નવી ટેબ પસંદગીઓ",
"settings_pane_body2": "તમે આ પૃષ્ઠ પર જે જુઓ છો તે પસંદ કરો.",
"settings_pane_search_header": "શોધો",
"settings_pane_search_body": "તમારા નવા ટૅબમાંથી વેબ પર શોધો.",
"settings_pane_topsites_header": "ટોચની સાઇટ્સ",
"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": "બુકમાર્ક્સ",
"settings_pane_highlights_options_visited": "મુલાકાત લીધેલ સાઇટ્સ",
"settings_pane_snippets_header": "જાણકારી આપનારા ઉતારા ક કાપલીઓ",
"settings_pane_snippets_body": "ટૂંકી અને મીઠી સુધારાઓ વાંચો મોઝિલ્લાથી ફાયરફોક્સ વિશે, ઇન્ટરનેટ સંસ્કૃતિ અને પ્રસંગોપાત ફાવે તેમ મેમે વિશે.",
"settings_pane_done_button": "પૂરું",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "શીર્ષક દાખલ કરો",
"topsites_form_url_placeholder": "URL ટાઇપ કરો અથવા પેસ્ટ કરો",
"topsites_form_add_button": "ઉમેરો",
"topsites_form_save_button": "સાચવો",
"topsites_form_cancel_button": "રદ કરો",
"topsites_form_url_validation": "માન્ય URL આવશ્યક છે",
"pocket_read_more": "લોકપ્રિય વિષયો:",
"pocket_read_even_more": "વધુ વાર્તાઓ જુઓ",
"pocket_feedback_header": "2.5 કરોડ વધુ લોકો દ્વારા બનાવાયેલા શ્રેષ્ઠ વેબ.",
"pocket_description": "ઉચ્ચ ગુણવત્તાવાળી સામગ્રી શોધો અન્યથા તમે ચૂકી જશો, પોકેટની સહાયથી, હવે મોઝિલાનો એક ભાગ છે.",
"highlights_empty_state": "બ્રાઉઝ કરવું પ્રારંભ કરો અને અમે અહીં કેટલાક સરસ લેખો, વિડિઓઝ અને અન્ય પૃષ્ઠો દર્શાવીશું જે તમે તાજેતરમાં મુલાકાત લીધાં છે અથવા બુકમાર્ક કર્યા છે.",
"topstories_empty_state": "તમે પકડાઈ ગયા છો. {પ્રદાતા} તરફથી વધુ ટોચની વાતો માટે પછીથી પાછા તપાસો. રાહ નથી જોઈ શકતા? સમગ્ર વેબ પરથી વધુ સુંદર વાર્તાઓ શોધવા માટે એક લોકપ્રિય વિષય પસંદ કરો.",
"manual_migration_explanation2": "અન્ય બ્રાઉઝરથી બુકમાર્ક્સ, ઇતિહાસ અને પાસવર્ડ્સ સાથે ફાયરફોક્સ અજમાવો.",
"manual_migration_cancel_button": "ના અભાર",
"manual_migration_import_button": "હવે આયાત કરો"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "he",
"strings": {
"newtab_page_title": "לשונית חדשה",
"default_label_loading": "בטעינה…",
"header_top_sites": "אתרים מובילים",
"header_stories": "סיפורים מובילים",
"header_highlights": "מומלצים",
"header_visit_again": "ביקור חוזר",
"header_bookmarks": "סימניות אחרונות",
"header_recommended_by": "מומלץ על ידי {provider}",
"header_bookmarks_placeholder": "אין לך סימניות עדיין.",
"header_stories_from": "מאת",
"type_label_visited": "ביקורים קודמים",
"type_label_bookmarked": "נוצרה סימניה",
"type_label_synced": "סונכרן מהתקן אחר",
"type_label_recommended": "פופולרי",
"type_label_open": "פתיחה",
"type_label_topic": "נושא",
"type_label_now": "עכשיו",
"menu_action_bookmark": "הוספת סימניה",
"menu_action_remove_bookmark": "הסרת סימניה",
"menu_action_copy_address": "העתקת כתובת",
"menu_action_email_link": "שליחת קישור בדוא״ל…",
"menu_action_open_new_window": "פתיחה בחלון חדש",
"menu_action_open_private_window": "פתיחה בלשונית פרטית חדשה",
"menu_action_dismiss": "הסרה",
"menu_action_delete": "מחיקה מההיסטוריה",
"menu_action_pin": "הצמדה",
"menu_action_unpin": "ביטול הצמדה",
"confirm_history_delete_p1": "למחוק כל עותק של העמוד הזה מההיסטוריה שלך?",
"confirm_history_delete_notice_p2": "לא ניתן לבטל פעולה זו.",
"menu_action_save_to_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": "הצהרת פרטיות",
"welcome_title": "ברוכים הבאים לדף הלשונית החדשה",
"welcome_body": "Firefox ישתמש באזור זה כדי להציג את הסימניות הרלוונטיות ביותר, מאמרים, סרטוני וידאו ודפים שביקרת בהם לאחרונה, כך שניתן יהיה לגשת אליהם שוב בקלות.",
"welcome_label": "תחומי העניין שלך מזוהים",
"time_label_less_than_minute": "פחות מדקה",
"time_label_minute": "{number} דקות",
"time_label_hour": "{number} שעות",
"time_label_day": "{number} ימים",
"settings_pane_button_label": "התאמה אישית של דף הלשונית החדשה שלך",
"settings_pane_header": "העדפות לשונית חדשה",
"settings_pane_body2": "בחירה של מה שיופיע בעמוד הזה.",
"settings_pane_search_header": "חיפוש",
"settings_pane_search_body": "חיפוש באינטרנט ישירות מהלשונית החדשה שלך.",
"settings_pane_topsites_header": "אתרים מובילים",
"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": "סימניות",
"settings_pane_highlights_options_visited": "אתרים בהם ביקרת",
"settings_pane_snippets_header": "פתקיות",
"settings_pane_snippets_body": "ניתן לקרוא עדכונים קטנים ומתוקים מ־Mozilla לגבי Firefox, תרבות האינטרנט ומם אקראי מדי פעם בפעם.",
"settings_pane_done_button": "סיום",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "נא להזין כותרת",
"topsites_form_url_placeholder": "נא להקליד או להזין כתובת",
"topsites_form_add_button": "הוספה",
"topsites_form_save_button": "שמירה",
"topsites_form_cancel_button": "ביטול",
"topsites_form_url_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": "ייבוא כעת"
},
"textDirection": "rtl",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "hi-IN",
"strings": {
"newtab_page_title": "नया टैब",
"default_label_loading": "लोड हो रहा है…",
"header_top_sites": "सर्वोच्च साइटें",
"header_stories": "सर्वोच्च साइटें",
"header_highlights": "झलकियाँ",
"header_visit_again": "पुनः पधारें",
"header_bookmarks": "हाल के पुस्तचिह्न",
"header_recommended_by": "{provider} द्वारा अनुशंसित",
"header_bookmarks_placeholder": "आपके पास अभी तक कोई भी पुस्तचिन्ह नहीं है.",
"header_stories_from": "के द्वारा",
"type_label_visited": "देखी गई",
"type_label_bookmarked": "पुस्तचिह्न लगाया हुआ",
"type_label_synced": "किसी अन्य उपकरण से समकालीन किया गया",
"type_label_recommended": "लोकप्रिय",
"type_label_open": "खोलें",
"type_label_topic": "विषय",
"type_label_now": "अभी",
"menu_action_bookmark": "पुस्तचिह्न",
"menu_action_remove_bookmark": "पुस्तचिह्न हटाएँ",
"menu_action_copy_address": "पता कॉपी करें",
"menu_action_email_link": "ईमेल लिंक…",
"menu_action_open_new_window": "एक नई विंडो में खोलें",
"menu_action_open_private_window": "एक नई निजी विंडो में खोलें",
"menu_action_dismiss": "निरस्त करें",
"menu_action_delete": "इतिहास से मिटाएँ",
"menu_action_pin": "पिन करें",
"menu_action_unpin": "पिन हटाएँ",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "इस क्रिया को पहले जैसा नहीं किया जा सकता है.",
"menu_action_save_to_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": "गोपनीयता सूचना",
"welcome_title": "नए टैब में आपका स्वागत है",
"welcome_body": "Firefox यह जगह आपके सर्वाधिक प्रासंगिक पुस्तचिन्ह, लेख, वीडियो और पृष्ठों जिनका आपने हाल ही में दौरा किया है उनको दर्शाने के लिए करेगा, ताकि आप बाद में उन तक आसानी से वापस जा सकें.",
"welcome_label": "आपके प्रमुखताओं की पहचान की जा रही है",
"time_label_less_than_minute": "<1मि0",
"time_label_minute": "{number}मि0",
"time_label_hour": "{number}मि0",
"time_label_day": "{number}दिन",
"settings_pane_button_label": "अपने नए टैब पृष्ठ को अनुकूलित करें",
"settings_pane_header": "नयी टैब वरीयताएँ",
"settings_pane_body2": "चुनें कि आप इस पृष्ठ पर क्या देखते हैं.",
"settings_pane_search_header": "खोज",
"settings_pane_search_body": "अपने नए टैब से वेब पर खोजें.",
"settings_pane_topsites_header": "सर्वोच्च साइटें",
"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 will show you parts of your browsing history that you might want to remember or get back to.",
"settings_pane_highlights_header": "झलकियाँ",
"settings_pane_highlights_body2": "हाल ही में देखी गयी या पुस्तचिंहित की गयी रोचक चीज़ों पर वापस जाएँ.",
"settings_pane_highlights_options_bookmarks": "पुस्तचिह्न",
"settings_pane_highlights_options_visited": "देखी गयीं साइटें",
"settings_pane_snippets_header": "अंश",
"settings_pane_snippets_body": "Firefox, इंटरनेट संस्कृति और यादृच्छिक मीम के बारे में Mozilla के संक्षिप्त और प्यारे अपडेट पढ़ें.",
"settings_pane_done_button": "संपन्न",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "एक शीर्षक दर्ज करें",
"topsites_form_url_placeholder": "एक URL टाइप करें अथवा पेस्ट करें",
"topsites_form_add_button": "जोड़ें",
"topsites_form_save_button": "सहेजें",
"topsites_form_cancel_button": "रद्द करें",
"topsites_form_url_validation": "मान्य URL आवश्यक",
"pocket_read_more": "लोकप्रिय विषय:",
"pocket_read_even_more": "और कहानियाँ देखें",
"pocket_feedback_header": "वेब का सबसे बढ़िया हिस्सा, 25 लाख लोगों द्वारा निरीक्षित.",
"pocket_description": "पॉकेट, जो अब Mozilla का हिस्सा है, की मदद से अन्यथा आपसे छूटने वाली उच्च-गुणवत्ता सामग्रियों को खोजें.",
"highlights_empty_state": "ब्राउज़िंग प्रारंभ करें, और हम कुछ प्रमुख आलेख, विडियो, तथा अन्य पृष्ठों को प्रदर्शित करेंगे जिन्हें आपने हाल ही में देखा या पुस्तचिन्हित किया है.",
"topstories_empty_state": "आप अंत तक आ गए हैं. {provider} से और शीर्ष घटनाओं के लिए कुछ समय में पुनः आइए. इंतज़ार नहीं कर सकते? वेब से और प्रमुख घटनाएं ढूंढने के लिए एक लोकप्रिय विषय चुनें.",
"manual_migration_explanation2": "Firefox को किसी अन्य ब्राउज़र के पुस्तचिह्नों, इतिहास और पासवर्डों के साथ आज़माएं.",
"manual_migration_cancel_button": "नहीं शुक्रिया",
"manual_migration_import_button": "अब आयात करें"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "hr",
"strings": {
"newtab_page_title": "Nova kartica",
"default_label_loading": "Učitavanje…",
"header_top_sites": "Najbolje stranice",
"header_stories": "Najbolje priče",
"header_highlights": "Istaknuto",
"header_visit_again": "Posjetite ponovno",
"header_bookmarks": "Nedavne zabilješke",
"header_recommended_by": "Preporučeno od {provider}",
"header_bookmarks_placeholder": "Još nemate niti jednu zabilješku.",
"header_stories_from": "od",
"type_label_visited": "Posjećeno",
"type_label_bookmarked": "Zabilježeno",
"type_label_synced": "Sinkronizirano s drugog uređaja",
"type_label_recommended": "Popularno",
"type_label_open": "Otvori",
"type_label_topic": "Tema",
"type_label_now": "Sada",
"menu_action_bookmark": "Zabilježi stranicu",
"menu_action_remove_bookmark": "Ukloni zabilješku",
"menu_action_copy_address": "Kopiraj adresu",
"menu_action_email_link": "Pošalji poveznicu e-poštom…",
"menu_action_open_new_window": "Otvori u novom prozoru",
"menu_action_open_private_window": "Otvori u novom privatnom prozoru",
"menu_action_dismiss": "Odbaci",
"menu_action_delete": "Obriši iz povijesti",
"menu_action_pin": "Zakači",
"menu_action_unpin": "Otkači",
"confirm_history_delete_p1": "Jeste li sigurni da želite obrisati sve primjere ove stranice iz vaše povijesti?",
"confirm_history_delete_notice_p2": "Ova radnja je nepovratna.",
"menu_action_save_to_pocket": "Spremi u Pocket",
"search_for_something_with": "Traži {search_term} s:",
"search_button": "Traži",
"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",
"welcome_title": "Dobro došli u novu karticu",
"welcome_body": "Firefox će koristiti ovaj prostor kako bi vam pokazao najbitnije zabilješke, članke, video uratke i stranice koje ste nedavno posjetili, tako da se možete lako vratiti na njih.",
"welcome_label": "Identificiranje istaknutog",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Traži",
"settings_pane_search_body": "Pretražite Web iz nove kartice.",
"settings_pane_topsites_header": "Najbolje stranice",
"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",
"settings_pane_highlights_options_visited": "Posjećene stranice",
"settings_pane_snippets_header": "Isječci",
"settings_pane_snippets_body": "Pročitajte kratke i slatke obavijesti od Mozille o Firefoxu, internet kulturi i povremenim nasumičnim temama.",
"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_placeholder": "Unesi naslov",
"topsites_form_url_placeholder": "Utipkajte ili zalijepite URL",
"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",
"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, povijesti i lozinkama iz drugog pretraživača.",
"manual_migration_cancel_button": "Ne hvala",
"manual_migration_import_button": "Uvezi sada"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "hsb",
"strings": {
"newtab_page_title": "Nowy rajtark",
"default_label_loading": "Začituje so…",
"header_top_sites": "Najhusćišo wopytane sydła",
"header_stories": "Najhusćišo přečitane zdźělenki",
"header_highlights": "Wjerški",
"header_visit_again": "Hišće raz wopytać",
"header_bookmarks": "Najnowše zapołožki",
"header_recommended_by": "Wot {provider} doporučeny",
"header_bookmarks_placeholder": "Hišće zapołožki nimaće.",
"header_stories_from": "wot",
"type_label_visited": "Wopytany",
"type_label_bookmarked": "Jako zapołožka składowany",
"type_label_synced": "Z druheho grata synchronizowany",
"type_label_recommended": "Popularny",
"type_label_open": "Wočinjeny",
"type_label_topic": "Tema",
"type_label_now": "Nětko",
"menu_action_bookmark": "Zapołožki składować",
"menu_action_remove_bookmark": "Zapołožku wotstronić",
"menu_action_copy_address": "Adresu kopěrować",
"menu_action_email_link": "Wotkaz e-mejlować…",
"menu_action_open_new_window": "W nowym woknje wočinić",
"menu_action_open_private_window": "W nowym priwatnym woknje wočinić",
"menu_action_dismiss": "Zaćisnyć",
"menu_action_delete": "Z historije zhašeć",
"menu_action_pin": "Připjeć",
"menu_action_unpin": "Wotpjeć",
"confirm_history_delete_p1": "Chceće woprawdźe kóždu instancu tuteje strony ze swojeje historije zhašeć?",
"confirm_history_delete_notice_p2": "Tuta akcija njeda so cofnyć.",
"menu_action_save_to_pocket": "Pola Pocket składować",
"search_for_something_with": "Za {search_term} pytać z:",
"search_button": "Pytać",
"search_header": "Z {search_engine_name} pytać",
"search_web_placeholder": "Web přepytać",
"search_settings": "Pytanske nastajenja změnić",
"section_info_option": "Info",
"section_info_send_feedback": "Komentar pósłać",
"section_info_privacy_notice": "Zdźělenka priwatnosće",
"welcome_title": "Witajće k nowemu rajtarkej",
"welcome_body": "Firefox budźe tutón rum wužiwać, zo by waše najwažniše zapołožki, nastawki, wideja a runje wopytane strony pokazał, zo byšće móhł so lochko k nim wróćić.",
"welcome_label": "Wuběranje wašich najwažnišich stronow",
"time_label_less_than_minute": "< 1 min",
"time_label_minute": "{number} m",
"time_label_hour": "{number} h",
"time_label_day": "",
"settings_pane_button_label": "Stronu wašeho noweho rajtarka přiměrić",
"settings_pane_header": "Nastajenja noweho rajtarka",
"settings_pane_body2": "Wubjerće, štož so na tutej stronje pokazuje.",
"settings_pane_search_header": "Pytać",
"settings_pane_search_body": "Přepytajće web ze swojeho noweho rajtarka.",
"settings_pane_topsites_header": "Najhusćišo wopytane sydła",
"settings_pane_topsites_body": "Wočińće websydła, kotrež sće najhusćišo wopytał.",
"settings_pane_topsites_options_showmore": "Dwaj rjadaj pokazać",
"settings_pane_bookmarks_header": "Najnowše zapołožki",
"settings_pane_bookmarks_body": "Waše nowo załožene zapołožki hnydom k ruce.",
"settings_pane_visit_again_header": "Hišće raz wopytać",
"settings_pane_visit_again_body": "Firefox wam dźěle wašeje přehladowanskeje historije pokazać, kotrež chceće sej snano spomjatkować abo na kotrež chceće wróćo přińć.",
"settings_pane_highlights_header": "Wjerški",
"settings_pane_highlights_body2": "Namakajće swój puć wróćo k zajimawym stronam, kotrež sće njedawno wopytał abo jako zapołožki składował.",
"settings_pane_highlights_options_bookmarks": "Zapołožki",
"settings_pane_highlights_options_visited": "Wopytane sydła",
"settings_pane_snippets_header": "Šlipki",
"settings_pane_snippets_body": "Čitajće krótke aktualizacije wot Mozilla wo Firefox, internetnej kulturje a hdys a hdys meme.",
"settings_pane_done_button": "Hotowo",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Wobdźěłać",
"edit_topsites_button_label": "Přiměrće wotrězk swojich najhusćišo wopytanych sydłow",
"edit_topsites_showmore_button": "Wjace pokazać",
"edit_topsites_showless_button": "Mjenje pokazać",
"edit_topsites_done_button": "Hotowo",
"edit_topsites_pin_button": "Tute sydło připjeć",
"edit_topsites_unpin_button": "Tute sydło wotpinyć",
"edit_topsites_edit_button": "Tute sydło wobdźěłać",
"edit_topsites_dismiss_button": "Sydło zaćisnyć",
"edit_topsites_add_button": "Přidać",
"topsites_form_add_header": "Nowe najhusćišo wopytane sydło",
"topsites_form_edit_header": "Najhusćišo wopytane sydło wobdźěłać",
"topsites_form_title_placeholder": "Titul zapodać",
"topsites_form_url_placeholder": "URL zapodać abo zasadźić",
"topsites_form_add_button": "Přidać",
"topsites_form_save_button": "Składować",
"topsites_form_cancel_button": "Přetorhnyć",
"topsites_form_url_validation": "Płaćiwy URL trěbny",
"pocket_read_more": "Woblubowane temy:",
"pocket_read_even_more": "Dalše zdźělenki sej wobhladać",
"pocket_feedback_header": "Najlěpše z weba, zhromadźene wot wjace hač 25 milionow ludźi.",
"pocket_description": "Wotkryjće wobsah wysokeje kwality, kotryž byšće hewak parował, z pomocu Pocket, kotryž je nětko dźěl Mozilla.",
"highlights_empty_state": "Započńće přehladować, a pokazamy někotre wulkotne nastawki, wideja a druhe strony, kotrež sće njedawno wopytał abo tu jako zapołožki składował.",
"topstories_empty_state": "To je nachwilu wšitko. Wróćće so pozdźišo dalšich wulkotnych stawiznow dla wot {provider}. Njemóžeće čakać? Wubjerće woblubowanu temu, zo byšće dalše wulkotne stawizny z weba namakał.",
"manual_migration_explanation2": "Wupruwujće Firefox ze zapołožkami, historiju a hesłami z druheho wobhladowaka.",
"manual_migration_cancel_button": "Ně, dźakuju so",
"manual_migration_import_button": "Nětko importować"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "hu",
"strings": {
"newtab_page_title": "Új lap",
"default_label_loading": "Betöltés…",
"header_top_sites": "Népszerű oldalak",
"header_stories": "Népszerű történetek",
"header_highlights": "Kiemelések",
"header_visit_again": "Látogasson el ismét",
"header_bookmarks": "Friss könyvjelzők",
"header_recommended_by": "A(z) {provider} ajánlásával",
"header_bookmarks_placeholder": "Még nincs könyvjelzője.",
"header_stories_from": "innen:",
"type_label_visited": "Látogatott",
"type_label_bookmarked": "Könyvjelzőzött",
"type_label_synced": "Másik eszközről szinkronizálva",
"type_label_recommended": "Népszerű",
"type_label_open": "Megnyitás",
"type_label_topic": "Téma",
"type_label_now": "Most",
"menu_action_bookmark": "Könyvjelzőzés",
"menu_action_remove_bookmark": "Könyvjelző eltávolítása",
"menu_action_copy_address": "Cím másolása",
"menu_action_email_link": "Hivatkozás küldése e-mailben…",
"menu_action_open_new_window": "Megnyitás új ablakban",
"menu_action_open_private_window": "Megnyitás új privát ablakban",
"menu_action_dismiss": "Elutasítás",
"menu_action_delete": "Törlés az előzményekből",
"menu_action_pin": "Rögzítés",
"menu_action_unpin": "Rögzítés feloldása",
"confirm_history_delete_p1": "Biztosan törli ezen oldal minden példányát az előzményekből?",
"confirm_history_delete_notice_p2": "Ez a művelet nem vonható vissza.",
"menu_action_save_to_pocket": "Mentés a Pocketbe",
"search_for_something_with": "„{search_term}” keresése ezzel:",
"search_button": "Keresés",
"search_header": "{search_engine_name} keresés",
"search_web_placeholder": "Keresés a weben",
"search_settings": "Keresési beállítások módosítása",
"section_info_option": "Információ",
"section_info_send_feedback": "Visszajelzés küldése",
"section_info_privacy_notice": "Adatvédelmi nyilatkozat",
"welcome_title": "Üdvözöljük az új lapon",
"welcome_body": "A Firefox ezt a területet a leginkább releváns könyvjelzők, cikkek, videók és nemrég látogatott oldalak megjelenítésére fogja használni, így könnyedén visszatalálhat hozzájuk.",
"welcome_label": "A kiemeléseinek azonosítása",
"time_label_less_than_minute": "<1 p",
"time_label_minute": "{number} p",
"time_label_hour": "{number} ó",
"time_label_day": "{number} n",
"settings_pane_button_label": "Az Új lap oldal személyre szabása",
"settings_pane_header": "Új lap beállításai",
"settings_pane_body2": "Válassza ki, hogy mit akar látni ezen az oldalon.",
"settings_pane_search_header": "Keresés",
"settings_pane_search_body": "Keresés a weben az új lapon.",
"settings_pane_topsites_header": "Népszerű oldalak",
"settings_pane_topsites_body": "A leggyakrabban látogatott webhelyek elérése.",
"settings_pane_topsites_options_showmore": "Két sor megjelenítése",
"settings_pane_bookmarks_header": "Friss könyvjelzők",
"settings_pane_bookmarks_body": "A frissen létrehozott könyvjelzői egy praktikus helyen.",
"settings_pane_visit_again_header": "Látogasson el ismét",
"settings_pane_visit_again_body": "A Firefox megjeleníti a böngészési előzményeinek azt a részét, amelyet lehet hogy meg szeretne jegyezni, vagy ahová vissza akar térni.",
"settings_pane_highlights_header": "Kiemelések",
"settings_pane_highlights_body2": "Találjon vissza azokhoz az érdekes dolgokhoz, amelyeket meglátogatott vagy könyvjelzőzött.",
"settings_pane_highlights_options_bookmarks": "Könyvjelzők",
"settings_pane_highlights_options_visited": "Látogatott helyek",
"settings_pane_snippets_header": "Töredékek",
"settings_pane_snippets_body": "Olvasson rövid és érdekes híreket a Mozillától, a Firefoxról, az internetes kultúráról, és időnként kapjon mémeket.",
"settings_pane_done_button": "Kész",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Szerkesztés",
"edit_topsites_button_label": "A Népszerű oldalak rész testreszabása",
"edit_topsites_showmore_button": "Több megjelenítése",
"edit_topsites_showless_button": "Kevesebb megjelenítése",
"edit_topsites_done_button": "Kész",
"edit_topsites_pin_button": "Webhely rögzítése",
"edit_topsites_unpin_button": "Rögzítés feloldása",
"edit_topsites_edit_button": "Webhely szerkesztése",
"edit_topsites_dismiss_button": "Webhely eltávolítása",
"edit_topsites_add_button": "Hozzáadás",
"topsites_form_add_header": "Új népszerű oldal",
"topsites_form_edit_header": "Népszerű oldal szerkesztése",
"topsites_form_title_placeholder": "Cím megadása",
"topsites_form_url_placeholder": "Írjon vagy illesszen be egy URL-t",
"topsites_form_add_button": "Hozzáadás",
"topsites_form_save_button": "Mentés",
"topsites_form_cancel_button": "Mégse",
"topsites_form_url_validation": "Érvényes URL szükséges",
"pocket_read_more": "Népszerű témák:",
"pocket_read_even_more": "További történetek",
"pocket_feedback_header": "A web legjava, több mint 25 millió ember válogatásában.",
"pocket_description": "Fedezzen fel olyan, magas minőségű tartalmakat, amelyek egyébként elkerülnék a figyelmét, a Pocket segítségével, amely most már a Mozilla része.",
"highlights_empty_state": "Kezdjen el böngészni, és itt fognak megjelenni azok a nagyszerű cikkek, videók és más lapok, amelyeket nemrég meglátogatott vagy könyvjelzőzött.",
"topstories_empty_state": "Már felzárkózott. Nézzen vissza később a legújabb {provider} hírekért. Nem tud várni? Válasszon egy népszerű témát, hogy még több sztorit találjon a weben.",
"manual_migration_explanation2": "Próbálja ki a Firefoxot másik böngészőből származó könyvjelzőkkel, előzményekkel és jelszavakkal.",
"manual_migration_cancel_button": "Köszönöm, nem",
"manual_migration_import_button": "Importálás most"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "hy-AM",
"strings": {
"newtab_page_title": "Նոր ներդիր",
"default_label_loading": "Բեռնվում է...",
"header_top_sites": "Լավագույն կայքեր",
"header_stories": "Top Stories",
"header_highlights": "Գունանշում",
"header_visit_again": "Visit Again",
"header_bookmarks": "Recent Bookmarks",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "You dont have any bookmarks yet.",
"header_stories_from": "from",
"type_label_visited": "Այցելած",
"type_label_bookmarked": "Էջանշված",
"type_label_synced": "Համաժամեցված այլ սարքից",
"type_label_recommended": "Trending",
"type_label_open": "Բացել",
"type_label_topic": "Թեմա",
"type_label_now": "Now",
"menu_action_bookmark": "Էջանիշ",
"menu_action_remove_bookmark": "Հեռացնել էջանիշը",
"menu_action_copy_address": "Պատճենել հասցեն",
"menu_action_email_link": "Ուղարկել հղումը...",
"menu_action_open_new_window": "Բացել Նոր Պատուհանով",
"menu_action_open_private_window": "Բացել Նոր Գաղտնի դիտարկմամբ",
"menu_action_dismiss": "Բաց թողնել",
"menu_action_delete": "Ջնջել Պատմությունից",
"menu_action_pin": "Pin",
"menu_action_unpin": "Unpin",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "This action cannot be undone.",
"menu_action_save_to_pocket": "Save to Pocket",
"search_for_something_with": "Որոնել {search_term}-ը հետևյալով՝",
"search_button": "Search",
"search_header": "{search_engine_name}-ի որոնում",
"search_web_placeholder": "Որոնել առցանց",
"search_settings": "Փոխել որոնման կարգավորումները",
"section_info_option": "Info",
"section_info_send_feedback": "Send Feedback",
"section_info_privacy_notice": "Privacy Notice",
"welcome_title": "Բարի գալուստ նոր ներդիր",
"welcome_body": "Firefox-ը կօգտագործի այս բացատը՝ ցուցադրելու ձեզ համար առավել կարևոր էջանիշերը, հոդվածները և ձեր այցելած վերջին էջերը, որպեսզի հեշտությամբ վերադառնաք դրանց:",
"welcome_label": "Նույնացնում է ձեր գունանշումը",
"time_label_less_than_minute": "<1 ր",
"time_label_minute": "{number} ր",
"time_label_hour": "{number} ժ",
"time_label_day": "{number} օր",
"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.",
"settings_pane_search_header": "Search",
"settings_pane_search_body": "Search the Web from your new tab.",
"settings_pane_topsites_header": "Top Sites",
"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 youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"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_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Add",
"topsites_form_save_button": "Save",
"topsites_form_cancel_button": "Cancel",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ia",
"strings": {
"newtab_page_title": "Nove scheda",
"default_label_loading": "Cargante…",
"header_top_sites": "Sitos popular",
"header_stories": "Historias popular",
"header_highlights": "In evidentia",
"header_visit_again": "Visita de novo",
"header_bookmarks": "Marcapaginas recente",
"header_recommended_by": "Recommendate per {provider}",
"header_bookmarks_placeholder": "Tu ha ancora nulle marcapaginas.",
"header_stories_from": "de",
"type_label_visited": "Visitate",
"type_label_bookmarked": "Marcapaginas addite",
"type_label_synced": "Synchronisate de altere apparato",
"type_label_recommended": "Tendentias",
"type_label_open": "Aperite",
"type_label_topic": "Subjecto",
"type_label_now": "Ora",
"menu_action_bookmark": "Adder marcapaginas",
"menu_action_remove_bookmark": "Remover le marcapaginas",
"menu_action_copy_address": "Copiar le adresse",
"menu_action_email_link": "Inviar le ligamine per email…",
"menu_action_open_new_window": "Aperir in un nove fenestra",
"menu_action_open_private_window": "Aperir in un nove fenestra private",
"menu_action_dismiss": "Dimitter",
"menu_action_delete": "Deler del chronologia",
"menu_action_pin": "Clavar",
"menu_action_unpin": "Disclavar",
"confirm_history_delete_p1": "Desira tu vermente deler cata instantia de iste pagina de tu chronologia?",
"confirm_history_delete_notice_p2": "Iste action es irreversibile.",
"menu_action_save_to_pocket": "Salvar in Pocket",
"search_for_something_with": "Cercar {search_term} con:",
"search_button": "Cercar",
"search_header": "Recerca {search_engine_name}",
"search_web_placeholder": "Cercar in le Web",
"search_settings": "Cambiar le parametros de recerca",
"section_info_option": "Informationes",
"section_info_send_feedback": "Inviar feedback",
"section_info_privacy_notice": "Advertentia de privacitate",
"welcome_title": "Benvenite al nove scheda",
"welcome_body": "Firefox usara iste spatio pro monstrar tu marcapaginas le plus relevante, articulos, videos e paginas que tu ha visitate recentemente, de sorta que tu pote revider los facilemente.",
"welcome_label": "Identificante tu evidentias",
"time_label_less_than_minute": "<1 min",
"time_label_minute": "{number} min",
"time_label_hour": "{number} h",
"time_label_day": "{number} d",
"settings_pane_button_label": "Personalisar tu pagina de nove scheda",
"settings_pane_header": "Preferentias de nove scheda",
"settings_pane_body2": "Selige lo que tu vole vider in iste pagina.",
"settings_pane_search_header": "Cercar",
"settings_pane_search_body": "Cercar in le Web ab tu nove scheda.",
"settings_pane_topsites_header": "Sitos popular",
"settings_pane_topsites_body": "Acceder al sitos web que tu plus visita.",
"settings_pane_topsites_options_showmore": "Monstrar duo lineas",
"settings_pane_bookmarks_header": "Marcapaginas recente",
"settings_pane_bookmarks_body": "Tu marcapaginas le plus recente a un sol loco.",
"settings_pane_visit_again_header": "Visitar de novo",
"settings_pane_visit_again_body": "Firefox te monstrara partes de tu chronologia de navigation que tu pote voler rememorar o visitar novemente.",
"settings_pane_highlights_header": "In evidentia",
"settings_pane_highlights_body2": "Retrova cosas interessante que tu ha recentemente visitate o addite marcapaginas.",
"settings_pane_highlights_options_bookmarks": "Marcapaginas",
"settings_pane_highlights_options_visited": "Sitos visitate",
"settings_pane_snippets_header": "Breve novas",
"settings_pane_snippets_body": "Lege breve e legier novas de Mozilla super Firefox, cultura internet e occasionalmente super alcun meme.",
"settings_pane_done_button": "Facite",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Editar",
"edit_topsites_button_label": "Personalisar tu section de sitos popular",
"edit_topsites_showmore_button": "Monstrar plus",
"edit_topsites_showless_button": "Monstrar minus",
"edit_topsites_done_button": "Facite",
"edit_topsites_pin_button": "Clavar iste sito",
"edit_topsites_unpin_button": "Disclavar iste sito",
"edit_topsites_edit_button": "Editar iste sito",
"edit_topsites_dismiss_button": "Dimitter iste sito",
"edit_topsites_add_button": "Adder",
"topsites_form_add_header": "Nove sito popular",
"topsites_form_edit_header": "Editar le sito popular",
"topsites_form_title_placeholder": "Scriber un titulo",
"topsites_form_url_placeholder": "Scriber o collar un URL",
"topsites_form_add_button": "Adder",
"topsites_form_save_button": "Salvar",
"topsites_form_cancel_button": "Cancellar",
"topsites_form_url_validation": "Il es necessari un URL valide",
"pocket_read_more": "Subjectos popular:",
"pocket_read_even_more": "Vider plus historias",
"pocket_feedback_header": "Le melior del web, selectionate per 25 milliones de personas.",
"pocket_description": "Discoperir contento de alte qualitate que tu poterea alteremente non cognoscer, con le adjuta de Pocket, ora parte de Mozilla.",
"highlights_empty_state": "Comencia navigar e nos te monstrara alcun del grande articulos, videos e altere paginas que tu ha recentemente visitate o addite marcapaginas hic.",
"topstories_empty_state": "Tu ja es in die con toto. Reveni plus tarde pro plus historias popular de {provider}. Non vole attender? Selectiona un subjecto popular pro trovar plus altere historias interessante del web.",
"manual_migration_explanation2": "Essaya Firefox con le marcapaginas, le chronologia e le contrasignos de un altere navigator.",
"manual_migration_cancel_button": "No, gratias",
"manual_migration_import_button": "Importar ora"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "id",
"strings": {
"newtab_page_title": "Tab Baru",
"default_label_loading": "Memuat…",
"header_top_sites": "Situs Teratas",
"header_stories": "Cerita Utama",
"header_highlights": "Sorotan",
"header_visit_again": "Kunjungi Lagi",
"header_bookmarks": "Markah Terbaru",
"header_recommended_by": "Disarankan oleh {provider}",
"header_bookmarks_placeholder": "Anda belum memiliki markah.",
"header_stories_from": "dari",
"type_label_visited": "Dikunjungi",
"type_label_bookmarked": "Dimarkahi",
"type_label_synced": "Disinkronkan dari perangkat lain",
"type_label_recommended": "Trending",
"type_label_open": "Buka",
"type_label_topic": "Topik",
"type_label_now": "Sekarang",
"menu_action_bookmark": "Markah",
"menu_action_remove_bookmark": "Hapus Markah",
"menu_action_copy_address": "Salin Alamat",
"menu_action_email_link": "Emailkan Tautan…",
"menu_action_open_new_window": "Buka di Jendela Baru",
"menu_action_open_private_window": "Buka di Jendela Penjelajahan Pribadi Baru",
"menu_action_dismiss": "Tutup",
"menu_action_delete": "Hapus dari Riwayat",
"menu_action_pin": "Semat",
"menu_action_unpin": "Lepas",
"confirm_history_delete_p1": "Yakin ingin menghapus setiap bagian dari laman ini dari riwayat Anda?",
"confirm_history_delete_notice_p2": "Tindakan ini tidak bisa diurungkan.",
"menu_action_save_to_pocket": "Simpan ke Pocket",
"search_for_something_with": "Cari {search_term} lewat:",
"search_button": "Cari",
"search_header": "Pencarian {search_engine_name}",
"search_web_placeholder": "Cari di Web",
"search_settings": "Ubah Pengaturan Pencarian",
"section_info_option": "Info",
"section_info_send_feedback": "Kirim Umpan Balik",
"section_info_privacy_notice": "Kebijakan Privasi",
"welcome_title": "Selamat datang di tab baru",
"welcome_body": "Firefox akan menggunakan ruang ini untuk menampilkan markah, artikel, video, dan laman yang baru-baru ini dikunjungi, yang paling relevan agar Anda bisa kembali mengunjunginya dengan mudah.",
"welcome_label": "Mengidentifikasi Sorotan Anda",
"time_label_less_than_minute": "<1 mnt",
"time_label_minute": "{number} mnt",
"time_label_hour": "{number} jam",
"time_label_day": "{number} hr",
"settings_pane_button_label": "Ubahsuai laman Tab Baru Anda",
"settings_pane_header": "Preferensi Tab Baru",
"settings_pane_body2": "Pilih apa yang Anda lihat di halaman ini.",
"settings_pane_search_header": "Pencarian",
"settings_pane_search_body": "Cari Web dari tab baru Anda.",
"settings_pane_topsites_header": "Situs Teratas",
"settings_pane_topsites_body": "Mengakses situs web yang paling sering Anda kunjungi.",
"settings_pane_topsites_options_showmore": "Tampilkan dua baris",
"settings_pane_bookmarks_header": "Markah Terbaru",
"settings_pane_bookmarks_body": "Markah Anda dibuat di lokasi yang praktis.",
"settings_pane_visit_again_header": "Kunjungi Lagi",
"settings_pane_visit_again_body": "Firefox akan menunjukkan bagian dari riwayat penjelajahan yang mungkin ingin Anda ingat atau kunjungi lagi.",
"settings_pane_highlights_header": "Sorotan",
"settings_pane_highlights_body2": "Temukan jalan kembali ke hal menarik yang baru saja Anda kunjungi atau dimarkah.",
"settings_pane_highlights_options_bookmarks": "Markah",
"settings_pane_highlights_options_visited": "Situs Terkunjungi",
"settings_pane_snippets_header": "Catatan Kecil",
"settings_pane_snippets_body": "Baca info pendek terbaru dari Mozilla tentang Firefox, budaya internet dan beberapa meme acak.",
"settings_pane_done_button": "Selesai",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Sunting",
"edit_topsites_button_label": "Ubahsuai bagian Situs Teratas Anda",
"edit_topsites_showmore_button": "Tampilkan lainnya",
"edit_topsites_showless_button": "Tampilkan lebih sedikit",
"edit_topsites_done_button": "Selesai",
"edit_topsites_pin_button": "Sematkan situs ini",
"edit_topsites_unpin_button": "Lepaskan situs ini",
"edit_topsites_edit_button": "Sunting situs ini",
"edit_topsites_dismiss_button": "Abaikan situs ini",
"edit_topsites_add_button": "Tambah",
"topsites_form_add_header": "Situs Pilihan Baru",
"topsites_form_edit_header": "Ubah Situs Pilihan",
"topsites_form_title_placeholder": "Masukkan judul",
"topsites_form_url_placeholder": "Ketik atau tempel URL",
"topsites_form_add_button": "Tambah",
"topsites_form_save_button": "Simpan",
"topsites_form_cancel_button": "Batalkan",
"topsites_form_url_validation": "URL valid diperlukan",
"pocket_read_more": "Topik Populer:",
"pocket_read_even_more": "Lihat Cerita Lainnya",
"pocket_feedback_header": "Yang terbaik dari Web, dikurasi lebih dari 25 juta orang.",
"pocket_description": "Temukan konten berkualitas tinggi yang mungkin Anda lewatkan dengan bantuan Pocket, yang sekarang menjadi bagian dari Mozilla.",
"highlights_empty_state": "Mulai menjelajah, dan kami akan menampilkan beberapa artikel bagus, video, dan halaman lain yang baru saja Anda kunjungi atau termarkah di sini.",
"topstories_empty_state": "Maaf Anda tercegat. Periksa lagi nanti untuk lebih banyak cerita terbaik dari {provider}. Tidak mau menunggu? Pilih topik populer untuk menemukan lebih banyak cerita hebat dari seluruh web.",
"manual_migration_explanation2": "Coba Firefox dengan markah, riwayat, dan sandi dari peramban lain.",
"manual_migration_cancel_button": "Tidak, Terima kasih",
"manual_migration_import_button": "Impor Sekarang"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

File diff suppressed because one or more lines are too long

View File

@ -1,36 +0,0 @@
<!doctype html>
<html lang="id" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy-Report-Only" content="script-src 'unsafe-inline'; img-src http: https: data: blob:; style-src 'unsafe-inline'; child-src 'none'; object-src 'none'; report-uri https://tiles.services.mozilla.com/v4/links/activity-stream/csp">
<title>Tab Baru</title>
<link rel="icon" type="image/png" id="favicon" href="chrome://branding/content/icon32.png"/>
<link rel="stylesheet" href="chrome://browser/content/contentSearchUI.css" />
<link rel="stylesheet" href="resource://activity-stream/data/content/activity-stream.css" />
</head>
<body class="activity-stream">
<div id="root"></div>
<div id="snippets-container">
<div id="snippets"></div>
</div>
<script>
// Don't directly load the following scripts as part of html to let the page
// finish loading to render the content sooner.
for (const src of [
"chrome://browser/content/contentSearchUI.js",
"resource://activity-stream/vendor/react.js",
"resource://activity-stream/vendor/react-dom.js",
"resource://activity-stream/vendor/react-intl.js",
"resource://activity-stream/vendor/redux.js",
"resource://activity-stream/vendor/react-redux.js",
"resource://activity-stream/data/content/activity-stream.bundle.js"
]) {
// These dynamically inserted scripts by default are async, but we need them
// to load in the desired order (i.e., bundle last).
const script = document.body.appendChild(document.createElement("script"));
script.async = false;
script.src = src;
}
</script>
</body>
</html>

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "it",
"strings": {
"newtab_page_title": "Nuova scheda",
"default_label_loading": "Caricamento…",
"header_top_sites": "Siti principali",
"header_stories": "Storie principali",
"header_highlights": "In evidenza",
"header_visit_again": "Visita di nuovo",
"header_bookmarks": "Segnalibri recenti",
"header_recommended_by": "Consigliato da {provider}",
"header_bookmarks_placeholder": "Non è ancora disponibile alcun segnalibro.",
"header_stories_from": "da",
"type_label_visited": "Visitato",
"type_label_bookmarked": "Nei segnalibri",
"type_label_synced": "Sincronizzato da un altro dispositivo",
"type_label_recommended": "Di tendenza",
"type_label_open": "Apri",
"type_label_topic": "Argomento",
"type_label_now": "Adesso",
"menu_action_bookmark": "Aggiungi ai segnalibri",
"menu_action_remove_bookmark": "Elimina segnalibro",
"menu_action_copy_address": "Copia indirizzo",
"menu_action_email_link": "Invia link per email…",
"menu_action_open_new_window": "Apri in una nuova finestra",
"menu_action_open_private_window": "Apri in una nuova finestra anonima",
"menu_action_dismiss": "Rimuovi",
"menu_action_delete": "Elimina dalla cronologia",
"menu_action_pin": "Aggiungi alla bacheca",
"menu_action_unpin": "Rimuovi dalla bacheca",
"confirm_history_delete_p1": "Eliminare tutte le occorrenze di questa pagina dalla cronologia?",
"confirm_history_delete_notice_p2": "Questa operazione non può essere annullata.",
"menu_action_save_to_pocket": "Salva in Pocket",
"search_for_something_with": "Cerca {search_term} con:",
"search_button": "Cerca",
"search_header": "Ricerca {search_engine_name}",
"search_web_placeholder": "Cerca sul Web",
"search_settings": "Cambia impostazioni di ricerca",
"section_info_option": "Info",
"section_info_send_feedback": "Invia feedback",
"section_info_privacy_notice": "Informativa sulla privacy",
"welcome_title": "Benvenuto nella nuova scheda",
"welcome_body": "Firefox utilizzerà questo spazio per visualizzare gli elementi più significativi, come segnalibri, articoli, video e pagine visitate di recente, in modo che siano sempre facili da raggiungere.",
"welcome_label": "Identificazione elementi in evidenza…",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}g",
"settings_pane_button_label": "Personalizza la pagina Nuova scheda",
"settings_pane_header": "Preferenze Nuova scheda",
"settings_pane_body2": "Scegli quali elementi visualizzare in questa pagina.",
"settings_pane_search_header": "Ricerca",
"settings_pane_search_body": "Avvia ricerche in una nuova scheda.",
"settings_pane_topsites_header": "Siti principali",
"settings_pane_topsites_body": "Accedi ai siti che visiti più spesso.",
"settings_pane_topsites_options_showmore": "Visualizza due righe",
"settings_pane_bookmarks_header": "Segnalibri recenti",
"settings_pane_bookmarks_body": "Tutti i segnalibri appena creati, facilmente accessibili.",
"settings_pane_visit_again_header": "Visita di nuovo",
"settings_pane_visit_again_body": "Firefox mostrerà alcuni elementi, estratti dalla cronologia di navigazione, che potresti voler visitare di nuovo.",
"settings_pane_highlights_header": "In evidenza",
"settings_pane_highlights_body2": "Ritrova pagine interessanti che avevi visitato o aggiunto ai segnalibri.",
"settings_pane_highlights_options_bookmarks": "Segnalibri",
"settings_pane_highlights_options_visited": "Siti visitati",
"settings_pane_snippets_header": "Snippet",
"settings_pane_snippets_body": "Brevi notizie direttamente da Mozilla a proposito di Firefox, Internet, senza dimenticare qualche meme di tanto in tanto.",
"settings_pane_done_button": "Fatto",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Modifica",
"edit_topsites_button_label": "Personalizza la sezione Siti principali",
"edit_topsites_showmore_button": "Visualizza altri",
"edit_topsites_showless_button": "Nascondi altri",
"edit_topsites_done_button": "Fatto",
"edit_topsites_pin_button": "Aggiungi sito alla bacheca",
"edit_topsites_unpin_button": "Rimuovi sito dalla bacheca",
"edit_topsites_edit_button": "Modifica questo sito",
"edit_topsites_dismiss_button": "Ignora questo sito",
"edit_topsites_add_button": "Aggiungi",
"topsites_form_add_header": "Nuovi sito principale",
"topsites_form_edit_header": "Modifica sito principale",
"topsites_form_title_placeholder": "Inserire un titolo",
"topsites_form_url_placeholder": "Digitare o incollare un URL",
"topsites_form_add_button": "Aggiungi",
"topsites_form_save_button": "Salva",
"topsites_form_cancel_button": "Annulla",
"topsites_form_url_validation": "È necessario fornire un URL valido",
"pocket_read_more": "Argomenti popolari:",
"pocket_read_even_more": "Visualizza altre storie",
"pocket_feedback_header": "Il meglio del web, selezionato da 25 milioni di persone.",
"pocket_description": "Grazie a Pocket, un componente della famiglia Mozilla, scopri contenuti di alta qualità che altrimenti potrebbero sfuggirti.",
"highlights_empty_state": "Inizia a navigare e, in questa sezione, verranno visualizzati articoli, video e altre pagine visitate di recente o aggiunte ai segnalibri.",
"topstories_empty_state": "Non c'è altro. Controlla più tardi per altre storie da {provider}. Non vuoi aspettare? Seleziona un argomento tra quelli più popolari per scoprire altre notizie interessanti dal Web.",
"manual_migration_explanation2": "Prova Firefox con i segnalibri, la cronologia e le password di un altro browser.",
"manual_migration_cancel_button": "No grazie",
"manual_migration_import_button": "Importa adesso"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ja-JP-mac",
"strings": {
"newtab_page_title": "新しいタブ",
"default_label_loading": "読み込み中...",
"header_top_sites": "トップサイト",
"header_stories": "トップ記事",
"header_highlights": "ハイライト",
"header_visit_again": "再度訪れる",
"header_bookmarks": "最近のブックマーク",
"header_recommended_by": "{provider} のおすすめ",
"header_bookmarks_placeholder": "まだブックマークがありません。",
"header_stories_from": "配信元",
"type_label_visited": "訪問済み",
"type_label_bookmarked": "ブックマーク済み",
"type_label_synced": "他の端末から同期",
"type_label_recommended": "話題の記事",
"type_label_open": "開く",
"type_label_topic": "トピック",
"type_label_now": "今",
"menu_action_bookmark": "ブックマーク",
"menu_action_remove_bookmark": "ブックマークを削除",
"menu_action_copy_address": "URL をコピー",
"menu_action_email_link": "URL をメールで送信...",
"menu_action_open_new_window": "新しいウィンドウで開く",
"menu_action_open_private_window": "新しいプライベートウィンドウで開く",
"menu_action_dismiss": "閉じる",
"menu_action_delete": "履歴から削除",
"menu_action_pin": "ピン留め",
"menu_action_unpin": "ピン留めを外す",
"confirm_history_delete_p1": "本当にこのページに関して保存されているあらゆる情報を履歴から削除しますか?",
"confirm_history_delete_notice_p2": "この操作は取り消せません。",
"menu_action_save_to_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": "プライバシー通知",
"welcome_title": "新しいタブへようこそ",
"welcome_body": "Firefox はこのスペースを使って、関連性の高いブックマーク、記事、動画、最近訪れたページを表示し、それらのコンテンツへ簡単に戻れるようにします。",
"welcome_label": "あなたのハイライトを確認しています",
"time_label_less_than_minute": "1 分以内",
"time_label_minute": "{number} 分",
"time_label_hour": "{number} 時間",
"time_label_day": "{number} 日",
"settings_pane_button_label": "新しいタブページをカスタマイズ",
"settings_pane_header": "新しいタブの設定",
"settings_pane_body2": "このページに表示する内容を選択してください。",
"settings_pane_search_header": "検索",
"settings_pane_search_body": "新しいタブからウェブを検索します。",
"settings_pane_topsites_header": "トップサイト",
"settings_pane_topsites_body": "よく訪れるサイトへアクセス。",
"settings_pane_topsites_options_showmore": "2 行で表示",
"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": "ブックマーク",
"settings_pane_highlights_options_visited": "訪れたサイト",
"settings_pane_snippets_header": "スニペット",
"settings_pane_snippets_body": "Firefox、インターネット文化、時々無作為にお届けする小ネタなど、簡潔で役立つ Mozilla からの最新情報を読んでください。",
"settings_pane_done_button": "完了",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "タイトルを入力",
"topsites_form_url_placeholder": "URL を入力するか貼り付け",
"topsites_form_add_button": "追加",
"topsites_form_save_button": "保存",
"topsites_form_cancel_button": "キャンセル",
"topsites_form_url_validation": "正しい URL を入力してください",
"pocket_read_more": "人気のトピック:",
"pocket_read_even_more": "他の記事を見る",
"pocket_feedback_header": "2,500 万人以上の人々によって収集されている、ウェブ上で最も優れたコンテンツ。",
"pocket_description": "Mozilla の一員となった Pocket の力を借りて、見逃してしまうかもしれない質の高い情報を見つけましょう。",
"highlights_empty_state": "ブラウジング中にあなたが最近訪れたりブックマークしたりした、優れた記事、動画、その他ページの一部をここに表示します。",
"topstories_empty_state": "すべて既読です。また後で戻って {provider} からのおすすめ記事をチェックしてください。もし待ちきれないなら、人気のトピックを選択すれば、他にもウェブ上の優れた記事を見つけられます。",
"manual_migration_explanation2": "他のブラウザーからブックマークや履歴、パスワードを取り込んで Firefox を使ってみましょう。",
"manual_migration_cancel_button": "今はしない",
"manual_migration_import_button": "今すぐインポート"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

File diff suppressed because one or more lines are too long

View File

@ -1,36 +0,0 @@
<!doctype html>
<html lang="ja-JP-mac" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy-Report-Only" content="script-src 'unsafe-inline'; img-src http: https: data: blob:; style-src 'unsafe-inline'; child-src 'none'; object-src 'none'; report-uri https://tiles.services.mozilla.com/v4/links/activity-stream/csp">
<title>新しいタブ</title>
<link rel="icon" type="image/png" id="favicon" href="chrome://branding/content/icon32.png"/>
<link rel="stylesheet" href="chrome://browser/content/contentSearchUI.css" />
<link rel="stylesheet" href="resource://activity-stream/data/content/activity-stream.css" />
</head>
<body class="activity-stream">
<div id="root"></div>
<div id="snippets-container">
<div id="snippets"></div>
</div>
<script>
// Don't directly load the following scripts as part of html to let the page
// finish loading to render the content sooner.
for (const src of [
"chrome://browser/content/contentSearchUI.js",
"resource://activity-stream/vendor/react.js",
"resource://activity-stream/vendor/react-dom.js",
"resource://activity-stream/vendor/react-intl.js",
"resource://activity-stream/vendor/redux.js",
"resource://activity-stream/vendor/react-redux.js",
"resource://activity-stream/data/content/activity-stream.bundle.js"
]) {
// These dynamically inserted scripts by default are async, but we need them
// to load in the desired order (i.e., bundle last).
const script = document.body.appendChild(document.createElement("script"));
script.async = false;
script.src = src;
}
</script>
</body>
</html>

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ja",
"strings": {
"newtab_page_title": "新しいタブ",
"default_label_loading": "読み込み中...",
"header_top_sites": "トップサイト",
"header_stories": "トップ記事",
"header_highlights": "ハイライト",
"header_visit_again": "再度訪れる",
"header_bookmarks": "最近のブックマーク",
"header_recommended_by": "{provider} のおすすめ",
"header_bookmarks_placeholder": "まだブックマークがありません。",
"header_stories_from": "配信元",
"type_label_visited": "訪問済み",
"type_label_bookmarked": "ブックマーク済み",
"type_label_synced": "他の端末から同期",
"type_label_recommended": "話題の記事",
"type_label_open": "開く",
"type_label_topic": "トピック",
"type_label_now": "今",
"menu_action_bookmark": "ブックマーク",
"menu_action_remove_bookmark": "ブックマークを削除",
"menu_action_copy_address": "URL をコピー",
"menu_action_email_link": "URL をメールで送信...",
"menu_action_open_new_window": "新しいウィンドウで開く",
"menu_action_open_private_window": "新しいプライベートウィンドウで開く",
"menu_action_dismiss": "閉じる",
"menu_action_delete": "履歴から削除",
"menu_action_pin": "ピン留め",
"menu_action_unpin": "ピン留めを外す",
"confirm_history_delete_p1": "本当にこのページに関して保存されているあらゆる情報を履歴から削除しますか?",
"confirm_history_delete_notice_p2": "この操作は取り消せません。",
"menu_action_save_to_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": "プライバシー通知",
"welcome_title": "新しいタブへようこそ",
"welcome_body": "Firefox はこのスペースを使って、関連性の高いブックマーク、記事、動画、最近訪れたページを表示し、それらのコンテンツへ簡単に戻れるようにします。",
"welcome_label": "あなたのハイライトを確認しています",
"time_label_less_than_minute": "1 分以内",
"time_label_minute": "{number} 分",
"time_label_hour": "{number} 時間",
"time_label_day": "{number} 日",
"settings_pane_button_label": "新しいタブページをカスタマイズ",
"settings_pane_header": "新しいタブの設定",
"settings_pane_body2": "このページに表示する内容を選択してください。",
"settings_pane_search_header": "検索",
"settings_pane_search_body": "新しいタブからウェブを検索します。",
"settings_pane_topsites_header": "トップサイト",
"settings_pane_topsites_body": "よく訪れるサイトへアクセス。",
"settings_pane_topsites_options_showmore": "2 行で表示",
"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": "ブックマーク",
"settings_pane_highlights_options_visited": "訪れたサイト",
"settings_pane_snippets_header": "スニペット",
"settings_pane_snippets_body": "Firefox、インターネット文化、時々無作為にお届けする小ネタなど、簡潔で役立つ Mozilla からの最新情報を読んでください。",
"settings_pane_done_button": "完了",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "タイトルを入力",
"topsites_form_url_placeholder": "URL を入力するか貼り付け",
"topsites_form_add_button": "追加",
"topsites_form_save_button": "保存",
"topsites_form_cancel_button": "キャンセル",
"topsites_form_url_validation": "正しい URL を入力してください",
"pocket_read_more": "人気のトピック:",
"pocket_read_even_more": "他の記事を見る",
"pocket_feedback_header": "2,500 万人以上の人々によって収集されている、ウェブ上で最も優れたコンテンツ。",
"pocket_description": "Mozilla の一員となった Pocket の力を借りて、見逃してしまうかもしれない質の高い情報を見つけましょう。",
"highlights_empty_state": "ブラウジング中にあなたが最近訪れたりブックマークしたりした、優れた記事、動画、その他ページの一部をここに表示します。",
"topstories_empty_state": "すべて既読です。また後で戻って {provider} からのおすすめ記事をチェックしてください。もし待ちきれないなら、人気のトピックを選択すれば、他にもウェブ上の優れた記事を見つけられます。",
"manual_migration_explanation2": "他のブラウザーからブックマークや履歴、パスワードを取り込んで Firefox を使ってみましょう。",
"manual_migration_cancel_button": "今はしない",
"manual_migration_import_button": "今すぐインポート"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ka",
"strings": {
"newtab_page_title": "ახალი ჩანართი",
"default_label_loading": "იტვირთება…",
"header_top_sites": "რჩეული საიტები",
"header_stories": "რჩეული სტატიები",
"header_highlights": "მნიშვნელოვანი საიტები",
"header_visit_again": "ხელახლა ნახვა",
"header_bookmarks": "ბოლოს ჩანიშნულები",
"header_recommended_by": "რეკომენდებულია {provider}-ის მიერ",
"header_bookmarks_placeholder": "სანიშნეები ჯერ არაა დამატებული.",
"header_stories_from": "-იდან",
"type_label_visited": "მონახულებული",
"type_label_bookmarked": "ჩანიშნული",
"type_label_synced": "სხვა მოწყობილობიდან დასინქრონებული",
"type_label_recommended": "პოპულარული",
"type_label_open": "გახსნა",
"type_label_topic": "თემა",
"type_label_now": "ახლა",
"menu_action_bookmark": "ჩანიშვნა",
"menu_action_remove_bookmark": "სანიშნეებიდან ამოღება",
"menu_action_copy_address": "მისამართის დაკოპირება",
"menu_action_email_link": "ბმულის გაგზავნა…",
"menu_action_open_new_window": "ახალ ფანჯარაში გახსნა",
"menu_action_open_private_window": "ახალ პირად ფანჯარაში გახსნა",
"menu_action_dismiss": "დახურვა",
"menu_action_delete": "ისტორიიდან ამოშლა",
"menu_action_pin": "მიმაგრება",
"menu_action_unpin": "მოხსნა",
"confirm_history_delete_p1": "ნამდვილად გსურთ, ამ გვერდის ყველა ჩანაწერის ისტორიიდან ამოშლა?",
"confirm_history_delete_notice_p2": "ეს ქმედება შეუქცევადია.",
"menu_action_save_to_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": "პირადი მონაცემების დაცვა",
"welcome_title": "მოგესალმებით ახალ ჩანართზე",
"welcome_body": "Firefox ამ სივრცეს გამოიყენებს თქვენთვის ყველაზე საჭირო სანიშნეების, სტატიების, ვიდეოებისა და ბოლოს მონახულებული გვერდებისთვის, რომ ადვილად შეძლოთ მათზე დაბრუნება.",
"welcome_label": "მნიშვნელოვანი საიტების დადგენა",
"time_label_less_than_minute": "<1წთ",
"time_label_minute": "{number}წთ",
"time_label_hour": "{number}სთ",
"time_label_day": "{number}დღე",
"settings_pane_button_label": "მოირგეთ ახალი ჩანართის გვერდი",
"settings_pane_header": "ახალი ჩანართის პარამეტრები",
"settings_pane_body2": "მიუთითეთ, რისი ხილვა გსურთ ამ გვერდზე.",
"settings_pane_search_header": "ძიება",
"settings_pane_search_body": "ძიება ინტერნეტში ახალი ჩანართიდან.",
"settings_pane_topsites_header": "რჩეული საიტები",
"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": "სანიშნეები",
"settings_pane_highlights_options_visited": "მონახულებული საიტები",
"settings_pane_snippets_header": "ცნობები",
"settings_pane_snippets_body": "გაეცანით მოკლე, საინტერესო სიახლეებს Mozilla-სგან, Firefox-ის, ინტერნეტ სამყაროს მიღწევებისა და სხვა დასამახსოვრებელი ფაქტების შესახებ.",
"settings_pane_done_button": "მზადაა",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "სათაურის შეყვანა",
"topsites_form_url_placeholder": "აკრიფეთ ან ჩასვით URL",
"topsites_form_add_button": "დამატება",
"topsites_form_save_button": "შენახვა",
"topsites_form_cancel_button": "გაუქმება",
"topsites_form_url_validation": "საჭიროა მართებული URL",
"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": "ახლავე გადმოტანა"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "kab",
"strings": {
"newtab_page_title": "Iccer amaynut",
"default_label_loading": "Asali…",
"header_top_sites": "Ismal ifazen",
"header_stories": "Tiqsiɣin ifazen",
"header_highlights": "Asebrureq",
"header_visit_again": "Rzu tikelt-nniḍen",
"header_bookmarks": "Ticraḍ n melmi kan",
"header_recommended_by": "Iwelleh-it-id {provider}",
"header_bookmarks_placeholder": "Ur ɣur-k ara ticraḍ yakan.",
"header_stories_from": "seg",
"type_label_visited": "Yettwarza",
"type_label_bookmarked": "Yettwacreḍ",
"type_label_synced": "Yemtawi seg ibenk-nniḍen",
"type_label_recommended": "Tiddin",
"type_label_open": "Yeldi",
"type_label_topic": "Asentel",
"type_label_now": "Tura",
"menu_action_bookmark": "Creḍ asebter-agi",
"menu_action_remove_bookmark": "Kkes tacreṭ-agi",
"menu_action_copy_address": "Nγel tansa",
"menu_action_email_link": "Azen aseγwen s yimayl…",
"menu_action_open_new_window": "Ldei deg usfaylu amaynut",
"menu_action_open_private_window": "Ldi deg usfaylu uslig amaynut",
"menu_action_dismiss": "Kkes",
"menu_action_delete": "Kkes seg umazray",
"menu_action_pin": "Senteḍ",
"menu_action_unpin": "Serreḥ",
"confirm_history_delete_p1": "Tebɣiḍ ad tekksed yal tummant n usebter-agi seg umazray-ik?",
"confirm_history_delete_notice_p2": "Tigawt-agi ur tettuɣal ara ar deffir.",
"menu_action_save_to_pocket": "Sekles ɣer Pocket",
"search_for_something_with": "Nadi γef {search_term} s:",
"search_button": "Nadi",
"search_header": "Anadi {search_engine_name}",
"search_web_placeholder": "Nadi di Web",
"search_settings": "Snifel iγewwaṛen n unadi",
"section_info_option": "Talɣut",
"section_info_send_feedback": "Azen tikti",
"section_info_privacy_notice": "Tasertit n tbaḍnit",
"welcome_title": "Ansuf ar yiccer amaynut",
"welcome_body": "Firefox ad iseqdec tallunt akken ad d-yesken akk ticraḍ n isebtar iwulmen, imagraden, tividyutin, akked isebtar aniɣer terziḍ melmi kan, ihi tzemreḍ ad d-uɣaleḍ ɣer-sen s wudem fessusen.",
"welcome_label": "Asulu n iferdisen tisura",
"time_label_less_than_minute": "<1 n tesdat",
"time_label_minute": "{number} n tesdatin",
"time_label_hour": "{number} n isragen",
"time_label_day": "{number}n wussan",
"settings_pane_button_label": "Sagen asebter n yiccer-ik amaynut",
"settings_pane_header": "Ismenyifen n yiccer amaynut",
"settings_pane_body2": "Fren ayen ad twaliḍ deg usebter-agi.",
"settings_pane_search_header": "Nadi",
"settings_pane_search_body": "Nadi di Web seg iccer-ik amaynut.",
"settings_pane_topsites_header": "Ismal ifazen",
"settings_pane_topsites_body": "Kcem ar yesmal web i trezzuḍ s waṭas.",
"settings_pane_topsites_options_showmore": "Sken sin izirigen",
"settings_pane_bookmarks_header": "Ticraḍ n melmi kan",
"settings_pane_bookmarks_body": "Ticraḍ yettwarnan melmi kan deg iwen n umdiq ɣef afus.",
"settings_pane_visit_again_header": "Rzu tikelt-nniḍen",
"settings_pane_visit_again_body": "Firefox ad d-yesken tukkist n umazray-ik n tunigin i tzemreḍ ad twalid tikelt-nniḍen.",
"settings_pane_highlights_header": "Asebrureq",
"settings_pane_highlights_body2": "Aff abrid-ik γer wayen i tḥemmleḍ i γef terziḍ yakan neγ tcerḍeḍ-t.",
"settings_pane_highlights_options_bookmarks": "Ticraḍ n isebtar",
"settings_pane_highlights_options_visited": "Ismal yettwarzan",
"settings_pane_snippets_header": "Tiwzillin",
"settings_pane_snippets_body": "Wali issalen n Mozilla γef Firefox, adlis internet, akked issalen nniṣen sya γer da.",
"settings_pane_done_button": "Immed",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Ẓreg",
"edit_topsites_button_label": "Sagen tigezmi n ismal ifazen",
"edit_topsites_showmore_button": "Sken ugar",
"edit_topsites_showless_button": "Sken qel",
"edit_topsites_done_button": "Immed",
"edit_topsites_pin_button": "Ṭṭef asmel-agi",
"edit_topsites_unpin_button": "Serreḥ asmel-agi",
"edit_topsites_edit_button": "Ẓreg asmel-agi",
"edit_topsites_dismiss_button": "Anef i usmel-agi",
"edit_topsites_add_button": "Rnu",
"topsites_form_add_header": "Asmel ifazen amaynut",
"topsites_form_edit_header": "Ẓreg asmel ifazen",
"topsites_form_title_placeholder": "Sekcem azwel",
"topsites_form_url_placeholder": "Aru neɣ sekcem tansa URL",
"topsites_form_add_button": "Rnu",
"topsites_form_save_button": "Sekles",
"topsites_form_cancel_button": "Sefsex",
"topsites_form_url_validation": "Tansa URL tameɣtut tettwasra",
"pocket_read_more": "Isental ittwasnen aṭas:",
"pocket_read_even_more": "Wali ugar n teqsiḍin",
"pocket_feedback_header": "D amezwaru n Web, ittwafren sγur ugar 25 imelyan n imdanen.",
"pocket_description": "S lmendad n Pocket n Mozillan wali aqbur ifazen aṭas, s ttawil-a werǧin ad tzegleḍ taγawsa.",
"highlights_empty_state": "Bdu tuniginn sakin nekkni ad k-n-sken imagraden, tividyutin, akked isebtar nniḍen i γef terziḍ yakan neγ i tceṛḍeḍ dagi.",
"topstories_empty_state": "Ulac wiyaḍ. Uɣal-d ticki s wugar n imagraden seg {provider}. Ur tebɣiḍ ara ad terǧuḍ? Fren asentel seg wid yettwasnen akken ad twaliḍ imagraden yelhan di Web.",
"manual_migration_explanation2": "Σreḍ Firefox s ticṛaḍ n isebtar, amazray akked awalen uffiren sγur ilinigen nniḍen.",
"manual_migration_cancel_button": "Ala, tanemmirt",
"manual_migration_import_button": "Kter tura"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "kk",
"strings": {
"newtab_page_title": "Жаңа бет",
"default_label_loading": "Жүктелуде…",
"header_top_sites": "Үздік сайттар",
"header_stories": "Үздік хикаялар",
"header_highlights": "Ерекше жаңалықтар",
"header_visit_again": "Қайтадан шолу",
"header_bookmarks": "Соңғы бетбелгілер",
"header_recommended_by": "Ұсынушы {provider}",
"header_bookmarks_placeholder": "Сізде әлі бетбелгілер жоқ.",
"header_stories_from": "ұсынған",
"type_label_visited": "Қаралған",
"type_label_bookmarked": "Бетбелгілерде",
"type_label_synced": "Басқа құрылғыдан синхрондалған",
"type_label_recommended": "Әйгілі",
"type_label_open": "Ашу",
"type_label_topic": "Тақырып",
"type_label_now": "Қазір",
"menu_action_bookmark": "Бетбелгілерге қосу",
"menu_action_remove_bookmark": "Бетбелгіні өшіру",
"menu_action_copy_address": "Адресін көшіріп алу",
"menu_action_email_link": "Сілтемені эл. поштамен жіберу…",
"menu_action_open_new_window": "Жаңа терезеде ашу",
"menu_action_open_private_window": "Жаңа жекелік терезесінде ашу",
"menu_action_dismiss": "Тайдыру",
"menu_action_delete": "Тарихтан өшіру",
"menu_action_pin": "Бекіту",
"menu_action_unpin": "Бекітуді алып тастау",
"confirm_history_delete_p1": "Бұл парақтың барлық кездесулерін шолу тарихыңыздан өшіруді қалайсыз ба?",
"confirm_history_delete_notice_p2": "Бұл әрекетті болдырмау мүмкін болмайды.",
"menu_action_save_to_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": "Жекелік ескертуі",
"welcome_title": "Жаңа бетке қош келдіңіз",
"welcome_body": "Firefox бұл орында ең маңызды бетбелгілер, мақалалар, видеолар және жуырда қаралған беттерді көрсетеді, оның көмегімен сіз оларға оңай түрде орала аласыз.",
"welcome_label": "Ең басты нәрселерді анықтау",
"time_label_less_than_minute": "<1 минут",
"time_label_minute": "{number} минут",
"time_label_hour": "{number} сағат",
"time_label_day": "{number} күн",
"settings_pane_button_label": "Жаңа бетті баптаңыз",
"settings_pane_header": "Жаңа бет баптаулары",
"settings_pane_body2": "Бұл бетте не көргіңіз келетінді таңдаңыз.",
"settings_pane_search_header": "Іздеу",
"settings_pane_search_body": "Жаңа беттен интернеттен іздеңіз.",
"settings_pane_topsites_header": "Үздік сайттар",
"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": "Бетбелгілер",
"settings_pane_highlights_options_visited": "Ашылған сайттар",
"settings_pane_snippets_header": "Үзінділер",
"settings_pane_snippets_body": "Mozilla ұсынған Firefox және интернет мәдениеті туралы қысқа жаңалықтарды, және кездейсоқ мемдерді оқыңыз.",
"settings_pane_done_button": "Дайын",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Атауын енгізіңіз",
"topsites_form_url_placeholder": "Сілтемені теріңіз немесе кірістіріңіз",
"topsites_form_add_button": "Қосу",
"topsites_form_save_button": "Сақтау",
"topsites_form_cancel_button": "Бас тарту",
"topsites_form_url_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": "Қазір импорттау"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "km",
"strings": {
"newtab_page_title": "ផ្ទាំង​ថ្មី",
"default_label_loading": "កំពុង​ផ្ទុក...",
"header_top_sites": "វិបសាយ​លើ​គេ",
"header_stories": "Top Stories",
"header_highlights": "ការ​រំលេច",
"header_visit_again": "Visit Again",
"header_bookmarks": "Recent Bookmarks",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "You dont have any bookmarks yet.",
"header_stories_from": "from",
"type_label_visited": "បាន​ចូល​មើល",
"type_label_bookmarked": "បាន​ចំណាំ",
"type_label_synced": "បាន​ធ្វើ​សមកាលកម្ម​ពី​ឧបករណ៍​ផ្សេង​ទៀត",
"type_label_recommended": "Trending",
"type_label_open": "បើក",
"type_label_topic": "ប្រធានបទ",
"type_label_now": "Now",
"menu_action_bookmark": "ចំណាំ",
"menu_action_remove_bookmark": "លុប​ចំណាំ​ចេញ",
"menu_action_copy_address": "ចម្លង​អាសយដ្ឋាន",
"menu_action_email_link": "តំណ​អ៊ីមែល...",
"menu_action_open_new_window": "បើក​នៅ​ក្នុង​បង្អួច​ថ្មី",
"menu_action_open_private_window": "បើក​នៅ​ក្នុង​បង្អួច​ឯកជន​ថ្មី",
"menu_action_dismiss": "បោះបង់ចោល",
"menu_action_delete": "លុប​ពី​ប្រវត្តិ",
"menu_action_pin": "Pin",
"menu_action_unpin": "Unpin",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "This action cannot be undone.",
"menu_action_save_to_pocket": "Save to Pocket",
"search_for_something_with": "ស្វែងរក {search_term} ជាមួយ៖",
"search_button": "Search",
"search_header": "{search_engine_name} ស្វែងរក",
"search_web_placeholder": "ស្វែងរក​បណ្ដាញ",
"search_settings": "ផ្លាស់ប្ដូរ​ការ​កំណត់​ស្វែងរក",
"section_info_option": "Info",
"section_info_send_feedback": "Send Feedback",
"section_info_privacy_notice": "Privacy Notice",
"welcome_title": "ស្វាគមន៍​មក​កាន់​ផ្ទាំង​ថ្មី",
"welcome_body": "Firefox នឹង​ប្រើប្រាស់​កន្លែង​ទំនេរ​នេះ ដើម្បី​បង្ហាញ​ចំណាំ អត្ថបទ វីដេអូ និង​ទំព័រ​ដែល​ទាក់ទង​អ្នក​បំផុត ដែល​អ្នក​បាន​ចូល​មើល​ថ្មីៗ​នេះ ដូច្នេះ​អ្នក​អាច​ត្រឡប់​ទៅ​​កាន់​​វា​​វិញ​បាន​យ៉ាងងាយស្រួល។",
"welcome_label": "កំពុង​បញ្ជាក់​ការ​រំលេច​របស់​អ្នក",
"time_label_less_than_minute": "<1 នាទី",
"time_label_minute": "{number} នាទី",
"time_label_hour": "{number} ម៉ោង",
"time_label_day": "{number} ថ្ងៃ",
"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.",
"settings_pane_search_header": "Search",
"settings_pane_search_body": "Search the Web from your new tab.",
"settings_pane_topsites_header": "Top Sites",
"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 youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"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_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Add",
"topsites_form_save_button": "Save",
"topsites_form_cancel_button": "Cancel",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "kn",
"strings": {
"newtab_page_title": "ಹೊಸ ಹಾಳೆ",
"default_label_loading": "ಲೋಡ್ ಆಗುತ್ತಿದೆ…",
"header_top_sites": "ಪ್ರಮುಖ ತಾಣಗಳು",
"header_stories": "ಪ್ರಮುಖ ಸುದ್ದಿಗಳು",
"header_highlights": "ಮುಖ್ಯಾಂಶಗಳು",
"header_visit_again": "ಮತ್ತೆ ಭೇಟಿಕೊಡು",
"header_bookmarks": "ಇತ್ತೀಚಿಗೆ ಮಾಡಲಾದ ಬುಕ್‌ಮಾರ್ಕುಗಳು",
"header_recommended_by": "{provider} ರಿಂದ ಶಿಫಾರಸುಮಾಡುಲಾಗಿದೆ",
"header_bookmarks_placeholder": "ನಿಮ್ಮ ಹತ್ತಿರ ಇನ್ನೂ ಯಾವುದೇ ಪುಟಗುರುತುಗಳಿಲ್ಲ.",
"header_stories_from": "ಯಿಂದ",
"type_label_visited": "ಭೇಟಿ ನೀಡಲಾದ‍",
"type_label_bookmarked": "ಪುಟಗುರುತು ಮಾಡಲಾದ",
"type_label_synced": "ಮತ್ತೊಂದು ಸಾಧನದಿಂದ ಸಿಂಕ್ ಮಾಡಲಾಗಿದೆ",
"type_label_recommended": "ಪ್ರಚಲಿತ",
"type_label_open": "ತೆರೆ",
"type_label_topic": "ವಿಷಯ",
"type_label_now": "ಈಗ",
"menu_action_bookmark": "ಪುಟ ಗುರುತು",
"menu_action_remove_bookmark": "ಪುಟ ಗುರುತು ತೆಗೆ",
"menu_action_copy_address": "ವಿಳಾಸವನ್ನು ನಕಲಿಸು",
"menu_action_email_link": "ಇಮೈಲ್ ಕೊಂಡಿ…",
"menu_action_open_new_window": "ಹೊಸ ಕಿಟಕಿಯಲ್ಲಿ ತೆರೆ",
"menu_action_open_private_window": "ಹೊಸ ಖಾಸಗಿ ಕಿಟಕಿಯಲ್ಲಿ ತೆರೆ",
"menu_action_dismiss": "ವಜಾಗೊಳಿಸು‍",
"menu_action_delete": "ಇತಿಹಾಸದಿಂದ ಅಳಿಸು‍",
"menu_action_pin": "ಪಿನ್",
"menu_action_unpin": "ಅನ್‌ಪಿನ್",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "ಈ ಕಾರ್ಯವನ್ನು ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ.",
"menu_action_save_to_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": "ಗೌಪ್ಯತಾ ಸೂಚನೆ",
"welcome_title": "ಹೊಸ ಹಾಳೆಗೆ ಸುಸ್ವಾಗತ",
"welcome_body": "Firefox will use this space to show your most relevant bookmarks, articles, videos, and pages youve recently visited, so you can get back to them easily.",
"welcome_label": "Identifying your Highlights",
"time_label_less_than_minute": "<1ನಿ",
"time_label_minute": "{number}ನಿ",
"time_label_hour": "{number}ಗ",
"time_label_day": "{number}ದಿ",
"settings_pane_button_label": "ಹೊಸ ಹಾಳೆಯ ಪುಟವನ್ನು ಅಗತ್ಯಾನುಗುಣಗೊಳಿಸಿ",
"settings_pane_header": "ಹೊಸ ಹಾಳೆಯ ಆದ್ಯತೆಗಳು",
"settings_pane_body2": "ನೀವು ಈ ಪುಟದಲ್ಲಿ ಏನು ನೋಡಿತ್ತೀರೆಂದು ಆಯ್ಕೆಮಾಡಿ.",
"settings_pane_search_header": "ಹುಡುಕು",
"settings_pane_search_body": "ಹೊಸ ಹಾಳೆಯಿಂದ ಅಂತರ್ಜಾಲವನ್ನು ಹುಡುಕಿ.",
"settings_pane_topsites_header": "ಪ್ರಮುಖ ತಾಣಗಳು",
"settings_pane_topsites_body": "ನೀವು ಅತಿ ಹೆಚ್ಚು ನೋಡುವ ಜಾಲತಾಣಗಳಿಗೆ ಪ್ರವೇಶದ್ವಾರ.",
"settings_pane_topsites_options_showmore": "ಎರಡು ಸಾಲುಗಳನ್ನು ಪ್ರದರ್ಶಿಸು",
"settings_pane_bookmarks_header": "ಇತ್ತೀಚಿನ ಪುಟಗುರುತುಗಳು",
"settings_pane_bookmarks_body": "Your newly created bookmarks in one handy location.",
"settings_pane_visit_again_header": "ಮತ್ತೆ ಭೇಟಿಕೊಡು",
"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": "ಮುಖ್ಯಾಂಶಗಳು",
"settings_pane_highlights_body2": "Find your way back to interesting things youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "ಪುಟಗುರುತುಗಳು",
"settings_pane_highlights_options_visited": "ಭೇಟಿ ನೀಡಿದ ತಾಣಗಳು",
"settings_pane_snippets_header": "ಉಲ್ಲೇಖಗಳು",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "ಆಯಿತು",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "‍ತಿದ್ದು",
"edit_topsites_button_label": "Customize your Top Sites section",
"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_placeholder": "ಶೀರ್ಷಿಕೆಯನ್ನು ನಮೂದಿಸಿ",
"topsites_form_url_placeholder": "ಒಂದು URL ಅನ್ನು ಟೈಪಿಸಿ ಅಥವಾ ನಕಲಿಸಿ",
"topsites_form_add_button": "ಸೇರಿಸು",
"topsites_form_save_button": "ಉಳಿಸು",
"topsites_form_cancel_button": "ರದ್ದು ಮಾಡು",
"topsites_form_url_validation": "ಸರಿಯಾದ URL ಬೇಕಾಗಿದೆ",
"pocket_read_more": "ಜನಪ್ರಿಯವಾದ ವಿಷಯಗಳು:",
"pocket_read_even_more": "ಹೆಚ್ಚು ಕತೆಗಳನ್ನು ನೋಡಿರಿ",
"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": "ವೀಕ್ಷಣೆ ಮಾಡಲು ಶುರುಮಾಡಿ, ಮತ್ತು ನಾವು ಇತ್ತೀಚೆಗೆ ಭೇಟಿ ನೀಡಿದ ಅಥವಾ ಬುಕ್‌ಮಾರ್ಕ್ ಮಾಡಲಾದ ಕೆಲವು ಶ್ರೇಷ್ಠ ಲೇಖನಗಳು, ವೀಡಿಯೊಗಳು ಮತ್ತು ಇತರ ಪುಟಗಳನ್ನು ನಾವು ತೋರಿಸುತ್ತೇವೆ.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "ಪರವಾಗಿಲ್ಲ",
"manual_migration_import_button": "ಈಗ ಆಮದು ಮಾಡು"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,162 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "ko",
"strings": {
"newtab_page_title": "새 탭",
"default_label_loading": "읽는 중…",
"header_top_sites": "상위 사이트",
"header_stories": "상위 이야기",
"header_highlights": "하이라이트",
"header_visit_again": "다시 방문",
"header_bookmarks": "최근 북마크",
"header_recommended_by": "{provider} 추천",
"header_bookmarks_placeholder": "북마크가 없습니다.",
"header_stories_from": "출처",
"type_label_visited": "방문한 사이트",
"type_label_bookmarked": "즐겨찾기",
"type_label_synced": "다른 기기에서 동기화",
"type_label_recommended": "트랜드",
"type_label_open": "열기",
"type_label_topic": "주제",
"type_label_now": "지금",
"menu_action_bookmark": "즐겨찾기",
"menu_action_remove_bookmark": "즐겨찾기 삭제",
"menu_action_copy_address": "주소 복사",
"menu_action_email_link": "메일로 링크 보내기…",
"menu_action_open_new_window": "새 창에서 열기",
"menu_action_open_private_window": "새 사생활 보호 창에서 열기",
"menu_action_dismiss": "닫기",
"menu_action_delete": "방문 기록에서 삭제",
"menu_action_pin": "고정",
"menu_action_unpin": "고정 해제",
"confirm_history_delete_p1": "정말 이 페이지의 모든 인스턴스를 기록에서 지우겠습니까?",
"confirm_history_delete_notice_p2": "이 작업은 되돌릴 수 없습니다.",
"menu_action_save_to_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": "개인 정보 보호 정책",
"welcome_title": "새 탭을 소개합니다",
"welcome_body": "최근에 방문한 관련있는 즐겨찾기나 글, 동영상, 페이지를 Firefox가 여기에 표시해서 쉽게 다시 찾아볼 수 있게 할 것입니다.",
"welcome_label": "하이라이트 확인",
"time_label_less_than_minute": "<1분",
"time_label_minute": "{number}분",
"time_label_hour": "{number}시",
"time_label_day": "{number}일",
"settings_pane_button_label": "새 탭 페이지 꾸미기",
"settings_pane_header": "새 탭 설정",
"settings_pane_body2": "이 페이지에서 볼 것을 선택하세요.",
"settings_pane_search_header": "검색",
"settings_pane_search_body": "새 탭에서 웹을 검색하세요.",
"settings_pane_topsites_header": "상위 사이트",
"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 will show you parts of your browsing history that you might want to remember or get back to.",
"settings_pane_highlights_header": "하이라이트",
"settings_pane_highlights_body2": "Find your way back to interesting things youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "완료",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "제목 입력",
"topsites_form_url_placeholder": "URL 입력 또는 붙여 넣기",
"topsites_form_add_button": "추가",
"topsites_form_save_button": "저장",
"topsites_form_cancel_button": "취소",
"topsites_form_url_validation": "유효한 URL이 필요합니다",
"pocket_read_more": "인기 주제:",
"pocket_read_even_more": "더 많은 이야기 보기",
"pocket_feedback_header": "2천 5백만 명에 의해 추천되는 최고의 웹입니다.",
"pocket_description": "Mozilla와 하나가 된 Pocket의 도움으로 놓칠지도 모르는 고품질의 컨텐츠를 접해보세요.",
"highlights_empty_state": "Start browsing, and well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "다른 브라우저에 있는 북마크, 기록, 비밀번호를 사용해 Firefox를 이용해 보세요.",
"manual_migration_cancel_button": "괜찮습니다",
"manual_migration_import_button": "지금 가져오기"
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,164 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "lij",
"strings": {
"newtab_page_title": "Neuvo Feuggio",
"default_label_loading": "Carego…",
"header_top_sites": "I megio sciti",
"header_stories": "Top Stories",
"header_highlights": "In evidensa",
"header_visit_again": "Visit Again",
"header_bookmarks": "Recent Bookmarks",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "You dont have any bookmarks yet.",
"header_stories_from": "from",
"type_label_visited": "Vixitou",
"type_label_bookmarked": "Azonto a-i segnalibbri",
"type_label_synced": "Scincronizou da 'n atro dispoxitivo",
"type_label_recommended": "Trending",
"type_label_open": "Arvi",
"type_label_topic": "Argomento",
"type_label_now": "Now",
"menu_action_bookmark": "Azonzi a-i segnalibbri",
"menu_action_remove_bookmark": "Scancella segnalibbro",
"menu_action_copy_address": "Còpia indirisso",
"menu_action_email_link": "Manda colegamento…",
"menu_action_open_new_window": "Arvi in neuvo barcon",
"menu_action_open_private_window": "Arvi in neuvo barcon privou",
"menu_action_dismiss": "Scancella",
"menu_action_delete": "Scancella da-a stöia",
"menu_action_pin": "Pin",
"menu_action_unpin": "Unpin",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "This action cannot be undone.",
"menu_action_save_to_pocket": "Save to Pocket",
"search_for_something_with": "Çerca {search_term} con:",
"search_button": "Çerca",
"search_header": "Riçerca {search_engine_name}",
"search_web_placeholder": "Çerca inta Ræ",
"search_settings": "Cangia inpostaçioin de riçerca",
"section_info_option": "Info",
"section_info_send_feedback": "Send Feedback",
"section_info_privacy_notice": "Privacy Notice",
"welcome_title": "Benvegnuo into neuvo feuggio",
"welcome_body": "Firefox o deuviâ sto spaçio pe mostrâ i elementi ciù scignificativi, comme segnalibbri, articoli, video e pagine vixitatæ da pöco in sa, in mòddo che segian de longo ciù façili da razonze.",
"welcome_label": "Identificaçion elementi in evidensa",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"settings_pane_button_label": "Personalizza a teu pagina Neuvo feuggio",
"settings_pane_header": "Preferense neuvo feuggio",
"settings_pane_body2": "Choose what you see on this page.",
"settings_pane_search_header": "Çerca",
"settings_pane_search_body": "Çerca inta Ræ da-o teu neuvo feuggio.",
"settings_pane_topsites_header": "I megio sciti",
"settings_pane_topsites_body": "Acedi a-i sciti che ti vixiti ciù de spesso.",
"settings_pane_topsites_options_showmore": "Fanni vedde doe righe",
"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": "In evidensa",
"settings_pane_highlights_body2": "Find your way back to interesting things youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "Fæto",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "Cangia",
"edit_topsites_button_label": "Personalizza a seçion I Megio Sciti",
"edit_topsites_showmore_button": "Fanni vedde de ciù",
"edit_topsites_showless_button": "Fanni vedde de meno",
"edit_topsites_done_button": "Fæto",
"edit_topsites_pin_button": "Azonzi sto scito",
"edit_topsites_unpin_button": "Unpin this site",
"edit_topsites_edit_button": "Cangia sto scito",
"edit_topsites_dismiss_button": "Ignòra sto scito",
"edit_topsites_add_button": "Add",
"topsites_form_add_header": "New Top Site",
"topsites_form_edit_header": "Edit Top Site",
"topsites_form_title_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Add",
"topsites_form_save_button": "Save",
"topsites_form_cancel_button": "Cancel",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now",
"settings_pane_body": "Çerni cöse ti veu vedde quande t'arvi 'n neuvo feuggio.",
"settings_pane_highlights_body": "Veddi i elementi ciù neuvi inta stöia e i urtimi segnalibbri creæ."
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -1,164 +0,0 @@
// Note - this is a generated file.
window.gActivityStreamPrerenderedState = {
"TopSites": {
"initialized": false,
"rows": [],
"editForm": {
"visible": false,
"site": null
}
},
"App": {
"initialized": false,
"locale": "lo",
"strings": {
"newtab_page_title": "ແທັບໃຫມ່",
"default_label_loading": "ກຳລັງໂຫລດ…",
"header_top_sites": "ເວັບໄຊຕ໌ຍອດນິຍົມ",
"header_stories": "Top Stories",
"header_highlights": "ຈຸດເດັ່ນ",
"header_visit_again": "Visit Again",
"header_bookmarks": "Recent Bookmarks",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "You dont have any bookmarks yet.",
"header_stories_from": "from",
"type_label_visited": "ເຂົ້າໄປເບິງມາແລ້ວ",
"type_label_bookmarked": "ບຸກມາກໄວ້ແລ້ວ",
"type_label_synced": "ໄດ້ Sync ມາຈາກອຸປະກອນອື່ນ",
"type_label_recommended": "Trending",
"type_label_open": "ເປີດ",
"type_label_topic": "ຫົວ​ຂໍ້",
"type_label_now": "Now",
"menu_action_bookmark": "ບຸກມາກ",
"menu_action_remove_bookmark": "ລຶບບຸກມາກອອກ",
"menu_action_copy_address": "ສຳເນົາທີ່ຢູ່",
"menu_action_email_link": "ລີ້ງອີເມວ…",
"menu_action_open_new_window": "ເປີດລີ້ງໃນຫນ້າຕ່າງໃຫມ່",
"menu_action_open_private_window": "ເປີດໃນຫນ້າຕ່າງສ່ວນຕົວໃຫມ່",
"menu_action_dismiss": "ຍົກເລີກ",
"menu_action_delete": "ລຶບອອກຈາກປະຫວັດການນຳໃຊ້",
"menu_action_pin": "Pin",
"menu_action_unpin": "Unpin",
"confirm_history_delete_p1": "Are you sure you want to delete every instance of this page from your history?",
"confirm_history_delete_notice_p2": "This action cannot be undone.",
"menu_action_save_to_pocket": "Save to Pocket",
"search_for_something_with": "ຄົ້ນຫາສໍາລັບ {search_term} ດ້ວຍ:",
"search_button": "ຊອກ​ຫາ",
"search_header": "ຄົ້ນຫາ {search_engine_name}",
"search_web_placeholder": "ຄົ້ນຫາເວັບ",
"search_settings": "ປ່ຽນການຕັ້ງຄ່າການຄົ້ນຫາ",
"section_info_option": "Info",
"section_info_send_feedback": "Send Feedback",
"section_info_privacy_notice": "Privacy Notice",
"welcome_title": "ຍິນດີຕອນຮັບເຂົ້າສູ່ແຖບໃຫມ່",
"welcome_body": "Firefox ຈະໃຊ້ພື້ນທີ່ນີ້ເພື່ອສະແດງໃຫ້ເຫັນບຸກມາກທີ່ກ່ຽວຂ້ອງທີ່ສຸດຂອງທ່ານ, ບົດຄວາມ, ວິດີໂອ, ແລະ ຫນ້າທີ່ທ່ານຫາກາໄດ້ເຂົ້າໄປເບິງ, ສະນັ້ນທ່ານຈຶ່ງສາມາດກັບໄປເບິງຄືນອີກໄດ້ຢ່າງງ່າຍດາຍ.",
"welcome_label": "ກໍາລັງລະບຸລາຍການເດັ່ນຂອງທ່ານ",
"time_label_less_than_minute": "<1 ນາທີ",
"time_label_minute": "{number} ນາທີ",
"time_label_hour": "{number} ຊົ່ວໂມງ",
"time_label_day": "{number} ມື້",
"settings_pane_button_label": "ປັບແຕ່ງຫນ້າແທັບໃຫມ່ຂອງທ່ານ",
"settings_pane_header": "ການຕັ້ງຄ່າແທັບໃຫມ່",
"settings_pane_body2": "Choose what you see on this page.",
"settings_pane_search_header": "ຊອກຫາ",
"settings_pane_search_body": "ຊອກຫາເວັບຈາກແທັບໃຫມ່ຂອງທ່ານ.",
"settings_pane_topsites_header": "ເວັບໄຊທ໌ຍອດນິຍົມ",
"settings_pane_topsites_body": "ເຂົ້າເວັບໄຊທ໌ທີ່ທ່ານໄດ້ເຂົ້າໄປຫລາຍທີ່ສຸດ.",
"settings_pane_topsites_options_showmore": "ສະແດງເປັນສອງແຖວ",
"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": "ຈຸດເດັ່ນ",
"settings_pane_highlights_body2": "Find your way back to interesting things youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "ສຳເລັດ",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"edit_topsites_button_text": "ແກ້ໄຂ",
"edit_topsites_button_label": "ປັບແຕ່ງພາກສ່ວນເວັບໄຊທ໌ຍອດນິຍົມຂອງທ່ານ",
"edit_topsites_showmore_button": "ສະແດງເພີ່ມເຕີມ",
"edit_topsites_showless_button": "ສະແດງນ້ອຍລົງ",
"edit_topsites_done_button": "ສຳເລັດ",
"edit_topsites_pin_button": "Pin ເວັບໄຊທ໌ນີ້",
"edit_topsites_unpin_button": "Unpin this site",
"edit_topsites_edit_button": "ແກ້ໄຂເວັບໄຊທ໌ນີ້",
"edit_topsites_dismiss_button": "ຍົກເລີກເວັບໄຊທ໌ນີ້",
"edit_topsites_add_button": "Add",
"topsites_form_add_header": "New Top Site",
"topsites_form_edit_header": "Edit Top Site",
"topsites_form_title_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Add",
"topsites_form_save_button": "Save",
"topsites_form_cancel_button": "Cancel",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now",
"settings_pane_body": "ເລືອກສິ່ງທີ່ທ່ານເຫັນເມື່ອທ່ານເປີດແທັບໃຫມ່.",
"settings_pane_highlights_body": "ຍ້ອນຄືນກັບໄປເບິງປະຫວັດການທ່ອງເວັບທີ່ຫາກາເຂົ້າໄປ ແລະ ບຸກມາກທີ່ໄດ້ຮັບການສ້າງຂື້ນມາໃຫມ່ຂອງທ່ານ."
},
"textDirection": "ltr",
"version": null
},
"Snippets": {
"initialized": false
},
"Prefs": {
"initialized": true,
"values": {
"migrationExpired": true,
"showTopSites": true,
"showSearch": true,
"topSitesCount": 6,
"collapseTopSites": false,
"section.highlights.collapsed": false,
"section.topstories.collapsed": false,
"feeds.section.topstories": true,
"feeds.section.highlights": true
}
},
"Dialog": {
"visible": false,
"data": {}
},
"Sections": [
{
"title": {
"id": "header_recommended_by",
"values": {
"provider": "Pocket"
}
},
"rows": [],
"order": 1,
"enabled": true,
"icon": "pocket",
"id": "topstories",
"initialized": false
},
{
"title": {
"id": "header_highlights"
},
"rows": [],
"order": 2,
"enabled": true,
"id": "highlights",
"icon": "highlights",
"initialized": false
}
],
"PreferencesPane": {
"visible": false
}
};

View File

@ -0,0 +1,98 @@
// Note - this is a generated file.
window.gActivityStreamStrings = {
"newtab_page_title": "Dirica matidi manyen",
"default_label_loading": "Tye ka cano…",
"header_top_sites": "Kakube maloyo",
"header_stories": "Lok madito",
"header_highlights": "Wiye madito",
"header_visit_again": "Lim doki",
"header_bookmarks": "Alamabuk ma cok coki",
"header_recommended_by": "Lami tam obedo {provider}",
"header_bookmarks_placeholder": "Pud i pee ki alamabuk.",
"header_stories_from": "ki bot",
"type_label_visited": "Kilimo",
"type_label_bookmarked": "Kiketo alamabuk",
"type_label_synced": "Kiribo ki i nyonyo mukene",
"type_label_recommended": "Ma cuke lamal",
"type_label_open": "Tye ayaba",
"type_label_topic": "Lok",
"type_label_now": "Kombedi",
"menu_action_bookmark": "Alamabuk",
"menu_action_remove_bookmark": "Kwany alamabuk",
"menu_action_copy_address": "Lok kabedo",
"menu_action_email_link": "Kakube me email…",
"menu_action_open_new_window": "Yab i dirica manyen",
"menu_action_open_private_window": "Yab i dirica manyen me mung",
"menu_action_dismiss": "Kwer",
"menu_action_delete": "Kwany ki ii gin mukato",
"menu_action_pin": "Mwon",
"menu_action_unpin": "War",
"confirm_history_delete_p1": "Imoko ni imito kwanyo nyig jami weng me potbuk man ki i gin mukato mamegi?",
"confirm_history_delete_notice_p2": "Pe ki twero gonyo tic man.",
"menu_action_save_to_pocket": "Gwoki i jaba",
"search_for_something_with": "Yeny pi {search_term} ki:",
"search_button": "Yeny",
"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": "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",
"welcome_title": "Wajoli i dirica matidi manyen",
"welcome_body": "Firefox bi tic ki kabedo man me nyuto alamabukke mamegi, coc akwana, vidio, ki potbukke ma ilimo cokcoki ma pi gi tego loyo, wek i dok ii gi ma yot.",
"welcome_label": "Tye ka kube ki wiye madito mamegi",
"time_label_less_than_minute": "<dakika1",
"time_label_minute": "dakika{number}",
"time_label_hour": "cawa{number}",
"time_label_day": "nino{number}",
"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.",
"settings_pane_search_header": "Yeny",
"settings_pane_search_body": "Yeny Kakube ki i dirica ni matidi manyen.",
"settings_pane_topsites_header": "Kakube ma gi loyo",
"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",
"settings_pane_highlights_options_visited": "Kakube ma kilimo",
"settings_pane_snippets_header": "Kwena macek",
"settings_pane_snippets_body": "Kwan ngec manyen macego dok mamit ki bot Mozilla ikom Firefox, kwo me intanet, ki meme mabino atata.",
"settings_pane_done_button": "Otum",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Ket wiye",
"topsites_form_url_placeholder": "Coo onyo mwon URL",
"topsites_form_add_button": "Medi",
"topsites_form_save_button": "Gwoki",
"topsites_form_cancel_button": "Kwer",
"topsites_form_url_validation": "URL ma tye atir mite",
"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.",
"manual_migration_explanation2": "Tem Firefox ki alamabuk, gin mukato ki mung me donyo ki ii layeny mukene.",
"manual_migration_cancel_button": "Pe Apwoyo",
"manual_migration_import_button": "Kel kombedi"
};

View File

@ -3,10 +3,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy-Report-Only" content="script-src 'unsafe-inline'; img-src http: https: data: blob:; style-src 'unsafe-inline'; child-src 'none'; object-src 'none'; report-uri https://tiles.services.mozilla.com/v4/links/activity-stream/csp">
<title>Dirica matidi manyen</title>
<link rel="icon" type="image/png" id="favicon" href="chrome://branding/content/icon32.png"/>
<link rel="stylesheet" href="chrome://browser/content/contentSearchUI.css" />
<link rel="stylesheet" href="resource://activity-stream/data/content/activity-stream.css" />
<link rel="stylesheet" href="resource://activity-stream/css/activity-stream.css" />
</head>
<body class="activity-stream">
<div id="root"></div>
@ -23,6 +22,7 @@ for (const src of [
"resource://activity-stream/vendor/react-intl.js",
"resource://activity-stream/vendor/redux.js",
"resource://activity-stream/vendor/react-redux.js",
"resource://activity-stream/prerendered/ach/activity-stream-strings.js",
"resource://activity-stream/data/content/activity-stream.bundle.js"
]) {
// These dynamically inserted scripts by default are async, but we need them

View File

@ -0,0 +1,98 @@
// Note - this is a generated file.
window.gActivityStreamStrings = {
"newtab_page_title": "لسان جديد",
"default_label_loading": "يُحمّل…",
"header_top_sites": "المواقع الأكثر زيارة",
"header_stories": "أهم الأخبار",
"header_highlights": "أهم الأحداث",
"header_visit_again": "زرها مجددا",
"header_bookmarks": "أحدث العلامات",
"header_recommended_by": "ينصح به {provider}",
"header_bookmarks_placeholder": "لا علامات لديك بعد.",
"header_stories_from": "من",
"type_label_visited": "مُزارة",
"type_label_bookmarked": "معلّمة",
"type_label_synced": "مُزامنة من جهاز آخر",
"type_label_recommended": "مُتداول",
"type_label_open": "مفتوحة",
"type_label_topic": "الموضوع",
"type_label_now": "الآن",
"menu_action_bookmark": "علّم",
"menu_action_remove_bookmark": "أزل العلامة",
"menu_action_copy_address": "انسخ العنوان",
"menu_action_email_link": "أرسل الرابط بالبريد…",
"menu_action_open_new_window": "افتح في نافذة جديدة",
"menu_action_open_private_window": "افتح في نافذة خاصة جديدة",
"menu_action_dismiss": "ألغِ",
"menu_action_delete": "احذف من التأريخ",
"menu_action_pin": "ثبّت",
"menu_action_unpin": "أزل",
"confirm_history_delete_p1": "هل أنت متأكد أنك تريد حذف كل وجود لهذه الصفحة من تأريخك؟",
"confirm_history_delete_notice_p2": "لا يمكن التراجع عن هذا الإجراء.",
"menu_action_save_to_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_linktext": "Learn how it works.",
"section_disclaimer_topstories_buttontext": "Okay, got it",
"welcome_title": "مرحبًا في لسان جديد",
"welcome_body": "سيستخدم فيرفكس هذا المكان لعرض أكثر العلامات، و المقالات، و الفيديوهات والصفحات التي زرتها مؤخرا، ليمكنك العودة إليها بسهولة.",
"welcome_label": "تعرّف على أهم الأخبار",
"time_label_less_than_minute": "< دقيقة",
"time_label_minute": "{number} دقيقة",
"time_label_hour": "{number} ساعة",
"time_label_day": "{number} يوم",
"settings_pane_button_label": "خصص صفحة اللسان الجديد",
"settings_pane_header": "تفضيلات صفحة اللسان الجديد",
"settings_pane_body2": "اختر ماتريد ان تراه في هذه الصفحه.",
"settings_pane_search_header": "بحث",
"settings_pane_search_body": "ابحث في الوِب من اللسان الجديد.",
"settings_pane_topsites_header": "المواقع الأكثر زيارة",
"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": "العلامات",
"settings_pane_highlights_options_visited": "المواقع المُزارة",
"settings_pane_snippets_header": "المقتطفات",
"settings_pane_snippets_body": "اقرأ تحديثات قصيرة و جميلة من موزيلا عن فَيَرفُكس، و ثقافة الإنترنت، و أحيانا صرعة عشوائية من الإنترنت.",
"settings_pane_done_button": "تمّ",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "أدخل عنوانًا",
"topsites_form_url_placeholder": "اكتب أو ألصق مسارًا",
"topsites_form_add_button": "أضِفْ",
"topsites_form_save_button": "احفظ",
"topsites_form_cancel_button": "ألغِ",
"topsites_form_url_validation": "مطلوب مسار صالح",
"pocket_read_more": "المواضيع الشائعة:",
"pocket_read_even_more": "اعرض المزيد من الأخبار",
"pocket_feedback_header": "أفضل ما في الوِب، انتقاها أكثر من ٢٥ مليون شخص.",
"pocket_description": "اكتشف محتوى عالي الجودة لربما قد فاتك دون هذا، بماسعدة من Pocket الذي أصبح الآن جزءا من موزيلا.",
"highlights_empty_state": "ابدأ التصفح وسنعرض أمامك بعض المقالات والفيديوهات والمواقع الأخرى التي زرتها حديثا أو أضفتها إلى العلامات هنا.",
"topstories_empty_state": "لا جديد. تحقق لاحقًا للحصول على مزيد من أهم الأخبار من {provider}. لا يمكنك الانتظار؟ اختر موضوعًا شائعًا للعثور على المزيد من القصص الرائعة من جميع أنحاء الوِب.",
"manual_migration_explanation2": "جرب فَيَرفُكس مع العلامات، و التأريخ، و كلمات السر من متصفح آخر.",
"manual_migration_cancel_button": "لا شكرًا",
"manual_migration_import_button": "استورد الآن"
};

View File

@ -3,10 +3,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy-Report-Only" content="script-src 'unsafe-inline'; img-src http: https: data: blob:; style-src 'unsafe-inline'; child-src 'none'; object-src 'none'; report-uri https://tiles.services.mozilla.com/v4/links/activity-stream/csp">
<title>لسان جديد</title>
<link rel="icon" type="image/png" id="favicon" href="chrome://branding/content/icon32.png"/>
<link rel="stylesheet" href="chrome://browser/content/contentSearchUI.css" />
<link rel="stylesheet" href="resource://activity-stream/data/content/activity-stream.css" />
<link rel="stylesheet" href="resource://activity-stream/css/activity-stream.css" />
</head>
<body class="activity-stream">
<div id="root"></div>
@ -23,6 +22,7 @@ for (const src of [
"resource://activity-stream/vendor/react-intl.js",
"resource://activity-stream/vendor/redux.js",
"resource://activity-stream/vendor/react-redux.js",
"resource://activity-stream/prerendered/ar/activity-stream-strings.js",
"resource://activity-stream/data/content/activity-stream.bundle.js"
]) {
// These dynamically inserted scripts by default are async, but we need them

View File

@ -0,0 +1,98 @@
// Note - this is a generated file.
window.gActivityStreamStrings = {
"newtab_page_title": "Llingüeta nueva",
"default_label_loading": "Cargando…",
"header_top_sites": "Sitios destacaos",
"header_stories": "Histories destacaes",
"header_highlights": "Los destacaos",
"header_visit_again": "Visitar de nueves",
"header_bookmarks": "Marcadores recientes",
"header_recommended_by": "Recommended by {provider}",
"header_bookmarks_placeholder": "Entá nun tienes dengún marcador.",
"header_stories_from": "de",
"type_label_visited": "Visitóse",
"type_label_bookmarked": "Amestóse a marcadores",
"type_label_synced": "Sincronizóse dende otru preséu",
"type_label_recommended": "Tendencia",
"type_label_open": "Abrir",
"type_label_topic": "Tema",
"type_label_now": "Agora",
"menu_action_bookmark": "Amestar a marcadores",
"menu_action_remove_bookmark": "Desaniciar marcador",
"menu_action_copy_address": "Copiar direición",
"menu_action_email_link": "Unviar enllaz per corréu…",
"menu_action_open_new_window": "Abrir nuna ventana nueva",
"menu_action_open_private_window": "Abrir nuna ventana privada nueva",
"menu_action_dismiss": "Escartar",
"menu_action_delete": "Desaniciar del historial",
"menu_action_pin": "Fixar",
"menu_action_unpin": "Desfixar",
"confirm_history_delete_p1": "¿De xuru que quies desaniciar cada instancia d'esta páxina del to historial?",
"confirm_history_delete_notice_p2": "Esta aición nun pue desfacese.",
"menu_action_save_to_pocket": "Guardar en Pocket",
"search_for_something_with": "Guetar {search_term} con:",
"search_button": "Guetar",
"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": "Learn how it works.",
"section_disclaimer_topstories_buttontext": "Okay, got it",
"welcome_title": "Afáyate na llingüeta nueva",
"welcome_body": "Firefox usará esti espaciu p'amosate los marcadores, artículos, vídeos y páxines más relevantes que visitares apocayá, asina pues volver a ellos de mou cenciellu.",
"welcome_label": "Identifying your Highlights",
"time_label_less_than_minute": "<1m",
"time_label_minute": "{number}m",
"time_label_hour": "{number}h",
"time_label_day": "{number}d",
"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.",
"settings_pane_search_header": "Search",
"settings_pane_search_body": "Search the Web from your new tab.",
"settings_pane_topsites_header": "Top Sites",
"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 youve recently visited or bookmarked.",
"settings_pane_highlights_options_bookmarks": "Bookmarks",
"settings_pane_highlights_options_visited": "Visited Sites",
"settings_pane_snippets_header": "Snippets",
"settings_pane_snippets_body": "Read short and sweet updates from Mozilla about Firefox, internet culture, and the occasional random meme.",
"settings_pane_done_button": "Fecho",
"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": "Amosar más",
"edit_topsites_showless_button": "Show Fewer",
"edit_topsites_done_button": "Fecho",
"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_placeholder": "Enter a title",
"topsites_form_url_placeholder": "Type or paste a URL",
"topsites_form_add_button": "Amestar",
"topsites_form_save_button": "Guardar",
"topsites_form_cancel_button": "Encaboxar",
"topsites_form_url_validation": "Valid URL required",
"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 well show some of the great articles, videos, and other pages youve recently visited or bookmarked here.",
"topstories_empty_state": "Youve caught up. Check back later for more top stories from {provider}. Cant wait? Select a popular topic to find more great stories from around the web.",
"manual_migration_explanation2": "Try Firefox with the bookmarks, history and passwords from another browser.",
"manual_migration_cancel_button": "No Thanks",
"manual_migration_import_button": "Import Now"
};

View File

@ -3,10 +3,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy-Report-Only" content="script-src 'unsafe-inline'; img-src http: https: data: blob:; style-src 'unsafe-inline'; child-src 'none'; object-src 'none'; report-uri https://tiles.services.mozilla.com/v4/links/activity-stream/csp">
<title>Llingüeta nueva</title>
<link rel="icon" type="image/png" id="favicon" href="chrome://branding/content/icon32.png"/>
<link rel="stylesheet" href="chrome://browser/content/contentSearchUI.css" />
<link rel="stylesheet" href="resource://activity-stream/data/content/activity-stream.css" />
<link rel="stylesheet" href="resource://activity-stream/css/activity-stream.css" />
</head>
<body class="activity-stream">
<div id="root"></div>
@ -23,6 +22,7 @@ for (const src of [
"resource://activity-stream/vendor/react-intl.js",
"resource://activity-stream/vendor/redux.js",
"resource://activity-stream/vendor/react-redux.js",
"resource://activity-stream/prerendered/ast/activity-stream-strings.js",
"resource://activity-stream/data/content/activity-stream.bundle.js"
]) {
// These dynamically inserted scripts by default are async, but we need them

View File

@ -0,0 +1,98 @@
// Note - this is a generated file.
window.gActivityStreamStrings = {
"newtab_page_title": "Yeni Vərəq",
"default_label_loading": "Yüklənir…",
"header_top_sites": "Qabaqcıl Saytlar",
"header_stories": "Qabaqcıl Hekayələr",
"header_highlights": "Seçilmişlər",
"header_visit_again": "Təkrar ziyarət et",
"header_bookmarks": "Son Əlfəcinlər",
"header_recommended_by": "{provider} məsləhət görür",
"header_bookmarks_placeholder": "Hələlik heç əlfəcininiz yoxdur.",
"header_stories_from": "qaynaq:",
"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_open": "Açıq",
"type_label_topic": "Mövzu",
"type_label_now": "İndi",
"menu_action_bookmark": "Əlfəcinlə",
"menu_action_remove_bookmark": "Əlfəcini sil",
"menu_action_copy_address": "Ünvanı köçür",
"menu_action_email_link": "Keçidi e-poçt ilə göndər…",
"menu_action_open_new_window": "Yeni Pəncərədə Aç",
"menu_action_open_private_window": "Yeni Məxfi Pəncərədə Aç",
"menu_action_dismiss": "Rədd et",
"menu_action_delete": "Tarixçədən Sil",
"menu_action_pin": "Bərkid",
"menu_action_unpin": ıxart",
"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",
"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": "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",
"welcome_title": "Yeni vərəqə xoş gəldiniz",
"welcome_body": "Firefox bu səhifədə ən uyğun əlfəcin, məqalə, video və son ziyarət etdiyiniz səhifələri göstərərək onları rahat tapmağınıza kömək edəcək.",
"welcome_label": "Seçilmişləriniz təyin edilir",
"time_label_less_than_minute": "<1d",
"time_label_minute": "{number}d",
"time_label_hour": "{number}s",
"time_label_day": "{number}g",
"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.",
"settings_pane_search_header": "Axtar",
"settings_pane_search_body": "Yeni vərəqinizdən Web-də axtarış edin.",
"settings_pane_topsites_header": "Qabaqcıl Saytlar",
"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",
"settings_pane_highlights_options_visited": "Baxılmış Saytlar",
"settings_pane_snippets_header": "Hissələr",
"settings_pane_snippets_body": "Mozilladan Firefox, internet mədəniyyəti və digər yeniliklər haqqında qısa bildirişlər oxuyun.",
"settings_pane_done_button": "Oldu",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Başlıq daxil et",
"topsites_form_url_placeholder": "Ünvanı yazın və ya yapışdırın",
"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",
"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"
};

View File

@ -3,10 +3,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy-Report-Only" content="script-src 'unsafe-inline'; img-src http: https: data: blob:; style-src 'unsafe-inline'; child-src 'none'; object-src 'none'; report-uri https://tiles.services.mozilla.com/v4/links/activity-stream/csp">
<title>Yeni Vərəq</title>
<link rel="icon" type="image/png" id="favicon" href="chrome://branding/content/icon32.png"/>
<link rel="stylesheet" href="chrome://browser/content/contentSearchUI.css" />
<link rel="stylesheet" href="resource://activity-stream/data/content/activity-stream.css" />
<link rel="stylesheet" href="resource://activity-stream/css/activity-stream.css" />
</head>
<body class="activity-stream">
<div id="root"></div>
@ -23,6 +22,7 @@ for (const src of [
"resource://activity-stream/vendor/react-intl.js",
"resource://activity-stream/vendor/redux.js",
"resource://activity-stream/vendor/react-redux.js",
"resource://activity-stream/prerendered/az/activity-stream-strings.js",
"resource://activity-stream/data/content/activity-stream.bundle.js"
]) {
// These dynamically inserted scripts by default are async, but we need them

View File

@ -0,0 +1,98 @@
// Note - this is a generated file.
window.gActivityStreamStrings = {
"newtab_page_title": "Новая картка",
"default_label_loading": "Загрузка…",
"header_top_sites": "Папулярныя сайты",
"header_stories": "Галоўныя навіны",
"header_highlights": "Выбранае",
"header_visit_again": "Наведаць зноў",
"header_bookmarks": "Нядаўнія закладкі",
"header_recommended_by": "Рэкамендавана {provider}",
"header_bookmarks_placeholder": "У вас яшчэ няма закладак.",
"header_stories_from": "ад",
"type_label_visited": "Наведанае",
"type_label_bookmarked": "У закладках",
"type_label_synced": "Сінхранізаванае з іншай прылады",
"type_label_recommended": "Тэндэнцыі",
"type_label_open": "Адкрыта",
"type_label_topic": "Тэма",
"type_label_now": "Зараз",
"menu_action_bookmark": "У закладкі",
"menu_action_remove_bookmark": "Выдаліць закладку",
"menu_action_copy_address": "Скапіраваць адрас",
"menu_action_email_link": "Даслаць спасылку…",
"menu_action_open_new_window": "Адкрыць у новым акне",
"menu_action_open_private_window": "Адкрыць у новым прыватным акне",
"menu_action_dismiss": "Адхіліць",
"menu_action_delete": "Выдаліць з гісторыі",
"menu_action_pin": "Замацаваць",
"menu_action_unpin": "Адмацаваць",
"confirm_history_delete_p1": "Вы сапраўды жадаеце выдаліць усе запісы аб гэтай старонцы з гісторыі?",
"confirm_history_delete_notice_p2": "Гэта дзеянне немагчыма адмяніць.",
"menu_action_save_to_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_linktext": "Learn how it works.",
"section_disclaimer_topstories_buttontext": "Okay, got it",
"welcome_title": "Калі ласка ў новую картку",
"welcome_body": "Firefox будзе выкарыстоўваць гэта месца, каб адлюстроўваць самыя актуальныя закладкі, артыкулы, відэа і старонкі, якія вы нядаўна наведалі, каб вы змаглі лёгка трапіць на іх зноў.",
"welcome_label": "Вызначэнне вашага выбранага",
"time_label_less_than_minute": "<1 хв",
"time_label_minute": "{number} хв",
"time_label_hour": "{number} г",
"time_label_day": "{number} д",
"settings_pane_button_label": "Наладзіць вашу старонку новай карткі",
"settings_pane_header": "Налады новай карткі",
"settings_pane_body2": "Выберыце тое, што вы бачыце на гэтай старонцы.",
"settings_pane_search_header": "Пошук",
"settings_pane_search_body": "Пошук у Сеціве з вашай новай карткі.",
"settings_pane_topsites_header": "Папулярныя сайты",
"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": "Закладкі",
"settings_pane_highlights_options_visited": "Наведаныя сайты",
"settings_pane_snippets_header": "Урыўкі",
"settings_pane_snippets_body": "Чытайце кароткія і радасныя навіны ад Mozilla аб Firefox, інтэрнэт-культуру і выпадковыя мемы.",
"settings_pane_done_button": "Гатова",
"settings_pane_topstories_options_sponsored": "Show Sponsored Stories",
"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_placeholder": "Увядзіце назву",
"topsites_form_url_placeholder": "Увядзіце або ўстаўце URL",
"topsites_form_add_button": "Дадаць",
"topsites_form_save_button": "Захаваць",
"topsites_form_cancel_button": "Скасаваць",
"topsites_form_url_validation": "Патрабуецца сапраўдны URL",
"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": "Імпартаваць зараз"
};

View File

@ -3,10 +3,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy-Report-Only" content="script-src 'unsafe-inline'; img-src http: https: data: blob:; style-src 'unsafe-inline'; child-src 'none'; object-src 'none'; report-uri https://tiles.services.mozilla.com/v4/links/activity-stream/csp">
<title>Новая картка</title>
<link rel="icon" type="image/png" id="favicon" href="chrome://branding/content/icon32.png"/>
<link rel="stylesheet" href="chrome://browser/content/contentSearchUI.css" />
<link rel="stylesheet" href="resource://activity-stream/data/content/activity-stream.css" />
<link rel="stylesheet" href="resource://activity-stream/css/activity-stream.css" />
</head>
<body class="activity-stream">
<div id="root"></div>
@ -23,6 +22,7 @@ for (const src of [
"resource://activity-stream/vendor/react-intl.js",
"resource://activity-stream/vendor/redux.js",
"resource://activity-stream/vendor/react-redux.js",
"resource://activity-stream/prerendered/be/activity-stream-strings.js",
"resource://activity-stream/data/content/activity-stream.bundle.js"
]) {
// These dynamically inserted scripts by default are async, but we need them

Some files were not shown because too many files have changed in this diff Show More