Merge lp:~bdrung/firefox-extensions/new-upstream-release-1.1.1 into lp:~ubuntu-dev/firefox-extensions/adblock-plus.ubuntu

Proposed by Benjamin Drung
Status: Merged
Merged at revision: not available
Proposed branch: lp:~bdrung/firefox-extensions/new-upstream-release-1.1.1
Merge into: lp:~ubuntu-dev/firefox-extensions/adblock-plus.ubuntu
Diff against target: None lines
To merge this branch: bzr merge lp:~bdrung/firefox-extensions/new-upstream-release-1.1.1
Reviewer Review Type Date Requested Status
Alexander Sack (community) Approve
Review via email: mp+10049@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Benjamin Drung (bdrung) wrote :

New upstream release (1.1.1).

Revision history for this message
Alexander Sack (asac) wrote :

uploaded and merged ... had to retag so we might want to do a release commit on topic branches next time. Thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file '.bzr-builddeb/default.conf'
--- .bzr-builddeb/default.conf 2009-07-25 22:22:20 +0000
+++ .bzr-builddeb/default.conf 2009-08-12 17:40:22 +0000
@@ -1,4 +1,4 @@
1[BUILDDEB]1[BUILDDEB]
2merge = True2merge = True
3export-upstream-revision = revid:bdrung@ubuntu.com-20090725185941-6iht196erdm4n4rh3export-upstream-revision = revid:bdrung@ubuntu.com-20090812172440-m1gw08ycoug7eqsi
4export-upstream = .4export-upstream = .
55
=== modified file 'chrome.manifest'
--- chrome.manifest 2009-07-25 19:31:00 +0000
+++ chrome.manifest 2009-08-12 17:31:15 +0000
@@ -10,3 +10,6 @@
10style chrome://adblockplus/content/ui/seamonkeyOverlay.xul chrome://adblockplus/skin/seaMonkeyHack.css application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}10style chrome://adblockplus/content/ui/seamonkeyOverlay.xul chrome://adblockplus/skin/seaMonkeyHack.css application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}
11style chrome://adblockplus/content/ui/mailOverlay.xul chrome://adblockplus/skin/seaMonkeyHack.css application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}11style chrome://adblockplus/content/ui/mailOverlay.xul chrome://adblockplus/skin/seaMonkeyHack.css application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}
12locale adblockplus {{LOCALE}} jar:chrome/adblockplus.jar!/locale/{{LOCALE}}/12locale adblockplus {{LOCALE}} jar:chrome/adblockplus.jar!/locale/{{LOCALE}}/
13
14# Hack to prevent .Net Framework Assistant from messing up the browser
15override chrome://dotnetassistant/content/bootstrap.xul data:text/xml,<nada/>
1316
=== modified file 'chrome/content/filterListener.js'
--- chrome/content/filterListener.js 2009-07-25 18:59:41 +0000
+++ chrome/content/filterListener.js 2009-08-12 17:24:40 +0000
@@ -191,6 +191,4 @@
191 }191 }
192 }192 }
193};193};
194
195filterListener.init();
196abp.filterListener = filterListener;194abp.filterListener = filterListener;
197195
=== modified file 'chrome/content/mochitest/tests/test_filterListener.html'
--- chrome/content/mochitest/tests/test_filterListener.html 2009-01-06 00:31:15 +0000
+++ chrome/content/mochitest/tests/test_filterListener.html 2009-08-12 17:24:40 +0000
@@ -27,6 +27,8 @@
27 enabled: true27 enabled: true
28 };28 };
2929
30 filterListener.init();
31
30 filterStorage.addSubscription(Subscription.fromURL("~fl~"));32 filterStorage.addSubscription(Subscription.fromURL("~fl~"));
31 filterStorage.addSubscription(Subscription.fromURL("~wl~"));33 filterStorage.addSubscription(Subscription.fromURL("~wl~"));
32 filterStorage.addSubscription(Subscription.fromURL("~il~"));34 filterStorage.addSubscription(Subscription.fromURL("~il~"));
3335
=== modified file 'chrome/content/mochitest/tests/test_synchronizer.html'
--- chrome/content/mochitest/tests/test_synchronizer.html 2009-07-25 18:59:41 +0000
+++ chrome/content/mochitest/tests/test_synchronizer.html 2009-08-12 17:24:40 +0000
@@ -14,7 +14,16 @@
14 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/filterClasses.js"></script>14 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/filterClasses.js"></script>
15 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/subscriptionClasses.js"></script>15 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/subscriptionClasses.js"></script>
16 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/filterStorage.js"></script>16 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/filterStorage.js"></script>
1717 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/synchronizer.js"></script>
18
19</head>
20<body>
21 <p id="display"></p>
22 <div id="content" style="display: none">
23
24 </div>
25
26 <pre id="test">
18 <script type="application/x-javascript;version=1.7">27 <script type="application/x-javascript;version=1.7">
19 let currentTime = 20000 * 24 * 60 * 60 * 1000;28 let currentTime = 20000 * 24 * 60 * 60 * 1000;
20 let startTime = 0;29 let startTime = 0;
@@ -83,19 +92,10 @@
83 subscriptions_fallbackerrors: 7,92 subscriptions_fallbackerrors: 7,
84 subscriptions_fallbackurl: "http://localhost:1234/fallback?%s"93 subscriptions_fallbackurl: "http://localhost:1234/fallback?%s"
85 };94 };
86 </script>95
87
88 <script type="application/x-javascript;version=1.7" src="chrome://adblockplus/content/synchronizer.js"></script>
89</head>
90<body>
91 <p id="display"></p>
92 <div id="content" style="display: none">
93
94 </div>
95
96 <pre id="test">
97 <script type="application/x-javascript;version=1.7">
98 {96 {
97 synchronizer.init();
98
99 let timer = {__proto__: synchronizer.timer};99 let timer = {__proto__: synchronizer.timer};
100 let callback = timer.callback;100 let callback = timer.callback;
101 timer.handler = function() { callback.notify(timer); };101 timer.handler = function() { callback.notify(timer); };
102102
=== modified file 'chrome/content/objtabs.css'
--- chrome/content/objtabs.css 2009-07-25 19:31:00 +0000
+++ chrome/content/objtabs.css 2009-08-12 17:31:15 +0000
@@ -89,3 +89,8 @@
89 /* Images still load even if invisible, unlikely to change */89 /* Images still load even if invisible, unlikely to change */
90 display: none !important;90 display: none !important;
91}91}
92
93.%%COLLAPSED%%
94{
95 -moz-binding: url(chrome://global/content/bindings/general.xml#asdfzxcv) !important;
96}
9297
=== modified file 'chrome/content/policy.js'
--- chrome/content/policy.js 2009-07-25 19:31:00 +0000
+++ chrome/content/policy.js 2009-08-12 17:31:15 +0000
@@ -76,6 +76,11 @@
76 * @type String76 * @type String
77 */77 */
78 objtabMarker: null,78 objtabMarker: null,
79 /**
80 * Randomly generated class for collapsed nodes.
81 * @type String
82 */
83 collapsedClass: null,
7984
80 init: function() {85 init: function() {
81 var types = ["OTHER", "SCRIPT", "IMAGE", "STYLESHEET", "OBJECT", "SUBDOCUMENT", "DOCUMENT", "XBL", "PING", "XMLHTTPREQUEST", "OBJECT_SUBREQUEST", "DTD", "FONT", "MEDIA"];86 var types = ["OTHER", "SCRIPT", "IMAGE", "STYLESHEET", "OBJECT", "SUBDOCUMENT", "DOCUMENT", "XBL", "PING", "XMLHTTPREQUEST", "OBJECT_SUBREQUEST", "DTD", "FONT", "MEDIA"];
@@ -115,11 +120,13 @@
115 // Generate identifiers for object tabs120 // Generate identifiers for object tabs
116 this.objtabClass = "";121 this.objtabClass = "";
117 this.objtabOnTopClass = "";122 this.objtabOnTopClass = "";
123 this.collapsedClass = "";
118 this.objtabMarker = "abpObjTab"124 this.objtabMarker = "abpObjTab"
119 for (let i = 0; i < 20; i++)125 for (let i = 0; i < 20; i++)
120 {126 {
121 this.objtabClass += String.fromCharCode("a".charCodeAt(0) + Math.random() * 26);127 this.objtabClass += String.fromCharCode("a".charCodeAt(0) + Math.random() * 26);
122 this.objtabOnTopClass += String.fromCharCode("a".charCodeAt(0) + Math.random() * 26);128 this.objtabOnTopClass += String.fromCharCode("a".charCodeAt(0) + Math.random() * 26);
129 this.collapsedClass += String.fromCharCode("a".charCodeAt(0) + Math.random() * 26);
123 this.objtabMarker += String.fromCharCode("a".charCodeAt(0) + Math.random() * 26);130 this.objtabMarker += String.fromCharCode("a".charCodeAt(0) + Math.random() * 26);
124 }131 }
125132
@@ -246,7 +253,6 @@
246 let nodes = this._scheduledNodes;253 let nodes = this._scheduledNodes;
247 this._scheduledNodes = null;254 this._scheduledNodes = null;
248255
249 let oldStyles = [];
250 for each (let node in nodes)256 for each (let node in nodes)
251 {257 {
252 // adjust frameset's cols/rows for frames258 // adjust frameset's cols/rows for frames
@@ -269,21 +275,7 @@
269 }275 }
270 }276 }
271 else277 else
272 {278 node.className += " " + this.collapsedClass;
273 oldStyles.push([node, node.getAttribute("style")]);
274 node.style.MozBinding = "url(chrome://global/content/bindings/general.xml#asdfzxcv)";
275 }
276 }
277
278 for each (let [node, oldStyle] in oldStyles)
279 node.offsetLeft; // Force reflow
280
281 for each (let [node, oldStyle] in oldStyles)
282 {
283 if (oldStyle == null)
284 node.removeAttribute("style")
285 else
286 node.setAttribute("style", oldStyle);
287 }279 }
288 },280 },
289281
@@ -383,8 +375,13 @@
383 }375 }
384 catch (e)376 catch (e)
385 {377 {
386 // EffectiveTLDService throws on IP addresses378 // EffectiveTLDService throws on IP addresses, just compare the host name
387 return location.host != docDomain;379 let host = "";
380 try
381 {
382 host = location.host;
383 } catch (e) {}
384 return host != docDomain;
388 }385 }
389 },386 },
390387
@@ -435,7 +432,7 @@
435 onStartRequest: function() {},432 onStartRequest: function() {},
436 onStopRequest: function()433 onStopRequest: function()
437 {434 {
438 let data = this.data.replace(/%%CLASSNAME%%/g, policy.objtabClass).replace(/%%ONTOP%%/g, policy.objtabOnTopClass);435 let data = this.data.replace(/%%CLASSNAME%%/g, policy.objtabClass).replace(/%%ONTOP%%/g, policy.objtabOnTopClass).replace(/%%COLLAPSED%%/g, policy.collapsedClass);
439 let objtabsCSS = makeURL("data:text/css," + encodeURIComponent(data));436 let objtabsCSS = makeURL("data:text/css," + encodeURIComponent(data));
440 Cc["@mozilla.org/content/style-sheet-service;1"].getService(Ci.nsIStyleSheetService)437 Cc["@mozilla.org/content/style-sheet-service;1"].getService(Ci.nsIStyleSheetService)
441 .loadAndRegisterSheet(objtabsCSS, styleService.USER_SHEET);438 .loadAndRegisterSheet(objtabsCSS, styleService.USER_SHEET);
442439
=== modified file 'chrome/content/prefs.js'
--- chrome/content/prefs.js 2009-07-25 19:31:00 +0000
+++ chrome/content/prefs.js 2009-08-12 17:31:15 +0000
@@ -97,6 +97,9 @@
97 this.currentVersion = abp.getInstalledVersion();97 this.currentVersion = abp.getInstalledVersion();
98 this.save();98 this.save();
99 }99 }
100
101 // Add observers for pref changes
102 prefs.addObservers();
100 },103 },
101104
102 // Loads a pref and stores it as a property of the object105 // Loads a pref and stores it as a property of the object
@@ -121,8 +124,8 @@
121 // Reloads the preferences124 // Reloads the preferences
122 reload: function() {125 reload: function() {
123 // Load data from prefs.js126 // Load data from prefs.js
124 for each (var pref in this.prefList)127 for (let i = 0; i < this.prefList.length; i++)
125 this.loadPref(pref);128 this.loadPref(this.prefList[i]);
126129
127 elemhide.apply();130 elemhide.apply();
128131
@@ -135,8 +138,8 @@
135 save: function() {138 save: function() {
136 this.disableObserver = true;139 this.disableObserver = true;
137 140
138 for each (var pref in this.prefList)141 for (let i = 0; i < this.prefList.length; i++)
139 this.savePref(pref);142 this.savePref(this.prefList[i]);
140143
141 this.disableObserver = false;144 this.disableObserver = false;
142145
@@ -176,5 +179,4 @@
176 QueryInterface: XPCOMUtils.generateQI([Ci.nsISupportsWeakReference, Ci.nsIObserver])179 QueryInterface: XPCOMUtils.generateQI([Ci.nsISupportsWeakReference, Ci.nsIObserver])
177};180};
178181
179prefs.addObservers();
180abp.prefs = prefs;182abp.prefs = prefs;
181183
=== modified file 'chrome/content/requests.js'
--- chrome/content/requests.js 2009-07-25 18:59:41 +0000
+++ chrome/content/requests.js 2009-08-12 17:24:40 +0000
@@ -30,6 +30,8 @@
30const dataSeed = Math.random(); // Make sure our properties have randomized names30const dataSeed = Math.random(); // Make sure our properties have randomized names
31const docDataProp = "abpDocData" + dataSeed;31const docDataProp = "abpDocData" + dataSeed;
32const nodeDataProp = "abpNodeData" + dataSeed;32const nodeDataProp = "abpNodeData" + dataSeed;
33const nodeIndexProp = "abpNodeIndex" + dataSeed;
34var nodeIndex = 0;
3335
34function RequestList(wnd) {36function RequestList(wnd) {
35 this.entries = {__proto__: null};37 this.entries = {__proto__: null};
@@ -56,6 +58,11 @@
56 * @type Integer58 * @type Integer
57 */59 */
58 _compactCounter: 0,60 _compactCounter: 0,
61 /**
62 * Time in milliseconds of the last list cleanup, makes sure cleanup isn't triggered too often.
63 * @type Integer
64 */
65 _lastCompact: 0,
5966
60 /**67 /**
61 * Attaches this request list to a window.68 * Attaches this request list to a window.
@@ -141,7 +148,8 @@
141 if (isNew)148 if (isNew)
142 this.topList.notifyListeners("add", this.entries[key]);149 this.topList.notifyListeners("add", this.entries[key]);
143150
144 if (isNew && ++this._compactCounter >= 20)151 // Compact the list of entries after 100 additions but at most once every 5 seconds
152 if (isNew && ++this._compactCounter >= 100 && Date.now() - this._lastCompact > 5000)
145 this.getAllLocations();153 this.getAllLocations();
146154
147 return entry;155 return entry;
@@ -171,9 +179,16 @@
171179
172 getAllLocations: function(results, hadOutdated)180 getAllLocations: function(results, hadOutdated)
173 {181 {
174 this._compactCounter = 0;
175
176 let now = Date.now();182 let now = Date.now();
183
184 // Accessing wnd.frames will flush outstanding content policy requests in Gecko 1.9.0/1.9.1.
185 // Access it now to make sure we return the correct result even if more nodes are added here.
186 let wnd = getReferencee(this.window);
187 let frames = wnd.frames;
188
189 this._compactCounter = 0;
190 this._lastCompact = now;
191
177 if (typeof results == "undefined")192 if (typeof results == "undefined")
178 results = [];193 results = [];
179194
@@ -198,11 +213,10 @@
198 }213 }
199 }214 }
200215
201 let wnd = getReferencee(this.window);216 let numFrames = (wnd ? frames.length : -1);
202 let numFrames = (wnd ? wnd.frames.length : -1);
203 for (let i = 0; i < numFrames; i++)217 for (let i = 0; i < numFrames; i++)
204 {218 {
205 let frameData = RequestList.getDataForWindow(wnd.frames[i], true);219 let frameData = RequestList.getDataForWindow(frames[i], true);
206 if (frameData && !frameData.detached)220 if (frameData && !frameData.detached)
207 frameData.getAllLocations(results, hadOutdated);221 frameData.getAllLocations(results, hadOutdated);
208 }222 }
@@ -296,6 +310,7 @@
296function RequestEntry(key, contentType, docDomain, thirdParty, location)310function RequestEntry(key, contentType, docDomain, thirdParty, location)
297{311{
298 this._nodes = [];312 this._nodes = [];
313 this._indexes = [];
299 this.key = key;314 this.key = key;
300 this.type = contentType;315 this.type = contentType;
301 this.docDomain = docDomain;316 this.docDomain = docDomain;
@@ -310,6 +325,11 @@
310 */325 */
311 _nodes: null,326 _nodes: null,
312 /**327 /**
328 * Nodes indexes corresponding with the nodes - used to recognize outdated entries.
329 * @type Array of Integer
330 */
331 _indexes: null,
332 /**
313 * Will be set to true if the entry is associated with other nodes besides the333 * Will be set to true if the entry is associated with other nodes besides the
314 * ones listed in the nodes property - used if obtaining a weak reference to334 * ones listed in the nodes property - used if obtaining a weak reference to
315 * some nodes isn't possible.335 * some nodes isn't possible.
@@ -322,6 +342,11 @@
322 */342 */
323 _compactCounter: 0,343 _compactCounter: 0,
324 /**344 /**
345 * Time in milliseconds of the last list cleanup, makes sure cleanup isn't triggered too often.
346 * @type Integer
347 */
348 _lastCompact: 0,
349 /**
325 * Time out last node addition or compact operation (used to find outdated entries).350 * Time out last node addition or compact operation (used to find outdated entries).
326 * @type Integer351 * @type Integer
327 */352 */
@@ -363,37 +388,26 @@
363 get nodes()388 get nodes()
364 {389 {
365 this._compactCounter = 0;390 this._compactCounter = 0;
366 this.lastUpdate = Date.now();391 this.lastUpdate = this._lastCompact = Date.now();
367392
368 let result = [];393 let result = [];
369 for (let i = 0; i < this._nodes.length; i++)394 for (let i = 0; i < this._nodes.length; i++)
370 {395 {
371 let node = getReferencee(this._nodes[i]);396 let node = getReferencee(this._nodes[i]);
372 if (node)397
398 // Remove node if associated with a different weak reference - this node was added to a different list already
399 if (node && node.getUserData(nodeIndexProp) == this._indexes[i])
373 result.push(node);400 result.push(node);
374 else401 else
375 this._nodes.splice(i--, 1);402 {
403 this._nodes.splice(i, 1);
404 this._indexes.splice(i, 1);
405 i--;
406 }
376 }407 }
377 return result;408 return result;
378 },409 },
379 /**410 /**
380 * Document elements associated with this entry
381 * @type Iterator of Element
382 */
383 get nodesIterator()
384 {
385 this._compactCounter = 0;
386
387 for (let i = 0; i < this._nodes.length; i++)
388 {
389 let node = getReferencee(this._nodes[i]);
390 if (node)
391 yield node;
392 else
393 this._nodes.splice(i--, 1);
394 }
395 },
396 /**
397 * String representation of the content type, e.g. "subdocument"411 * String representation of the content type, e.g. "subdocument"
398 * @type String412 * @type String
399 */413 */
@@ -409,17 +423,8 @@
409 */423 */
410 addNode: function(/**Node*/ node)424 addNode: function(/**Node*/ node)
411 {425 {
412 // If we had this node already - remove it from its old data entry first426 // Compact the list of nodes after 100 additions but at most once every 5 seconds
413 let oldEntry = RequestList.getDataForNode(node, true);427 if (++this._compactCounter >= 100 && Date.now() - this._lastCompact > 5000)
414 if (oldEntry)
415 {
416 oldEntry = oldEntry[1];
417 let index = oldEntry.nodes.indexOf(node);
418 if (index >= 0)
419 oldEntry._nodes.splice(index, 1);
420 }
421
422 if (++this._compactCounter >= 20) // Compact the list of nodes after 20 additions
423 this.nodes;428 this.nodes;
424 else429 else
425 this.lastUpdate = Date.now();430 this.lastUpdate = Date.now();
@@ -428,7 +433,13 @@
428433
429 let weakRef = getWeakReference(node);434 let weakRef = getWeakReference(node);
430 if (weakRef)435 if (weakRef)
436 {
431 this._nodes.push(weakRef);437 this._nodes.push(weakRef);
438
439 ++nodeIndex;
440 node.setUserData(nodeIndexProp, nodeIndex, null);
441 this._indexes.push(nodeIndex);
442 }
432 else443 else
433 this.hasAdditionalNodes = true;444 this.hasAdditionalNodes = true;
434 },445 },
@@ -441,6 +452,7 @@
441 {452 {
442 let result = this.nodes;453 let result = this.nodes;
443 this._nodes = [];454 this._nodes = [];
455 this._indexes = [];
444 return result;456 return result;
445 }457 }
446};458};
447459
=== modified file 'chrome/content/synchronizer.js'
--- chrome/content/synchronizer.js 2009-07-25 19:31:00 +0000
+++ chrome/content/synchronizer.js 2009-08-12 17:31:15 +0000
@@ -365,6 +365,4 @@
365 }365 }
366 }366 }
367};367};
368
369synchronizer.init();
370abp.synchronizer = synchronizer;368abp.synchronizer = synchronizer;
371369
=== modified file 'chrome/content/ui/about.xul'
--- chrome/content/ui/about.xul 2009-07-25 18:59:41 +0000
+++ chrome/content/ui/about.xul 2009-08-12 17:24:40 +0000
@@ -78,6 +78,7 @@
78 <description value="edo248 - Armenian translation"/>78 <description value="edo248 - Armenian translation"/>
79 <description value="Finn Sørensen - Danish translation"/>79 <description value="Finn Sørensen - Danish translation"/>
80 <description value="Gárdonyi László - Hungarian translation"/>80 <description value="Gárdonyi László - Hungarian translation"/>
81 <description value="Gythialy - &quot;ChinaList&quot; filter subscription"/>
81 <description value="Hatul - Hebrew translation"/>82 <description value="Hatul - Hebrew translation"/>
82 <description value="Hrvoje Majer - Croatian translation"/>83 <description value="Hrvoje Majer - Croatian translation"/>
83 <description value="Humberto Sartini - Brazilian Portuguese translation of the Element Hiding Helper extension"/>84 <description value="Humberto Sartini - Brazilian Portuguese translation of the Element Hiding Helper extension"/>
@@ -130,6 +131,7 @@
130 <description value="Toni Barrera - Catalan translation"/>131 <description value="Toni Barrera - Catalan translation"/>
131 <description value="Tony Nguyen - Vietnamese translation"/>132 <description value="Tony Nguyen - Vietnamese translation"/>
132 <description value="ultravioletu - Romanian translation"/>133 <description value="ultravioletu - Romanian translation"/>
134 <description value="Wang Congming - &quot;ChinaList&quot; filter subscription"/>
133 <description value="Владо Дакић - Serbian translation of the Element Hiding Helper extension"/>135 <description value="Владо Дакић - Serbian translation of the Element Hiding Helper extension"/>
134 <description value="znaya - Portuguese translation"/>136 <description value="znaya - Portuguese translation"/>
135 <spacer height="5"/>137 <spacer height="5"/>
136138
=== modified file 'chrome/content/ui/settings.js'
--- chrome/content/ui/settings.js 2009-07-25 18:59:41 +0000
+++ chrome/content/ui/settings.js 2009-08-12 17:24:40 +0000
@@ -1714,6 +1714,8 @@
1714 let newIndex = (subscription.filters == subscription._sortedFilters || newSortedIndex >= subscription._sortedFilters.length ? newSortedIndex : subscription.filters.indexOf(subscription._sortedFilters[newSortedIndex]));1714 let newIndex = (subscription.filters == subscription._sortedFilters || newSortedIndex >= subscription._sortedFilters.length ? newSortedIndex : subscription.filters.indexOf(subscription._sortedFilters[newSortedIndex]));
1715 if (oldIndex < 0 || newIndex < 0)1715 if (oldIndex < 0 || newIndex < 0)
1716 return;1716 return;
1717 if (oldSubscription == subscription && (newIndex == oldIndex || newIndex == oldIndex + 1))
1718 return;
17171719
1718 {1720 {
1719 if (!oldSubscription.hasOwnProperty("filters"))1721 if (!oldSubscription.hasOwnProperty("filters"))
@@ -1779,6 +1781,8 @@
17791781
1780 treeView.selectRow(newRow);1782 treeView.selectRow(newRow);
1781 }1783 }
1784
1785 onChange();
1782 },1786 },
17831787
1784 getCellValue: function() {return null},1788 getCellValue: function() {return null},
17851789
=== modified file 'chrome/content/ui/sidebar.js'
--- chrome/content/ui/sidebar.js 2009-07-25 18:59:41 +0000
+++ chrome/content/ui/sidebar.js 2009-08-12 17:24:40 +0000
@@ -609,7 +609,7 @@
609 if (item.filter && !item.filter.disabled && item.filter instanceof abp.BlockingFilter)609 if (item.filter && !item.filter.disabled && item.filter instanceof abp.BlockingFilter)
610 return null;610 return null;
611611
612 for each (let node in item.nodesIterator)612 for each (let node in item.nodes)
613 {613 {
614 if (node instanceof HTMLImageElement && (node.naturalWidth || node.naturalHeight))614 if (node instanceof HTMLImageElement && (node.naturalWidth || node.naturalHeight))
615 return [node.naturalWidth, node.naturalHeight];615 return [node.naturalWidth, node.naturalHeight];
616616
=== modified file 'chrome/content/ui/subscriptions.xml'
--- chrome/content/ui/subscriptions.xml 2009-07-25 18:59:41 +0000
+++ chrome/content/ui/subscriptions.xml 2009-08-12 17:24:40 +0000
@@ -10,6 +10,9 @@
10 <subscription title="Liste FR (France) + EasyList"10 <subscription title="Liste FR (France) + EasyList"
11 url="https://easylist.adblockplus.org/liste_fr+easylist.txt"11 url="https://easylist.adblockplus.org/liste_fr+easylist.txt"
12 homepage="http://forums.lanik.us/viewforum.php?f=91"/>12 homepage="http://forums.lanik.us/viewforum.php?f=91"/>
13 <subscription title="ChinaList (中国)"
14 url="http://adblock-chinalist.googlecode.com/svn/trunk/adblock.txt"
15 homepage="http://code.google.com/p/adblock-chinalist/"/>
13 <subscription title="Filter von Dr.Evil (Deutschland)"16 <subscription title="Filter von Dr.Evil (Deutschland)"
14 url="http://maltekraus.de/Firefox/adblock.txt"17 url="http://maltekraus.de/Firefox/adblock.txt"
15 homepage="http://www.camp-firefox.de/forum/viewtopic.php?t=58194"/>18 homepage="http://www.camp-firefox.de/forum/viewtopic.php?t=58194"/>
1619
=== modified file 'chrome/locale/ar/settings.dtd'
--- chrome/locale/ar/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ar/settings.dtd 2009-08-12 17:31:15 +0000
@@ -64,7 +64,7 @@
64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">
65<!ENTITY about.label "عن آدبلوك بلاس">65<!ENTITY about.label "عن آدبلوك بلاس">
66<!ENTITY about.accesskey "ع">66<!ENTITY about.accesskey "ع">
67<!ENTITY description "أضف العناوين التي ترغب بحجبها، و للاقتراحات انظر القائمة المنسدلة.67<!ENTITY description "أضف العناوين التي ترغب بحجبها، و للاقتراحات انظر القائمة المنسدلة.
68يمكنك أن تستعمل الرمز * لإنشاء فلاتر عامة. المستخدمين المتقدمين يمكنهم استخدام بعض التعبيرات النظامية مثل /banner\d+\.gif$/">68يمكنك أن تستعمل الرمز * لإنشاء فلاتر عامة. المستخدمين المتقدمين يمكنهم استخدام بعض التعبيرات النظامية مثل /banner\d+\.gif$/">
69<!ENTITY filter.column "قانون الفلتر">69<!ENTITY filter.column "قانون الفلتر">
70<!ENTITY filter.accesskey "ف">70<!ENTITY filter.accesskey "ف">
7171
=== modified file 'chrome/locale/cs-CZ/composer.dtd'
--- chrome/locale/cs-CZ/composer.dtd 2009-03-17 01:48:13 +0000
+++ chrome/locale/cs-CZ/composer.dtd 2009-08-12 17:24:40 +0000
@@ -2,9 +2,12 @@
2<!ENTITY accept.label "Přidat filtr">2<!ENTITY accept.label "Přidat filtr">
3<!ENTITY advanced.label "Rozšířené zobrazení">3<!ENTITY advanced.label "Rozšířené zobrazení">
4<!ENTITY basic.label "Základní zobrazení">4<!ENTITY basic.label "Základní zobrazení">
5<!ENTITY disabled.warning.beforeLink "Adblock Plus je momentálně zakázát. Můžete stále přidávat filtry, ale nebudou aplikovány dokud">5<!ENTITY disabled.warning.beforeLink "Adblock Plus je momentálně zakázán. Můžete stále přidávat filtry, ale nebudou aplikovány dokud">
6<!ENTITY disabled.warning.link "nepovolíte Adblock Plus">6<!ENTITY disabled.warning.link "nepovolíte Adblock Plus">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "Skupina filtrů &quot;&#x25;S&quot;, do které chcete přidat tento filtr, je momentálně zakázaná. Filtr můžete přidat, ale nebude aplikován, dokud">
9<!ENTITY groupDisabled.warning.link "nepovolíte skupinu filtrů">
10<!ENTITY groupDisabled.warning.afterLink ".">
8<!ENTITY filter.label "Nový filtr:">11<!ENTITY filter.label "Nový filtr:">
9<!ENTITY filter.accesskey "f">12<!ENTITY filter.accesskey "f">
10<!ENTITY preferences.label "Zobrazit existující filtry...">13<!ENTITY preferences.label "Zobrazit existující filtry...">
@@ -22,6 +25,8 @@
22<!ENTITY anchors.label "Povolit vzor pouze:">25<!ENTITY anchors.label "Povolit vzor pouze:">
23<!ENTITY anchor.start.label "na začátku adresy">26<!ENTITY anchor.start.label "na začátku adresy">
24<!ENTITY anchor.start.accesskey "z">27<!ENTITY anchor.start.accesskey "z">
28<!ENTITY anchor.start.flexible.label "na začátku názvu domény">
29<!ENTITY anchor.start.flexible.accesskey "z">
25<!ENTITY anchor.end.label "na konci adresy">30<!ENTITY anchor.end.label "na konci adresy">
26<!ENTITY anchor.end.accesskey "k">31<!ENTITY anchor.end.accesskey "k">
27<!ENTITY options.label "Možnosti">32<!ENTITY options.label "Možnosti">
2833
=== modified file 'chrome/locale/cs-CZ/global.properties'
--- chrome/locale/cs-CZ/global.properties 2009-07-25 19:31:00 +0000
+++ chrome/locale/cs-CZ/global.properties 2009-08-12 17:31:15 +0000
@@ -64,3 +64,4 @@
64type_label_object_subrequest=Subpožadavek objektu64type_label_object_subrequest=Subpožadavek objektu
65type_label_dtd=DTD65type_label_dtd=DTD
66type_label_media=audio/video66type_label_media=audio/video
67type_label_font=Písmo
6768
=== modified file 'chrome/locale/cs-CZ/overlay.dtd'
--- chrome/locale/cs-CZ/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/cs-CZ/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -8,6 +8,7 @@
8<!ENTITY context.image.label "Blokovat obrázek">8<!ENTITY context.image.label "Blokovat obrázek">
9<!ENTITY context.object.label "Blokovat objekt">9<!ENTITY context.object.label "Blokovat objekt">
10<!ENTITY context.frame.label "Blokovat rámec">10<!ENTITY context.frame.label "Blokovat rámec">
11<!ENTITY context.removeWhitelist.label "Adblock Plus: Znovu povolit na této stránce">
11<!ENTITY sidebar.title "Adblock Plus: Blokovatelné objekty na zobrazené stránce">12<!ENTITY sidebar.title "Adblock Plus: Blokovatelné objekty na zobrazené stránce">
12<!ENTITY settings.label "Předvolby">13<!ENTITY settings.label "Předvolby">
13<!ENTITY settings.accesskey "d">14<!ENTITY settings.accesskey "d">
1415
=== modified file 'chrome/locale/cs-CZ/settings.dtd'
--- chrome/locale/cs-CZ/settings.dtd 2009-03-17 02:33:41 +0000
+++ chrome/locale/cs-CZ/settings.dtd 2009-08-12 17:31:15 +0000
@@ -67,6 +67,8 @@
67<!ENTITY description "Následující filtry rozhodují, které adresy budou blokovány a které budou povoleny:">67<!ENTITY description "Následující filtry rozhodují, které adresy budou blokovány a které budou povoleny:">
68<!ENTITY filter.column "Pravidlo filtru">68<!ENTITY filter.column "Pravidlo filtru">
69<!ENTITY filter.accesskey "P">69<!ENTITY filter.accesskey "P">
70<!ENTITY slow.column "Pomalé filtry">
71<!ENTITY slow.accesskey "m">
70<!ENTITY enabled.column "Aktivní">72<!ENTITY enabled.column "Aktivní">
71<!ENTITY enabled.accesskey "k">73<!ENTITY enabled.accesskey "k">
72<!ENTITY hitcount.column "Zásahy">74<!ENTITY hitcount.column "Zásahy">
7375
=== modified file 'chrome/locale/cs-CZ/sidebar.dtd'
--- chrome/locale/cs-CZ/sidebar.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/cs-CZ/sidebar.dtd 2009-08-12 17:31:15 +0000
@@ -8,6 +8,7 @@
8<!ENTITY filter.label "Filtr">8<!ENTITY filter.label "Filtr">
9<!ENTITY state.label "Stav">9<!ENTITY state.label "Stav">
10<!ENTITY size.label "Velikost">10<!ENTITY size.label "Velikost">
11<!ENTITY docDomain.label "Zdroj dokumentu">
11<!ENTITY noitems.label "Nic nebylo zablokováno">12<!ENTITY noitems.label "Nic nebylo zablokováno">
12<!ENTITY whitelisted.label "Adresa je na bílé listině">13<!ENTITY whitelisted.label "Adresa je na bílé listině">
13<!ENTITY tooltip.address.label "Adresa:">14<!ENTITY tooltip.address.label "Adresa:">
@@ -15,6 +16,7 @@
15<!ENTITY tooltip.type.blocked "(blokováno)">16<!ENTITY tooltip.type.blocked "(blokováno)">
16<!ENTITY tooltip.type.whitelisted "(na bílé listině)">17<!ENTITY tooltip.type.whitelisted "(na bílé listině)">
17<!ENTITY tooltip.size.label "Velikost:">18<!ENTITY tooltip.size.label "Velikost:">
19<!ENTITY tooltip.docDomain.label "Zdroj dokumentu:">
18<!ENTITY tooltip.filter.label "Použité filtry:">20<!ENTITY tooltip.filter.label "Použité filtry:">
19<!ENTITY tooltip.filterSource.label "Zdroj filtru:">21<!ENTITY tooltip.filterSource.label "Zdroj filtru:">
20<!ENTITY context.block.label "Blokovat tento objekt">22<!ENTITY context.block.label "Blokovat tento objekt">
2123
=== modified file 'chrome/locale/de-DE/about.dtd'
--- chrome/locale/de-DE/about.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/de-DE/about.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Über Adblock Plus">1<!ENTITY dialog.title "Über Adblock Plus">
262
27<!ENTITY caption.title "Adblock Plus">3<!ENTITY caption.title "Adblock Plus">
284
=== modified file 'chrome/locale/de-DE/composer.dtd'
--- chrome/locale/de-DE/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/de-DE/composer.dtd 2009-08-12 17:24:40 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Neuen Filter hinzufügen">1<!ENTITY dialog.title "Neuen Filter hinzufügen">
26<!ENTITY accept.label "Filter hinzufügen">2<!ENTITY accept.label "Filter hinzufügen">
27<!ENTITY advanced.label "Erweiterte Ansicht">3<!ENTITY advanced.label "Erweiterte Ansicht">
284
=== modified file 'chrome/locale/de-DE/global.properties'
--- chrome/locale/de-DE/global.properties 2009-07-25 19:31:00 +0000
+++ chrome/locale/de-DE/global.properties 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1# ***** BEGIN LICENSE BLOCK *****
2# Version: MPL 1.1
3#
4# The contents of this file are subject to the Mozilla Public License Version
5# 1.1 (the "License"); you may not use this file except in compliance with
6# the License. You may obtain a copy of the License at
7# http://www.mozilla.org/MPL/
8#
9# Software distributed under the License is distributed on an "AS IS" basis,
10# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11# for the specific language governing rights and limitations under the
12# License.
13#
14# The Original Code is Adblock Plus.
15#
16# The Initial Developer of the Original Code is
17# Wladimir Palant.
18# Portions created by the Initial Developer are Copyright (C) 2006-2009
19# the Initial Developer. All Rights Reserved.
20#
21# Contributor(s):
22#
23# ***** END LICENSE BLOCK *****
24
25extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Werbung war gestern!1extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Werbung war gestern!
262
27status_active_label=Adblock3status_active_label=Adblock
284
=== modified file 'chrome/locale/de-DE/overlay.dtd'
--- chrome/locale/de-DE/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/de-DE/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY status.tooltip "Status:">1<!ENTITY status.tooltip "Status:">
26<!ENTITY blocked.tooltip "Blockierte Elemente auf dieser Seite:">2<!ENTITY blocked.tooltip "Blockierte Elemente auf dieser Seite:">
27<!ENTITY filters.tooltip "Am meisten angewandte Filter:">3<!ENTITY filters.tooltip "Am meisten angewandte Filter:">
284
=== modified file 'chrome/locale/de-DE/settings.dtd'
--- chrome/locale/de-DE/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/de-DE/settings.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Adblock Plus - Einstellungen">1<!ENTITY dialog.title "Adblock Plus - Einstellungen">
262
27<!ENTITY filters.label "Filter">3<!ENTITY filters.label "Filter">
284
=== modified file 'chrome/locale/de-DE/sidebar.dtd'
--- chrome/locale/de-DE/sidebar.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/de-DE/sidebar.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY detached.title "Adblock Plus: Elemente der geöffneten Seite (abgekoppelt)">1<!ENTITY detached.title "Adblock Plus: Elemente der geöffneten Seite (abgekoppelt)">
262
27<!ENTITY detach.label "Abkoppeln">3<!ENTITY detach.label "Abkoppeln">
284
=== modified file 'chrome/locale/de-DE/subscription.dtd'
--- chrome/locale/de-DE/subscription.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/de-DE/subscription.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Filter-Abonnement bearbeiten">1<!ENTITY dialog.title "Filter-Abonnement bearbeiten">
26<!ENTITY dialog.newtitle "Filter-Abonnement hinzufügen">2<!ENTITY dialog.newtitle "Filter-Abonnement hinzufügen">
273
284
=== modified file 'chrome/locale/de-DE/tip_subscriptions.dtd'
--- chrome/locale/de-DE/tip_subscriptions.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/de-DE/tip_subscriptions.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Filterabonnement für Adblock Plus hinzufügen">1<!ENTITY dialog.title "Filterabonnement für Adblock Plus hinzufügen">
262
27<!ENTITY description.par1 "3<!ENTITY description.par1 "
284
=== modified file 'chrome/locale/en-US/about.dtd'
--- chrome/locale/en-US/about.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/en-US/about.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "About Adblock Plus">1<!ENTITY dialog.title "About Adblock Plus">
262
27<!ENTITY caption.title "Adblock Plus">3<!ENTITY caption.title "Adblock Plus">
284
=== modified file 'chrome/locale/en-US/composer.dtd'
--- chrome/locale/en-US/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/en-US/composer.dtd 2009-08-12 17:24:40 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Add Adblock Plus filter rule">1<!ENTITY dialog.title "Add Adblock Plus filter rule">
26<!ENTITY accept.label "Add filter">2<!ENTITY accept.label "Add filter">
27<!ENTITY advanced.label "Advanced view">3<!ENTITY advanced.label "Advanced view">
284
=== modified file 'chrome/locale/en-US/global.properties'
--- chrome/locale/en-US/global.properties 2009-07-25 19:31:00 +0000
+++ chrome/locale/en-US/global.properties 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1# ***** BEGIN LICENSE BLOCK *****
2# Version: MPL 1.1
3#
4# The contents of this file are subject to the Mozilla Public License Version
5# 1.1 (the "License"); you may not use this file except in compliance with
6# the License. You may obtain a copy of the License at
7# http://www.mozilla.org/MPL/
8#
9# Software distributed under the License is distributed on an "AS IS" basis,
10# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11# for the specific language governing rights and limitations under the
12# License.
13#
14# The Original Code is Adblock Plus.
15#
16# The Initial Developer of the Original Code is
17# Wladimir Palant.
18# Portions created by the Initial Developer are Copyright (C) 2006-2009
19# the Initial Developer. All Rights Reserved.
20#
21# Contributor(s):
22#
23# ***** END LICENSE BLOCK *****
24
25extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Ads were yesterday!1extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Ads were yesterday!
262
27status_active_label=Adblock3status_active_label=Adblock
284
=== modified file 'chrome/locale/en-US/overlay.dtd'
--- chrome/locale/en-US/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/en-US/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY status.tooltip "Status:">1<!ENTITY status.tooltip "Status:">
26<!ENTITY blocked.tooltip "Blocked items on this page:">2<!ENTITY blocked.tooltip "Blocked items on this page:">
27<!ENTITY filters.tooltip "Most active filters:">3<!ENTITY filters.tooltip "Most active filters:">
284
=== modified file 'chrome/locale/en-US/settings.dtd'
--- chrome/locale/en-US/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/en-US/settings.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Adblock Plus Preferences">1<!ENTITY dialog.title "Adblock Plus Preferences">
262
27<!ENTITY filters.label "Filters">3<!ENTITY filters.label "Filters">
284
=== modified file 'chrome/locale/en-US/sidebar.dtd'
--- chrome/locale/en-US/sidebar.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/en-US/sidebar.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY detached.title "Adblock Plus: Blockable items (detached)">1<!ENTITY detached.title "Adblock Plus: Blockable items (detached)">
262
27<!ENTITY detach.label "Detach">3<!ENTITY detach.label "Detach">
284
=== modified file 'chrome/locale/en-US/subscription.dtd'
--- chrome/locale/en-US/subscription.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/en-US/subscription.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Edit filter subscription">1<!ENTITY dialog.title "Edit filter subscription">
26<!ENTITY dialog.newtitle "Add filter subscription">2<!ENTITY dialog.newtitle "Add filter subscription">
273
284
=== modified file 'chrome/locale/en-US/tip_subscriptions.dtd'
--- chrome/locale/en-US/tip_subscriptions.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/en-US/tip_subscriptions.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Add Adblock Plus filter subscription">1<!ENTITY dialog.title "Add Adblock Plus filter subscription">
262
27<!ENTITY description.par1 "3<!ENTITY description.par1 "
284
=== modified file 'chrome/locale/es-ES/tip_subscriptions.dtd'
--- chrome/locale/es-ES/tip_subscriptions.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/es-ES/tip_subscriptions.dtd 2009-08-12 17:31:15 +0000
@@ -1,24 +1,24 @@
1<!ENTITY dialog.title "Añadir suscripción de filtros para Adblock Plus">1<!ENTITY dialog.title "Añadir suscripción de filtros para Adblock Plus">
2<!ENTITY description.par1 "Gracias por instalar Adblock Plus. Este complemento puede2<!ENTITY description.par1 "Gracias por instalar Adblock Plus. Este complemento puede
3 eliminar el 99&#x25; de los anuncios que ve en la web. Sin 3 eliminar el 99&#x25; de los anuncios que ve en la web. Sin
4 embargo, para filtrar eficazmente los anuncios tiene que4 embargo, para filtrar eficazmente los anuncios tiene que
5 definir unos buenos filtros. Puede hacerlo usted mismo, 5 definir unos buenos filtros. Puede hacerlo usted mismo,
6 o puede suscribirse simplemente a las listas de filtros 6 o puede suscribirse simplemente a las listas de filtros
7 que otros mantienen para usted. Y seguirá pudiendo añadir 7 que otros mantienen para usted. Y seguirá pudiendo añadir
8 sus propios filtros o desactivar/eliminar las suscripciones 8 sus propios filtros o desactivar/eliminar las suscripciones
9 siempre que lo desee.">9 siempre que lo desee.">
10<!ENTITY description.par2 "Puede elegir una suscripción de la lista de suscripciones 10<!ENTITY description.par2 "Puede elegir una suscripción de la lista de suscripciones
11 recomendadas más abajo (puede añadir posteriormente otras 11 recomendadas más abajo (puede añadir posteriormente otras
12 suscripciones en la ventana de Preferencias de Adblock Plus, 12 suscripciones en la ventana de Preferencias de Adblock Plus,
13 aunque no suele ser necesario):">13 aunque no suele ser necesario):">
14<!ENTITY note "Nota: Una lista de filtros suele ser más eficaz cuando se aplica 14<!ENTITY note "Nota: Una lista de filtros suele ser más eficaz cuando se aplica
15 a sitios web de la región para la que ha sido desarrollada.">15 a sitios web de la región para la que ha sido desarrollada.">
16<!ENTITY adblock.warning "Adblock Plus ha detectado que está instalado Adblock o una versión antigua de 16<!ENTITY adblock.warning "Adblock Plus ha detectado que está instalado Adblock o una versión antigua de
17Adblock Plus. Utilizar Adblock y Adblock Plus de forma simultánea puede causar17Adblock Plus. Utilizar Adblock y Adblock Plus de forma simultánea puede causar
18problemas y está totalmente desaconsejado. Le recomendamos que desinstale Adblock ahora.">18problemas y está totalmente desaconsejado. Le recomendamos que desinstale Adblock ahora.">
19<!ENTITY adblock.uninstall "Desinstalar Adblock">19<!ENTITY adblock.uninstall "Desinstalar Adblock">
20<!ENTITY filterset.g.warning "Parece que usted utiliza Filterset.G. Esta lista de filtros apenas ha 20<!ENTITY filterset.g.warning "Parece que usted utiliza Filterset.G. Esta lista de filtros apenas ha
21tenido mantenimiento en los últimos años y suele causar problemas con21tenido mantenimiento en los últimos años y suele causar problemas con
22diversos sitios web. Le recomendamos que desinstale Filterset.G ahora.">22diversos sitios web. Le recomendamos que desinstale Filterset.G ahora.">
23<!ENTITY filterset.g.moreinfo "Más información">23<!ENTITY filterset.g.moreinfo "Más información">
24<!ENTITY filterset.g.moreinfo.url "http://adblockplus.org/en/faq_project#filterset.g">24<!ENTITY filterset.g.moreinfo.url "http://adblockplus.org/en/faq_project#filterset.g">
2525
=== modified file 'chrome/locale/fi-FI/composer.dtd'
--- chrome/locale/fi-FI/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/fi-FI/composer.dtd 2009-08-12 17:24:40 +0000
@@ -5,8 +5,8 @@
5<!ENTITY disabled.warning.beforeLink "Adblock Plus on tällä hetkellä poistettu käytöstä. Voit silti lisätä suodattimia mutta ne otetaan käyttöön vasta kun,">5<!ENTITY disabled.warning.beforeLink "Adblock Plus on tällä hetkellä poistettu käytöstä. Voit silti lisätä suodattimia mutta ne otetaan käyttöön vasta kun,">
6<!ENTITY disabled.warning.link "otat Adblockin Plussan käyttöön">6<!ENTITY disabled.warning.link "otat Adblockin Plussan käyttöön">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "Suodatinryhmä &quot;&#37;S&quot;, johon tämä suodatin lisätään on poistettu käytöstä. Voit silti lisätä tämän suodattimen mutta sitä ei käytetä ellet">8<!ENTITY groupDisabled.warning.beforeLink "Suodatinryhmä &quot;&#x25;S&quot;, johon tämä suodatin tulisi lisätä on poistettu käytöstä. Voit silti lisätä tämän suodattimen mutta sitä ei oteta käyttöön ellet">
9<!ENTITY groupDisabled.warning.link "ota suodatin ryhmää käyttöön">9<!ENTITY groupDisabled.warning.link "ota suodatinryhmää käyttöön">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Uusi suodatin:">11<!ENTITY filter.label "Uusi suodatin:">
12<!ENTITY filter.accesskey "U">12<!ENTITY filter.accesskey "U">
@@ -25,7 +25,7 @@
25<!ENTITY anchors.label "Hyväksy merkkijono vain:">25<!ENTITY anchors.label "Hyväksy merkkijono vain:">
26<!ENTITY anchor.start.label "osoitteen alussa">26<!ENTITY anchor.start.label "osoitteen alussa">
27<!ENTITY anchor.start.accesskey "t">27<!ENTITY anchor.start.accesskey "t">
28<!ENTITY anchor.start.flexible.label "vain verkkotunnuksen alussa">28<!ENTITY anchor.start.flexible.label "verkkotunnuksen alussa.">
29<!ENTITY anchor.start.flexible.accesskey "t">29<!ENTITY anchor.start.flexible.accesskey "t">
30<!ENTITY anchor.end.label "osoitteen lopussa">30<!ENTITY anchor.end.label "osoitteen lopussa">
31<!ENTITY anchor.end.accesskey "l">31<!ENTITY anchor.end.accesskey "l">
3232
=== modified file 'chrome/locale/fi-FI/overlay.dtd'
--- chrome/locale/fi-FI/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/fi-FI/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -8,7 +8,7 @@
8<!ENTITY context.image.label "Estä kuva Adblockilla">8<!ENTITY context.image.label "Estä kuva Adblockilla">
9<!ENTITY context.object.label "Estä kohde Adblockilla">9<!ENTITY context.object.label "Estä kohde Adblockilla">
10<!ENTITY context.frame.label "Estä kehys Adblockilla">10<!ENTITY context.frame.label "Estä kehys Adblockilla">
11<!ENTITY context.removeWhitelist.label "Adblock Plus: Ota tämä sivu uudelleen käyttöön">11<!ENTITY context.removeWhitelist.label "Adblock Plus: Ota tämä sivu uudestaan käyttöön">
12<!ENTITY sidebar.title "Estettävät elementit avoimella sivulla">12<!ENTITY sidebar.title "Estettävät elementit avoimella sivulla">
13<!ENTITY settings.label "Asetukset">13<!ENTITY settings.label "Asetukset">
14<!ENTITY settings.accesskey "A">14<!ENTITY settings.accesskey "A">
1515
=== modified file 'chrome/locale/fi-FI/sidebar.dtd'
--- chrome/locale/fi-FI/sidebar.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/fi-FI/sidebar.dtd 2009-08-12 17:31:15 +0000
@@ -8,7 +8,7 @@
8<!ENTITY filter.label "Suodatin">8<!ENTITY filter.label "Suodatin">
9<!ENTITY state.label "Tila">9<!ENTITY state.label "Tila">
10<!ENTITY size.label "Koko">10<!ENTITY size.label "Koko">
11<!ENTITY docDomain.label "Asiakirjan alkuperä">11<!ENTITY docDomain.label "Dokumentin lähde">
12<!ENTITY noitems.label "Ei estettäviä elementtejä">12<!ENTITY noitems.label "Ei estettäviä elementtejä">
13<!ENTITY whitelisted.label "Sallittu sivu">13<!ENTITY whitelisted.label "Sallittu sivu">
14<!ENTITY tooltip.address.label "Osoite:">14<!ENTITY tooltip.address.label "Osoite:">
@@ -16,7 +16,7 @@
16<!ENTITY tooltip.type.blocked "(estetty)">16<!ENTITY tooltip.type.blocked "(estetty)">
17<!ENTITY tooltip.type.whitelisted "(sallittu)">17<!ENTITY tooltip.type.whitelisted "(sallittu)">
18<!ENTITY tooltip.size.label "Koko:">18<!ENTITY tooltip.size.label "Koko:">
19<!ENTITY tooltip.docDomain.label "Asiakirjan alkuperä">19<!ENTITY tooltip.docDomain.label "Dokumentin lähde:">
20<!ENTITY tooltip.filter.label "Vaikuttava suodatin:">20<!ENTITY tooltip.filter.label "Vaikuttava suodatin:">
21<!ENTITY tooltip.filterSource.label "Suodattimen lähde:">21<!ENTITY tooltip.filterSource.label "Suodattimen lähde:">
22<!ENTITY context.block.label "Estä elementti">22<!ENTITY context.block.label "Estä elementti">
2323
=== modified file 'chrome/locale/fy-NL/composer.dtd'
--- chrome/locale/fy-NL/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/fy-NL/composer.dtd 2009-08-12 17:24:40 +0000
@@ -5,7 +5,7 @@
5<!ENTITY disabled.warning.beforeLink "Adblock Plus is op dit stuit útskeakele. Jo kinne noch hieltyd filters tafoegje, mar dy sille net earder aktyf wêze as jo">5<!ENTITY disabled.warning.beforeLink "Adblock Plus is op dit stuit útskeakele. Jo kinne noch hieltyd filters tafoegje, mar dy sille net earder aktyf wêze as jo">
6<!ENTITY disabled.warning.link "Adblock Plus ynskeakelje">6<!ENTITY disabled.warning.link "Adblock Plus ynskeakelje">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "De filtergroep &quot;&#x25;S&quot;wêr&apos;t dit filter oan tafoege wurde soe is op dit stuit útskeakele. Jo kinne noch hieltyd it filter tafoegje, mar it sil net tapast wurde útsein as jo">8<!ENTITY groupDisabled.warning.beforeLink "De filtergroep &quot;&#x25;S&quot; wêr&apos;t dit filter oan tafoege wurde soe is op dit stuit útskeakele. Jo kinne it filter noch hieltyd tafoegje, mar it sil net tapast wurde, allinnich as jo">
9<!ENTITY groupDisabled.warning.link "de filtergroep ynskeakelje">9<!ENTITY groupDisabled.warning.link "de filtergroep ynskeakelje">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Nij filter:">11<!ENTITY filter.label "Nij filter:">
1212
=== modified file 'chrome/locale/fy-NL/global.properties'
--- chrome/locale/fy-NL/global.properties 2009-07-25 19:31:00 +0000
+++ chrome/locale/fy-NL/global.properties 2009-08-12 17:31:15 +0000
@@ -64,4 +64,4 @@
64type_label_object_subrequest=objekt subfersyk64type_label_object_subrequest=objekt subfersyk
65type_label_dtd=DTD65type_label_dtd=DTD
66type_label_media=audio/fideo66type_label_media=audio/fideo
67type_label_font=font67type_label_font=lettertype
6868
=== modified file 'chrome/locale/fy-NL/overlay.dtd'
--- chrome/locale/fy-NL/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/fy-NL/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -8,7 +8,7 @@
8<!ENTITY context.image.label "Ofbylding blokkearje">8<!ENTITY context.image.label "Ofbylding blokkearje">
9<!ENTITY context.object.label "Objekt blokkearje">9<!ENTITY context.object.label "Objekt blokkearje">
10<!ENTITY context.frame.label "Dielfinster blokkearje">10<!ENTITY context.frame.label "Dielfinster blokkearje">
11<!ENTITY context.removeWhitelist.label "Adblock Plus: Opnij ynskeakelje op dizze side">11<!ENTITY context.removeWhitelist.label "Adblock Plus: opnij ynskeakelje op dizze side">
12<!ENTITY sidebar.title "Blokkearbere ûnderdelen op dizze side">12<!ENTITY sidebar.title "Blokkearbere ûnderdelen op dizze side">
13<!ENTITY settings.label "Foarkarren">13<!ENTITY settings.label "Foarkarren">
14<!ENTITY settings.accesskey "F">14<!ENTITY settings.accesskey "F">
1515
=== modified file 'chrome/locale/he-IL/about.dtd'
--- chrome/locale/he-IL/about.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/he-IL/about.dtd 2009-08-12 17:31:15 +0000
@@ -1,7 +1,7 @@
1<!ENTITY dialog.title "Adblock Plus אודות">1<!ENTITY dialog.title "Adblock Plus אודות">
2<!ENTITY caption.title "Adblock Plus">2<!ENTITY caption.title "Adblock Plus">
3<!ENTITY version.title "גירסה">3<!ENTITY version.title "גירסה">
4<!ENTITY description "Adblock Plus מאפשר להחליט מה רוצים לראות ברשת.4<!ENTITY description "Adblock Plus מאפשר להחליט מה רוצים לראות ברשת.
5אין צורך יותר להוריד את כל הפרסומות והבאנרים יותר, אם לא רוצים אותם - ספר ל-Adblock Plus!">5אין צורך יותר להוריד את כל הפרסומות והבאנרים יותר, אם לא רוצים אותם - ספר ל-Adblock Plus!">
6<!ENTITY homepage.label "עמוד הבית של Adblock Plus">6<!ENTITY homepage.label "עמוד הבית של Adblock Plus">
7<!ENTITY homepage.url "http://adblockplus.org/">7<!ENTITY homepage.url "http://adblockplus.org/">
88
=== modified file 'chrome/locale/he-IL/tip_subscriptions.dtd'
--- chrome/locale/he-IL/tip_subscriptions.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/he-IL/tip_subscriptions.dtd 2009-08-12 17:31:15 +0000
@@ -1,9 +1,9 @@
1<!ENTITY dialog.title "ברוכים הבאים ל-Adblock Plus">1<!ENTITY dialog.title "ברוכים הבאים ל-Adblock Plus">
2<!ENTITY description.par1 "תודה שהתקנתם את Adblock Plus. ההרחבה הזאת יכולה2<!ENTITY description.par1 "תודה שהתקנתם את Adblock Plus. ההרחבה הזאת יכולה
3 לחסל 99&#37; מהפרסומות שרואים ברשת. למרות זאת,3 לחסל 99&#37; מהפרסומות שרואים ברשת. למרות זאת,
4סינון פרסומות יעיל דורש ממך להגדיר מערכת טובה של4סינון פרסומות יעיל דורש ממך להגדיר מערכת טובה של
5מסננים. ניתן לעשות זאת לבד, או פשוט להרשם5מסננים. ניתן לעשות זאת לבד, או פשוט להרשם
6לרשימות מסננים שאחרים מתחזקים עבורך. עדיין ניתן להוסיף6לרשימות מסננים שאחרים מתחזקים עבורך. עדיין ניתן להוסיף
7מסננים משלך או לנטרל/להסיר הרשמות בכל זמן שיהיה צורך.">7מסננים משלך או לנטרל/להסיר הרשמות בכל זמן שיהיה צורך.">
8<!ENTITY description.par2 "ניתן לבחור הרשמה אחת מהרשימה של ההרשמות המומלצות (אפשר להוסיף עוד הרשמות אחר כך בהגדרות של Adblock Plus, אבל בדרך כלל אין צורך בכך):">8<!ENTITY description.par2 "ניתן לבחור הרשמה אחת מהרשימה של ההרשמות המומלצות (אפשר להוסיף עוד הרשמות אחר כך בהגדרות של Adblock Plus, אבל בדרך כלל אין צורך בכך):">
9<!ENTITY note "הערה: בדרך הטבע, רשימת המסננים יותר יעילה כשהיא משמשת לסוג האתרים עבורו היא נכתבה.">9<!ENTITY note "הערה: בדרך הטבע, רשימת המסננים יותר יעילה כשהיא משמשת לסוג האתרים עבורו היא נכתבה.">
1010
=== modified file 'chrome/locale/hu-HU/composer.dtd'
--- chrome/locale/hu-HU/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hu-HU/composer.dtd 2009-08-12 17:24:40 +0000
@@ -2,11 +2,11 @@
2<!ENTITY accept.label "Szűrő hozzáadása">2<!ENTITY accept.label "Szűrő hozzáadása">
3<!ENTITY advanced.label "Haladó nézet">3<!ENTITY advanced.label "Haladó nézet">
4<!ENTITY basic.label "Alap nézet">4<!ENTITY basic.label "Alap nézet">
5<!ENTITY disabled.warning.beforeLink "Az Adblock Plus jelenleg le van tiltva. Szűrőket hozzáadhat, de azok nem lesznek elérhetőek,">5<!ENTITY disabled.warning.beforeLink "Az Adblock Plus jelenleg le van tiltva. Szűrőket hozzáadhat, de azok nem fognak működni,">
6<!ENTITY disabled.warning.link "amíg az Adblock Plus nincs engedélyezve">6<!ENTITY disabled.warning.link "amíg az Adblock Plus nincs engedélyezve">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "A &quot;&#x25;S&quot; szűrőcsoport jelenleg le van tiltva. Hozzáadhatja a szűrőt, de az nem lesz használatban">8<!ENTITY groupDisabled.warning.beforeLink "A szűrőcsoport, amelyhez hozzá szeretné adni a szűrőt le van tiltva. Hozzáadás után a szűrő csak akkor fog működni, ha">
9<!ENTITY groupDisabled.warning.link "amíg nem engedélyezi a szűrőcsoportot">9<!ENTITY groupDisabled.warning.link "engedélyezi a csoportot">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Új szűrő:">11<!ENTITY filter.label "Új szűrő:">
12<!ENTITY filter.accesskey "j">12<!ENTITY filter.accesskey "j">
@@ -26,6 +26,7 @@
26<!ENTITY anchor.start.label "a cím elején">26<!ENTITY anchor.start.label "a cím elején">
27<!ENTITY anchor.start.accesskey "e">27<!ENTITY anchor.start.accesskey "e">
28<!ENTITY anchor.start.flexible.label "a tartománynév elején">28<!ENTITY anchor.start.flexible.label "a tartománynév elején">
29<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->
29<!ENTITY anchor.start.flexible.accesskey "e">30<!ENTITY anchor.start.flexible.accesskey "e">
30<!ENTITY anchor.end.label "a cím végén">31<!ENTITY anchor.end.label "a cím végén">
31<!ENTITY anchor.end.accesskey "v">32<!ENTITY anchor.end.accesskey "v">
3233
=== modified file 'chrome/locale/hu-HU/overlay.dtd'
--- chrome/locale/hu-HU/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/hu-HU/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -8,13 +8,14 @@
8<!ENTITY context.image.label "Kép blokkolása">8<!ENTITY context.image.label "Kép blokkolása">
9<!ENTITY context.object.label "Objektum blokkolása">9<!ENTITY context.object.label "Objektum blokkolása">
10<!ENTITY context.frame.label "Keret blokkolása">10<!ENTITY context.frame.label "Keret blokkolása">
11<!ENTITY context.removeWhitelist.label "Adblock Plus: Újra-aktiválás ezen az oldalon">11<!ENTITY context.removeWhitelist.label "Adblock Plus: Újra-engedélyezés ezen az oldalon">
12<!ENTITY sidebar.title "Blokkolható objektumok">12<!ENTITY sidebar.title "Blokkolható objektumok">
13<!ENTITY settings.label "Beállítások">13<!ENTITY settings.label "Beállítások">
14<!ENTITY settings.accesskey "B">14<!ENTITY settings.accesskey "B">
15<!ENTITY opensidebar.label "Blokkolható objektumok megjelenítése">15<!ENTITY opensidebar.label "Blokkolható objektumok megjelenítése">
16<!ENTITY opensidebar.accesskey "j">16<!ENTITY opensidebar.accesskey "j">
17<!ENTITY closesidebar.label "Blokkolható objektumok elrejtése">17<!ENTITY closesidebar.label "Blokkolható objektumok elrejtése">
18<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
18<!ENTITY closesidebar.accesskey "j">19<!ENTITY closesidebar.accesskey "j">
19<!ENTITY whitelist.site.label "Szűrés tiltása itt: --">20<!ENTITY whitelist.site.label "Szűrés tiltása itt: --">
20<!ENTITY whitelist.page.label "Szűrés tiltása csak ezen az aloldalon">21<!ENTITY whitelist.page.label "Szűrés tiltása csak ezen az aloldalon">
2122
=== modified file 'chrome/locale/hu-HU/sidebar.dtd'
--- chrome/locale/hu-HU/sidebar.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/hu-HU/sidebar.dtd 2009-08-12 17:31:15 +0000
@@ -8,7 +8,7 @@
8<!ENTITY filter.label "Szűrő">8<!ENTITY filter.label "Szűrő">
9<!ENTITY state.label "Állapot">9<!ENTITY state.label "Állapot">
10<!ENTITY size.label "Méret">10<!ENTITY size.label "Méret">
11<!ENTITY docDomain.label "Dokumentum forrása">11<!ENTITY docDomain.label "Dokumentum forrás">
12<!ENTITY noitems.label "Nincs blokkolható objektum">12<!ENTITY noitems.label "Nincs blokkolható objektum">
13<!ENTITY whitelisted.label "A cím &apos;fehér listán&apos; van">13<!ENTITY whitelisted.label "A cím &apos;fehér listán&apos; van">
14<!ENTITY tooltip.address.label "Cím:">14<!ENTITY tooltip.address.label "Cím:">
@@ -16,7 +16,7 @@
16<!ENTITY tooltip.type.blocked "(blokkolva)">16<!ENTITY tooltip.type.blocked "(blokkolva)">
17<!ENTITY tooltip.type.whitelisted "(fehér listán)">17<!ENTITY tooltip.type.whitelisted "(fehér listán)">
18<!ENTITY tooltip.size.label "Méret:">18<!ENTITY tooltip.size.label "Méret:">
19<!ENTITY tooltip.docDomain.label "Dokumentum forrása:">19<!ENTITY tooltip.docDomain.label "Dokumentum forrás:">
20<!ENTITY tooltip.filter.label "Alkalmazott szűrők:">20<!ENTITY tooltip.filter.label "Alkalmazott szűrők:">
21<!ENTITY tooltip.filterSource.label "Szűrő forrása:">21<!ENTITY tooltip.filterSource.label "Szűrő forrása:">
22<!ENTITY context.block.label "Objektum blokkolása">22<!ENTITY context.block.label "Objektum blokkolása">
2323
=== modified file 'chrome/locale/hy-AM/about.dtd'
--- chrome/locale/hy-AM/about.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/about.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY dialog.title "«Adblock Plus»ի մասին">1<!ENTITY dialog.title "«Adblock Plus»ի մասին">
27<!ENTITY caption.title "Adblock Plus">2<!ENTITY caption.title "Adblock Plus">
28<!ENTITY version.title "Տարբերակ.">3<!ENTITY version.title "Տարբերակ.">
294
=== modified file 'chrome/locale/hy-AM/composer.dtd'
--- chrome/locale/hy-AM/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/composer.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY dialog.title "Ավելացնել «Adblock Plus» ֆիլտրման կանոն">1<!ENTITY dialog.title "Ավելացնել «Adblock Plus» ֆիլտրման կանոն">
27<!ENTITY accept.label "Ավելացնել ֆիլտր">2<!ENTITY accept.label "Ավելացնել ֆիլտր">
28<!ENTITY advanced.label "Ընդլայնված տեսք">3<!ENTITY advanced.label "Ընդլայնված տեսք">
@@ -49,10 +24,10 @@
49<!ENTITY custom.pattern.accesskey "փ">24<!ENTITY custom.pattern.accesskey "փ">
50<!ENTITY anchors.label "Շաբլոններն ընդունել միայն.">25<!ENTITY anchors.label "Շաբլոններն ընդունել միայն.">
51<!ENTITY anchor.start.label "հասցեի սկզբում">26<!ENTITY anchor.start.label "հասցեի սկզբում">
52<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->27<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->
53<!ENTITY anchor.start.accesskey "ս">28<!ENTITY anchor.start.accesskey "ս">
54<!ENTITY anchor.start.flexible.label "դոմեյնի անվան սկզբում">29<!ENTITY anchor.start.flexible.label "դոմեյնի անվան սկզբում">
55<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter. -->30<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter. -->
56<!ENTITY anchor.start.flexible.accesskey "ս">31<!ENTITY anchor.start.flexible.accesskey "ս">
57<!ENTITY anchor.end.label "հասցեի վերջում">32<!ENTITY anchor.end.label "հասցեի վերջում">
58<!ENTITY anchor.end.accesskey "վ">33<!ENTITY anchor.end.accesskey "վ">
5934
=== modified file 'chrome/locale/hy-AM/global.properties'
--- chrome/locale/hy-AM/global.properties 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/global.properties 2009-08-12 17:24:40 +0000
@@ -1,49 +1,3 @@
1# ***** BEGIN LICENSE BLOCK *****
2
3# Version: MPL 1.1
4
5#
6
7# The contents of this file are subject to the Mozilla Public License Version
8
9# 1.1 (the "License"); you may not use this file except in compliance with
10
11# the License. You may obtain a copy of the License at
12
13# http://www.mozilla.org/MPL/
14
15#
16
17# Software distributed under the License is distributed on an "AS IS" basis,
18
19# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
20
21# for the specific language governing rights and limitations under the
22
23# License.
24
25#
26
27# The Original Code is Adblock Plus.
28
29#
30
31# The Initial Developer of the Original Code is
32
33# Wladimir Palant.
34
35# Portions created by the Initial Developer are Copyright (C) 2006-2009
36
37# the Initial Developer. All Rights Reserved.
38
39#
40
41# Contributor(s):
42
43#
44
45# ***** END LICENSE BLOCK *****
46
47extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Գովազդները երեկ էին!1extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Գովազդները երեկ էին!
48status_active_label=Adblock2status_active_label=Adblock
49status_disabled_label=Անջատված է3status_disabled_label=Անջատված է
504
=== modified file 'chrome/locale/hy-AM/overlay.dtd'
--- chrome/locale/hy-AM/overlay.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/overlay.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY status.tooltip "Վիճակը.">1<!ENTITY status.tooltip "Վիճակը.">
27<!ENTITY blocked.tooltip "Այս էջի ֆիլտրված տարրերը`">2<!ENTITY blocked.tooltip "Այս էջի ֆիլտրված տարրերը`">
28<!ENTITY filters.tooltip "Ամենաակտիվ ֆիլտրերը`">3<!ENTITY filters.tooltip "Ամենաակտիվ ֆիլտրերը`">
@@ -33,15 +8,15 @@
33<!ENTITY context.image.label "Adblock` Ֆիլտրել Նկարը">8<!ENTITY context.image.label "Adblock` Ֆիլտրել Նկարը">
34<!ENTITY context.object.label "Adblock` Ֆիլտրել Օբյեկտը">9<!ENTITY context.object.label "Adblock` Ֆիլտրել Օբյեկտը">
35<!ENTITY context.frame.label "Adblock` Ֆիլտրել Ֆրեյմը">10<!ENTITY context.frame.label "Adblock` Ֆիլտրել Ֆրեյմը">
36<!ENTITY context.removeWhitelist.label "Adblock Plus` Վերակտիվացնել այս էջում">11<!ENTITY context.removeWhitelist.label "Adblock Plus: Վերակտիվացնել այս էջում">
37<!ENTITY sidebar.title "Այս էջի ֆիլտրվող տարրերը">12<!ENTITY sidebar.title "Այս էջի ֆիլտրվող տարրերը">
38<!ENTITY settings.label "Նախընտրանքներ">13<!ENTITY settings.label "Նախընտրանքներ">
39<!ENTITY settings.accesskey "Ն">14<!ENTITY settings.accesskey "Ն">
40<!ENTITY opensidebar.label "Բացել ֆիլտրվող տարրերը">15<!ENTITY opensidebar.label "Բացել ֆիլտրվող տարրերը">
41<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->16<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
42<!ENTITY opensidebar.accesskey "տ">17<!ENTITY opensidebar.accesskey "տ">
43<!ENTITY closesidebar.label "Փակել ֆիլտրվող տարրերը">18<!ENTITY closesidebar.label "Փակել ֆիլտրվող տարրերը">
44<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->19<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
45<!ENTITY closesidebar.accesskey "տ">20<!ENTITY closesidebar.accesskey "տ">
46<!ENTITY whitelist.site.label "Անջատել այս կայքում">21<!ENTITY whitelist.site.label "Անջատել այս կայքում">
47<!ENTITY whitelist.page.label "Անջատել միայն այս էջի համար">22<!ENTITY whitelist.page.label "Անջատել միայն այս էջի համար">
4823
=== modified file 'chrome/locale/hy-AM/settings.dtd'
--- chrome/locale/hy-AM/settings.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/settings.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY dialog.title "Adblock Plus - Նախընտրանքներ">1<!ENTITY dialog.title "Adblock Plus - Նախընտրանքներ">
27<!ENTITY filters.label "Ֆիլտրեր">2<!ENTITY filters.label "Ֆիլտրեր">
28<!ENTITY filters.accesskey "տ">3<!ENTITY filters.accesskey "տ">
294
=== modified file 'chrome/locale/hy-AM/sidebar.dtd'
--- chrome/locale/hy-AM/sidebar.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/sidebar.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY detached.title "Adblock Plus - Ֆիլտրվվող տարրեր (Անջատ)">1<!ENTITY detached.title "Adblock Plus - Ֆիլտրվվող տարրեր (Անջատ)">
27<!ENTITY detach.label "Անջատ պատուհան">2<!ENTITY detach.label "Անջատ պատուհան">
28<!ENTITY reattach.label "Ամրացնել">3<!ENTITY reattach.label "Ամրացնել">
294
=== modified file 'chrome/locale/hy-AM/subscription.dtd'
--- chrome/locale/hy-AM/subscription.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/subscription.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY dialog.title "Խմբագրել բաժանորդագրությունները">1<!ENTITY dialog.title "Խմբագրել բաժանորդագրությունները">
27<!ENTITY dialog.newtitle "Նոր բաժանորդագրություն">2<!ENTITY dialog.newtitle "Նոր բաժանորդագրություն">
28<!ENTITY new.description "3<!ENTITY new.description "
294
=== modified file 'chrome/locale/hy-AM/tip_subscriptions.dtd'
--- chrome/locale/hy-AM/tip_subscriptions.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/hy-AM/tip_subscriptions.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY dialog.title "Բարի գալուստ Adblock Plus">1<!ENTITY dialog.title "Բարի գալուստ Adblock Plus">
27<!ENTITY description.par1 "2<!ENTITY description.par1 "
28 Շնորհակալություն «Adblock Plus» տեղադրելու համար: Այն կօգնի Ձեզ3 Շնորհակալություն «Adblock Plus» տեղադրելու համար: Այն կօգնի Ձեզ
294
=== modified file 'chrome/locale/is-IS/composer.dtd'
--- chrome/locale/is-IS/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/is-IS/composer.dtd 2009-08-12 17:24:40 +0000
@@ -2,11 +2,11 @@
2<!ENTITY accept.label "Bæta við síu">2<!ENTITY accept.label "Bæta við síu">
3<!ENTITY advanced.label "Ítarleg sýn">3<!ENTITY advanced.label "Ítarleg sýn">
4<!ENTITY basic.label "Einföld sýn">4<!ENTITY basic.label "Einföld sýn">
5<!ENTITY disabled.warning.beforeLink "Adblock Plus er óvirtk eins og er. Þú getur samt bætt við síum en síurnar munu ekki vera virkar nema þú">5<!ENTITY disabled.warning.beforeLink "Adblock Plus er óvirkt eins og er. Þú getur samt bætt við síum en síurnar munu ekki vera virkar nema þú">
6<!ENTITY disabled.warning.link "virkja Adblock Plus">6<!ENTITY disabled.warning.link "virkjir Adblock Plus">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "Síu hópurinn &quot;&#37;S&quot; sem þessi sía ætti að bætast við er óvirkur. Þú getur samt sem áður bætt síunni við en hún mun ekki verða virk nema þú">8<!ENTITY groupDisabled.warning.beforeLink "Síuhópurinn &quot;&#37;S&quot; sem þessi sía á að bætast við er ekki virkur. Þú getur bætt síunni við en hún mun ekki verða virkjuð nema þú">
9<!ENTITY groupDisabled.warning.link "gerir síu hópinn virkan">9<!ENTITY groupDisabled.warning.link "virkjir síðuhópinn">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Ný sía:">11<!ENTITY filter.label "Ný sía:">
12<!ENTITY filter.accesskey "s">12<!ENTITY filter.accesskey "s">
@@ -25,7 +25,7 @@
25<!ENTITY anchors.label "Aðeins samþykkja mynstur:">25<!ENTITY anchors.label "Aðeins samþykkja mynstur:">
26<!ENTITY anchor.start.label "í byrjun netfangs">26<!ENTITY anchor.start.label "í byrjun netfangs">
27<!ENTITY anchor.start.accesskey "b">27<!ENTITY anchor.start.accesskey "b">
28<!ENTITY anchor.start.flexible.label "í byrjun léns">28<!ENTITY anchor.start.flexible.label "í byrjun lénsins">
29<!ENTITY anchor.start.flexible.accesskey "b">29<!ENTITY anchor.start.flexible.accesskey "b">
30<!ENTITY anchor.end.label "í enda netfangs">30<!ENTITY anchor.end.label "í enda netfangs">
31<!ENTITY anchor.end.accesskey "d">31<!ENTITY anchor.end.accesskey "d">
3232
=== modified file 'chrome/locale/is-IS/global.properties'
--- chrome/locale/is-IS/global.properties 2009-07-25 18:59:41 +0000
+++ chrome/locale/is-IS/global.properties 2009-08-12 17:24:40 +0000
@@ -7,7 +7,7 @@
7action3_tooltip=Smelltu til að virkja/gera óvirkt Adblock Plus.7action3_tooltip=Smelltu til að virkja/gera óvirkt Adblock Plus.
8active_tooltip=Adblock Plus er virkur.8active_tooltip=Adblock Plus er virkur.
9disabled_tooltip=Adblock Plus er óvirkur.9disabled_tooltip=Adblock Plus er óvirkur.
10whitelisted_tooltip=Adblock Plus er í gangi en óvirkt á núverandi síðu.10whitelisted_tooltip=Adblock Plus er í gangi en er óvirkur á núverandi síðu.
11blocked_count_tooltip=-- af --11blocked_count_tooltip=-- af --
12no_blocking_suggestions=Engir lokaðir hlutir á núverandi síðu12no_blocking_suggestions=Engir lokaðir hlutir á núverandi síðu
13whitelisted_page=Búið er að gera Adblock Plus óvirkt fyrir núverandi síðu13whitelisted_page=Búið er að gera Adblock Plus óvirkt fyrir núverandi síðu
@@ -36,7 +36,7 @@
36resethitcounts_warning=Viltu örugglega endurstilla talningar fyrir síur á núll? Ekki er hægt að afturkalla þessa aðgerð!36resethitcounts_warning=Viltu örugglega endurstilla talningar fyrir síur á núll? Ekki er hægt að afturkalla þessa aðgerð!
37resethitcounts_selected_warning=Viltu örugglega endurstilla talningar fyrir valdar síur á núll? Ekki er hægt að afturkalla þessa aðgerð!37resethitcounts_selected_warning=Viltu örugglega endurstilla talningar fyrir valdar síur á núll? Ekki er hægt að afturkalla þessa aðgerð!
38filter_regexp_tooltip=Sían er annaðhvort regluleg segð eða of stutt til að hægt sé að nota. Of margar af svona síum gætu hægt á vöfrun.38filter_regexp_tooltip=Sían er annaðhvort regluleg segð eða of stutt til að hægt sé að nota. Of margar af svona síum gætu hægt á vöfrun.
39filter_elemhide_duplicate_id=Aðeins er hægt að skrilgreina eitt auðkenni fyrir hlut sem á að fela39filter_elemhide_duplicate_id=Aðeins er hægt að skilgreina eitt auðkenni fyrir hlut sem á að fela
40filter_elemhide_nocriteria=Engin viðmiðun skilgreind til þess að bera kennsl á hlut til að fela40filter_elemhide_nocriteria=Engin viðmiðun skilgreind til þess að bera kennsl á hlut til að fela
41subscription_no_location=Sláðu inn staðsetningu til þess að niðurhala síur frá.41subscription_no_location=Sláðu inn staðsetningu til þess að niðurhala síur frá.
42subscription_invalid_location=Staðsetning síu er ekki gilt URL eða gilt skráarnafn.42subscription_invalid_location=Staðsetning síu er ekki gilt URL eða gilt skráarnafn.
4343
=== modified file 'chrome/locale/is-IS/overlay.dtd'
--- chrome/locale/is-IS/overlay.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/is-IS/overlay.dtd 2009-08-12 17:24:40 +0000
@@ -8,7 +8,7 @@
8<!ENTITY context.image.label "Loka auglýsingamynd">8<!ENTITY context.image.label "Loka auglýsingamynd">
9<!ENTITY context.object.label "Loka auglýsingahlut">9<!ENTITY context.object.label "Loka auglýsingahlut">
10<!ENTITY context.frame.label "Loka auglýsingaramma">10<!ENTITY context.frame.label "Loka auglýsingaramma">
11<!ENTITY context.removeWhitelist.label "Adblock Plus: Virkja aftur á þessari síðu">11<!ENTITY context.removeWhitelist.label "Adblock Plus: Endurvirkja á þessari síðu">
12<!ENTITY sidebar.title "Hlutir á núverandi síðu sem hægt er að loka á">12<!ENTITY sidebar.title "Hlutir á núverandi síðu sem hægt er að loka á">
13<!ENTITY settings.label "Stillingar">13<!ENTITY settings.label "Stillingar">
14<!ENTITY settings.accesskey "S">14<!ENTITY settings.accesskey "S">
1515
=== modified file 'chrome/locale/is-IS/settings.dtd'
--- chrome/locale/is-IS/settings.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/is-IS/settings.dtd 2009-08-12 17:24:40 +0000
@@ -47,7 +47,7 @@
47<!ENTITY showintoolbar.accesskey "t">47<!ENTITY showintoolbar.accesskey "t">
48<!ENTITY showinstatusbar.label "Sýna í stöðuslá">48<!ENTITY showinstatusbar.label "Sýna í stöðuslá">
49<!ENTITY showinstatusbar.accesskey "S">49<!ENTITY showinstatusbar.accesskey "S">
50<!ENTITY objecttabs.label "Sýna flipa fyrir Flash og Java">50<!ENTITY objecttabs.label "Sýna flipa fyrir Flass og Java">
51<!ENTITY objecttabs.accesskey "f">51<!ENTITY objecttabs.accesskey "f">
52<!ENTITY collapse.label "Fella saman lokaða hluti">52<!ENTITY collapse.label "Fella saman lokaða hluti">
53<!ENTITY collapse.accesskey "L">53<!ENTITY collapse.accesskey "L">
@@ -67,8 +67,8 @@
67<!ENTITY description "Eftirfarandi síur ákvarða hvaða netföng á að loka á og hvaða netföng eigi að leyfa:">67<!ENTITY description "Eftirfarandi síur ákvarða hvaða netföng á að loka á og hvaða netföng eigi að leyfa:">
68<!ENTITY filter.column "Síu regla">68<!ENTITY filter.column "Síu regla">
69<!ENTITY filter.accesskey "g">69<!ENTITY filter.accesskey "g">
70<!ENTITY slow.column "Hægvirkar síur">70<!ENTITY slow.column "hægar síur">
71<!ENTITY slow.accesskey "i">71<!ENTITY slow.accesskey "æ">
72<!ENTITY enabled.column "Virkt">72<!ENTITY enabled.column "Virkt">
73<!ENTITY enabled.accesskey "V">73<!ENTITY enabled.accesskey "V">
74<!ENTITY hitcount.column "Notkun">74<!ENTITY hitcount.column "Notkun">
7575
=== modified file 'chrome/locale/is-IS/sidebar.dtd'
--- chrome/locale/is-IS/sidebar.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/is-IS/sidebar.dtd 2009-08-12 17:24:40 +0000
@@ -8,7 +8,7 @@
8<!ENTITY filter.label "Sía">8<!ENTITY filter.label "Sía">
9<!ENTITY state.label "Ríki">9<!ENTITY state.label "Ríki">
10<!ENTITY size.label "Stærð">10<!ENTITY size.label "Stærð">
11<!ENTITY docDomain.label "Uppruni skjals">11<!ENTITY docDomain.label "Frumkóði síðu">
12<!ENTITY noitems.label "Engir hlutir til að loka á">12<!ENTITY noitems.label "Engir hlutir til að loka á">
13<!ENTITY whitelisted.label "Síða fyrir hvítlista">13<!ENTITY whitelisted.label "Síða fyrir hvítlista">
14<!ENTITY tooltip.address.label "Netfang:">14<!ENTITY tooltip.address.label "Netfang:">
@@ -16,7 +16,7 @@
16<!ENTITY tooltip.type.blocked "(stöðvað)">16<!ENTITY tooltip.type.blocked "(stöðvað)">
17<!ENTITY tooltip.type.whitelisted "(hvítlisti)">17<!ENTITY tooltip.type.whitelisted "(hvítlisti)">
18<!ENTITY tooltip.size.label "Stærð:">18<!ENTITY tooltip.size.label "Stærð:">
19<!ENTITY tooltip.docDomain.label "Upprunir skjals:">19<!ENTITY tooltip.docDomain.label "Frumkóði síðu:">
20<!ENTITY tooltip.filter.label "Sía í notkun:">20<!ENTITY tooltip.filter.label "Sía í notkun:">
21<!ENTITY tooltip.filterSource.label "Sía frumkóða:">21<!ENTITY tooltip.filterSource.label "Sía frumkóða:">
22<!ENTITY context.block.label "Loka á þennan hlut">22<!ENTITY context.block.label "Loka á þennan hlut">
@@ -27,6 +27,6 @@
27<!ENTITY context.disablefilteronsite.label "Aftengja síu fyrir --">27<!ENTITY context.disablefilteronsite.label "Aftengja síu fyrir --">
28<!ENTITY context.open.label "Opna í nýjum flipa">28<!ENTITY context.open.label "Opna í nýjum flipa">
29<!ENTITY context.flash.label "Rammi Flash hlutar">29<!ENTITY context.flash.label "Rammi Flash hlutar">
30<!ENTITY context.copy.label "Afrita netfang hluts">30<!ENTITY context.copy.label "Afrita netfang hlutar">
31<!ENTITY context.copyFilter.label "Afrita síu">31<!ENTITY context.copyFilter.label "Afrita síu">
32<!ENTITY context.selectAll.label "Velja allt">32<!ENTITY context.selectAll.label "Velja allt">
3333
=== modified file 'chrome/locale/is-IS/subscription.dtd'
--- chrome/locale/is-IS/subscription.dtd 2009-03-17 01:48:13 +0000
+++ chrome/locale/is-IS/subscription.dtd 2009-08-12 17:24:40 +0000
@@ -1,24 +1,16 @@
1<!ENTITY dialog.title "Breyta síuáskrift">1<!ENTITY dialog.title "Breyta síuáskrift">
2<!ENTITY dialog.newtitle "Bæta við síuáskrift">2<!ENTITY dialog.newtitle "Bæta við síuáskrift">
3<!ENTITY new.description "3<!ENTITY new.description "Sláðu inn netfang eða skráarnafn sem inniheldur lista af
4 Sláðu inn netfang eða skráarnafn sem inniheldur lista af4 Adblock Plus síum.">
5 Adblock Plus síum.5<!ENTITY edit.description "Síulistinn fyrir þessa áskrift verður niðurhalað
6">6 frá gefinni staðsetningu.">
7<!ENTITY edit.description "7<!ENTITY external.description "Áskrift þessi er ytri síuáskrift, síulistinn
8 Síulistinn fyrir þessa áskrift verður niðurhalað
9 frá gefinni staðsetningu.
10">
11<!ENTITY external.description "
12 Áskrift þessi er ytri síuáskrfit, síulistinn
13 verður uppfærður af viðbótinni sem bjó til þessa8 verður uppfærður af viðbótinni sem bjó til þessa
14 áskrift.9 áskrift.">
15">10<!ENTITY autodownload.description "Ef þú velur að &apos;Uppfæra sjálfvirkt&apos; mun þessi staðsetning verða
16<!ENTITY autodownload.description "
17 Ef þú velur að &apos;Uppfæra sjálfvirkt&apos; mun þessi staðsetning verða
18 athuguð daglega fyrir uppfærslur. Ef þessi valmöguleiki er óvirkur11 athuguð daglega fyrir uppfærslur. Ef þessi valmöguleiki er óvirkur
19 geturðu samt uppfært handvirkt frá12 geturðu samt uppfært handvirkt frá
20 áskriftarvalmdynd.13 áskriftarvalmynd.">
21">
22<!ENTITY location.label "Staðsetning síulista:">14<!ENTITY location.label "Staðsetning síulista:">
23<!ENTITY location.accesskey "L">15<!ENTITY location.accesskey "L">
24<!ENTITY title.label "Áskriftartitill:">16<!ENTITY title.label "Áskriftartitill:">
2517
=== modified file 'chrome/locale/is-IS/tip_subscriptions.dtd'
--- chrome/locale/is-IS/tip_subscriptions.dtd 2009-03-17 01:48:13 +0000
+++ chrome/locale/is-IS/tip_subscriptions.dtd 2009-08-12 17:24:40 +0000
@@ -1,41 +1,31 @@
1<!ENTITY dialog.title "Bæta við Adblock Plus síu áskrift">1<!ENTITY dialog.title "Bæta við Adblock Plus síu áskrift">
2<!ENTITY description.par1 "2<!ENTITY description.par1 "Þakka þér fyrir að setja inn Adblock Plus. Þessi viðbót getur
3 Þakka þér fyrir að setja inn Adblock Plus. Þessi viðbót getur3 fjarlægt 99&#37; af öllum auglýsingum sem þú sérð á vefnum. Hinsvegar,
4 fjarlægt 99&#x25; af öllum auglýsingum sem þú sérð á vefnum. Hinsvegar,4 til þess að ná þessum árangri þarftu að skilgreina góðar
5 til þess að ná þessum árangri þarftu að skrilgreina góðar
6 síur. Þú getur skilgreint svoleiðis sjálfur, eða þú getur einfaldlega gerst áskrifandi5 síur. Þú getur skilgreint svoleiðis sjálfur, eða þú getur einfaldlega gerst áskrifandi
7 að síulistum sem aðrir sjá um að viðhalda fyrir þig. Það er samt alltaf hægt að6 að síulistum sem aðrir sjá um að viðhalda fyrir þig. Það er samt alltaf hægt að
8 bæta við þínum eigin síum eða gera óvirkar/fjarlægja áskriftir7 bæta við þínum eigin síum eða gera óvirkar/fjarlægja áskriftir
9 hvenær sem er.8 hvenær sem er.">
10">9<!ENTITY description.par2 "Þú getur valið eina áskrift af áskriftarlistunum sem mælt er með
11<!ENTITY description.par2 "
12 Þú getur valið eina áskrift af áskriftarlistum sem mælt er með
13 hér fyrir neðan (fleiri áskriftir er hægt að10 hér fyrir neðan (fleiri áskriftir er hægt að
14 bæta við seinna í Adblock Plus stillingaglugganum þótt venjulega sé það ekki11 bæta við seinna í Adblock Plus stillingaglugganum þótt venjulega sé það ekki
15 nauðsynlegt):12 nauðsynlegt):">
16">13<!ENTITY note "Athugið: Síulisti er venjulega árangursríkastur þegar honum er beitt
17<!ENTITY note "14 á þau vefsvæði sem eru frá því svæði sem listinn var búinn til fyrir.">
18 Athugið: Síulisti er venjulega árangursríkastur þegar honum er beitt15<!ENTITY adblock.warning "Adblock Plus hefur uppgötvað að Adblock eða gömul útgáfa af Adblock Plus er
19 á þau vefsvæði sem eru frá því svæði sem listinn var búinn til fyrir.
20">
21<!ENTITY adblock.warning "
22 Adblock Plus hefur uppgötvað að Adblock eða gömul útgáfa af Adblock Plus er
23 uppsett. Ef þú keyrir bæði Adblock og Adblock Plus samsíða getur það valdið16 uppsett. Ef þú keyrir bæði Adblock og Adblock Plus samsíða getur það valdið
24 vandræðum og ætti að forðast í lengstu lög. Mælt er með að þú takir út Adblock strax.17 vandræðum og ætti að forðast í lengstu lög. Mælt er með að þú takir út Adblock strax.">
25">
26<!ENTITY adblock.uninstall "Taka út Adblock">18<!ENTITY adblock.uninstall "Taka út Adblock">
27<!ENTITY filterset.g.warning "19<!ENTITY filterset.g.warning "Svo virðist sem þú sért að nota Filterset.G. Þessum síulista hefur ekki verið
28 Svo virðist sem þú sért að nota Filterset.G. Þessum síulista hefur ekki verið
29 viðhaldið seinustu árin og er algeng ástæða fyrir vandamálum á20 viðhaldið seinustu árin og er algeng ástæða fyrir vandamálum á
30 vefsíðum. Mælt er með að þú takir út Filterset.G strax.21 vefsíðum. Mælt er með að þú takir út Filterset.G strax.">
31">
32<!ENTITY filterset.g.moreinfo "Starfsupplýsingar">22<!ENTITY filterset.g.moreinfo "Starfsupplýsingar">
33<!ENTITY filterset.g.moreinfo.url "http://adblockplus.org/en/faq_project#filterset.g">23<!ENTITY filterset.g.moreinfo.url "http://adblockplus.org/en/faq_project#filterset.g">
34<!ENTITY filterset.g.uninstall "Taka út Filterset.G">24<!ENTITY filterset.g.uninstall "Taka út Filterset.G">
35<!ENTITY homepage.label "Heimasíða">25<!ENTITY homepage.label "Heimasíða">
36<!ENTITY subscribe.label "Gerast áskrifandi">26<!ENTITY subscribe.label "Gerast áskrifandi">
37<!ENTITY subscribe.accesskey "G">27<!ENTITY subscribe.accesskey "G">
38<!ENTITY other.label "Add another subscription">28<!ENTITY other.label "Bæta við öðruvísi áskrift">
39<!ENTITY other.accesskey "T">29<!ENTITY other.accesskey "T">
40<!ENTITY full-list.url "http://adblockplus.org/en/subscriptions">30<!ENTITY full-list.url "http://adblockplus.org/en/subscriptions">
41<!ENTITY full-list.label "Skoða allar áskriftir">31<!ENTITY full-list.label "Skoða allar áskriftir">
4232
=== modified file 'chrome/locale/it-IT/composer.dtd'
--- chrome/locale/it-IT/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/it-IT/composer.dtd 2009-08-12 17:24:40 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY dialog.title "Nuovo filtro di Adblock Plus">1<!ENTITY dialog.title "Nuovo filtro di Adblock Plus">
27<!ENTITY accept.label "Aggiungi filtro">2<!ENTITY accept.label "Aggiungi filtro">
28<!ENTITY advanced.label "Avanzate &gt;&gt;">3<!ENTITY advanced.label "Avanzate &gt;&gt;">
@@ -49,10 +24,10 @@
49<!ENTITY custom.pattern.accesskey "P">24<!ENTITY custom.pattern.accesskey "P">
50<!ENTITY anchors.label "Accetta modelli solo:">25<!ENTITY anchors.label "Accetta modelli solo:">
51<!ENTITY anchor.start.label "all&apos;inizio dell&apos;indirizzo web">26<!ENTITY anchor.start.label "all&apos;inizio dell&apos;indirizzo web">
52<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->27<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->
53<!ENTITY anchor.start.accesskey "i">28<!ENTITY anchor.start.accesskey "i">
54<!ENTITY anchor.start.flexible.label "all&apos;inizio del nome del dominio">29<!ENTITY anchor.start.flexible.label "all&apos;inizio del nome del dominio">
55<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter. -->30<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter. -->
56<!ENTITY anchor.start.flexible.accesskey "i">31<!ENTITY anchor.start.flexible.accesskey "i">
57<!ENTITY anchor.end.label "alla fine dell&apos;indirizzo web">32<!ENTITY anchor.end.label "alla fine dell&apos;indirizzo web">
58<!ENTITY anchor.end.accesskey "f">33<!ENTITY anchor.end.accesskey "f">
5934
=== modified file 'chrome/locale/it-IT/global.properties'
--- chrome/locale/it-IT/global.properties 2009-07-25 19:31:00 +0000
+++ chrome/locale/it-IT/global.properties 2009-08-12 17:31:15 +0000
@@ -1,49 +1,3 @@
1# ***** BEGIN LICENSE BLOCK *****
2
3# Version: MPL 1.1
4
5#
6
7# The contents of this file are subject to the Mozilla Public License Version
8
9# 1.1 (the "License"); you may not use this file except in compliance with
10
11# the License. You may obtain a copy of the License at
12
13# http://www.mozilla.org/MPL/
14
15#
16
17# Software distributed under the License is distributed on an "AS IS" basis,
18
19# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
20
21# for the specific language governing rights and limitations under the
22
23# License.
24
25#
26
27# The Original Code is Adblock Plus.
28
29#
30
31# The Initial Developer of the Original Code is
32
33# Wladimir Palant.
34
35# Portions created by the Initial Developer are Copyright (C) 2006-2009
36
37# the Initial Developer. All Rights Reserved.
38
39#
40
41# Contributor(s):
42
43#
44
45# ***** END LICENSE BLOCK *****
46
47extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Permette di dire 'no' alla pubblicità presente nelle pagine web!1extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Permette di dire 'no' alla pubblicità presente nelle pagine web!
48status_active_label=Adblock Plus2status_active_label=Adblock Plus
49status_disabled_label=Inattiva3status_disabled_label=Inattiva
504
=== modified file 'chrome/locale/it-IT/overlay.dtd'
--- chrome/locale/it-IT/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/it-IT/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY status.tooltip "Stato:">1<!ENTITY status.tooltip "Stato:">
27<!ENTITY blocked.tooltip "Elementi bloccati nella pagina attuale:">2<!ENTITY blocked.tooltip "Elementi bloccati nella pagina attuale:">
28<!ENTITY filters.tooltip "Filtri maggiormente attivi:">3<!ENTITY filters.tooltip "Filtri maggiormente attivi:">
@@ -38,10 +13,10 @@
38<!ENTITY settings.label "Impostazioni">13<!ENTITY settings.label "Impostazioni">
39<!ENTITY settings.accesskey "I">14<!ENTITY settings.accesskey "I">
40<!ENTITY opensidebar.label "Apri gli elementi bloccabili">15<!ENTITY opensidebar.label "Apri gli elementi bloccabili">
41<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->16<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
42<!ENTITY opensidebar.accesskey "b">17<!ENTITY opensidebar.accesskey "b">
43<!ENTITY closesidebar.label "Chiudi gli elementi bloccabili">18<!ENTITY closesidebar.label "Chiudi gli elementi bloccabili">
44<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->19<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
45<!ENTITY closesidebar.accesskey "b">20<!ENTITY closesidebar.accesskey "b">
46<!ENTITY whitelist.site.label "Disattiva per --">21<!ENTITY whitelist.site.label "Disattiva per --">
47<!ENTITY whitelist.page.label "Disattiva solo per la pagina attuale">22<!ENTITY whitelist.page.label "Disattiva solo per la pagina attuale">
4823
=== modified file 'chrome/locale/it-IT/settings.dtd'
--- chrome/locale/it-IT/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/it-IT/settings.dtd 2009-08-12 17:31:15 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY dialog.title "Impostazioni di Adblock Plus">1<!ENTITY dialog.title "Impostazioni di Adblock Plus">
27<!ENTITY filters.label "Filtri">2<!ENTITY filters.label "Filtri">
28<!ENTITY filters.accesskey "F">3<!ENTITY filters.accesskey "F">
294
=== modified file 'chrome/locale/it-IT/sidebar.dtd'
--- chrome/locale/it-IT/sidebar.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/it-IT/sidebar.dtd 2009-08-12 17:31:15 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY detached.title "Elementi bloccabili con Adblock Plus (separati)">1<!ENTITY detached.title "Elementi bloccabili con Adblock Plus (separati)">
27<!ENTITY detach.label "Separa">2<!ENTITY detach.label "Separa">
28<!ENTITY reattach.label "Riunisci">3<!ENTITY reattach.label "Riunisci">
294
=== modified file 'chrome/locale/ja-JP/about.dtd'
--- chrome/locale/ja-JP/about.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ja-JP/about.dtd 2009-08-12 17:31:15 +0000
@@ -7,6 +7,6 @@
7 -- Adblock Plus にアドレスを追加するだけです!7 -- Adblock Plus にアドレスを追加するだけです!
8">8">
9<!ENTITY homepage.label "Adblock Plus ホームページ:">9<!ENTITY homepage.label "Adblock Plus ホームページ:">
10<!ENTITY homepage.url "http://adblockplus.org/en/">10<!ENTITY homepage.url "http://adblockplus.org/">
11<!ENTITY author.label "製作者:">11<!ENTITY author.label "製作者:">
12<!ENTITY contributors.label "貢献者:">12<!ENTITY contributors.label "貢献者:">
1313
=== modified file 'chrome/locale/ja-JP/composer.dtd'
--- chrome/locale/ja-JP/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/ja-JP/composer.dtd 2009-08-12 17:24:40 +0000
@@ -1,4 +1,3 @@
1<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->
2<!ENTITY dialog.title "Adblock Plus フィルタを追加">1<!ENTITY dialog.title "Adblock Plus フィルタを追加">
3<!ENTITY accept.label "フィルタ追加">2<!ENTITY accept.label "フィルタ追加">
4<!ENTITY advanced.label "詳細表示">3<!ENTITY advanced.label "詳細表示">
@@ -25,9 +24,10 @@
25<!ENTITY custom.pattern.accesskey "C">24<!ENTITY custom.pattern.accesskey "C">
26<!ENTITY anchors.label "パターン限定対応:">25<!ENTITY anchors.label "パターン限定対応:">
27<!ENTITY anchor.start.label "アドレスの先頭">26<!ENTITY anchor.start.label "アドレスの先頭">
28<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter. -->27<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter.-->
29<!ENTITY anchor.start.accesskey "g">28<!ENTITY anchor.start.accesskey "g">
30<!ENTITY anchor.start.flexible.label "ドメインの先頭">29<!ENTITY anchor.start.flexible.label "ドメインの先頭">
30<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter.-->
31<!ENTITY anchor.start.flexible.accesskey "g">31<!ENTITY anchor.start.flexible.accesskey "g">
32<!ENTITY anchor.end.label "アドレスの最後">32<!ENTITY anchor.end.label "アドレスの最後">
33<!ENTITY anchor.end.accesskey "n">33<!ENTITY anchor.end.accesskey "n">
3434
=== modified file 'chrome/locale/ja-JP/global.properties'
--- chrome/locale/ja-JP/global.properties 2009-07-25 19:31:00 +0000
+++ chrome/locale/ja-JP/global.properties 2009-08-12 17:31:15 +0000
@@ -1,5 +1,3 @@
1# strings used by the Find bar, copied from findbar.properties
2
3extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=広告は過去の遺物です!1extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=広告は過去の遺物です!
4status_active_label=Adblock2status_active_label=Adblock
5status_disabled_label=停止中3status_disabled_label=停止中
64
=== modified file 'chrome/locale/ja-JP/overlay.dtd'
--- chrome/locale/ja-JP/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ja-JP/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -13,8 +13,10 @@
13<!ENTITY settings.label "設定">13<!ENTITY settings.label "設定">
14<!ENTITY settings.accesskey "F">14<!ENTITY settings.accesskey "F">
15<!ENTITY opensidebar.label "ブロック要素一覧を開く">15<!ENTITY opensidebar.label "ブロック要素一覧を開く">
16<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open.-->
16<!ENTITY opensidebar.accesskey "B">17<!ENTITY opensidebar.accesskey "B">
17<!ENTITY closesidebar.label "ブロック要素一覧を閉じる">18<!ENTITY closesidebar.label "ブロック要素一覧を閉じる">
19<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open.-->
18<!ENTITY closesidebar.accesskey "B">20<!ENTITY closesidebar.accesskey "B">
19<!ENTITY whitelist.site.label "-- をホワイトリストに追加">21<!ENTITY whitelist.site.label "-- をホワイトリストに追加">
20<!ENTITY whitelist.page.label "現在のページをホワイトリストに追加">22<!ENTITY whitelist.page.label "現在のページをホワイトリストに追加">
2123
=== modified file 'chrome/locale/ja-JP/settings.dtd'
--- chrome/locale/ja-JP/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ja-JP/settings.dtd 2009-08-12 17:31:15 +0000
@@ -64,7 +64,9 @@
64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">
65<!ENTITY about.label "Adblock Plus について">65<!ENTITY about.label "Adblock Plus について">
66<!ENTITY about.accesskey "B">66<!ENTITY about.accesskey "B">
67<!ENTITY description "以下のフィルタはどのアドレスがブロックされるか、またどれが許可されるかを決定します。">67<!ENTITY description "ドロップダウンリストの中からブロックしたいアドレスを追加してください。
68 汎用的なフィルタを作成する場合はワイルドカードとして * (アスタリスク)が使用できます。
69 上級ユーザは /banner\d+\.gif$/ のような正規表現を使用することができます。">
68<!ENTITY filter.column "フィルタのルール">70<!ENTITY filter.column "フィルタのルール">
69<!ENTITY filter.accesskey "F">71<!ENTITY filter.accesskey "F">
70<!ENTITY slow.column "低速フィルタ">72<!ENTITY slow.column "低速フィルタ">
7173
=== modified file 'chrome/locale/kk-KZ/composer.dtd'
--- chrome/locale/kk-KZ/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/kk-KZ/composer.dtd 2009-08-12 17:24:40 +0000
@@ -5,8 +5,8 @@
5<!ENTITY disabled.warning.beforeLink "Adblock Plus қазір сөндірулі. Фильтрлерді қазір де қоса аласыз, бірақ олар жұмыс істемейді, сіз">5<!ENTITY disabled.warning.beforeLink "Adblock Plus қазір сөндірулі. Фильтрлерді қазір де қоса аласыз, бірақ олар жұмыс істемейді, сіз">
6<!ENTITY disabled.warning.link "Adblock Plus қосқанға дейін">6<!ENTITY disabled.warning.link "Adblock Plus қосқанға дейін">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "Осы фильтрді &quot;&#37;S&quot; фильтрлер тобына қосқыңыз келеді, бірақ ол топ сөндірілген. Фильтрді қоса аласыз, бірақ топты іске қоспағанша">8<!ENTITY groupDisabled.warning.beforeLink "Осы фильтр қосылатын &quot;&#37;S&quot; фильтрлер тобы қазір сөндірулі. Сіз фильтрді қоса аласыз, бірақ фильтрлер тобы қосылған">
9<!ENTITY groupDisabled.warning.link "фильтр іске қосылмайды">9<!ENTITY groupDisabled.warning.link "кезде ғана іске асады">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Жаңа фильтр:">11<!ENTITY filter.label "Жаңа фильтр:">
12<!ENTITY filter.accesskey "ф">12<!ENTITY filter.accesskey "ф">
@@ -24,14 +24,14 @@
24<!ENTITY custom.pattern.accesskey "з">24<!ENTITY custom.pattern.accesskey "з">
25<!ENTITY anchors.label "Шаблонды тек келесіде қолдану:">25<!ENTITY anchors.label "Шаблонды тек келесіде қолдану:">
26<!ENTITY anchor.start.label "адрес басында">26<!ENTITY anchor.start.label "адрес басында">
27<!ENTITY anchor.start.accesskey "н">27<!ENTITY anchor.start.accesskey "д">
28<!ENTITY anchor.start.flexible.label "домен аты басында">28<!ENTITY anchor.start.flexible.label "домен атынын басында">
29<!ENTITY anchor.start.flexible.accesskey "н">29<!ENTITY anchor.start.flexible.accesskey "д">
30<!ENTITY anchor.end.label "адрес соңында">30<!ENTITY anchor.end.label "адрес соңында">
31<!ENTITY anchor.end.accesskey "ы">31<!ENTITY anchor.end.accesskey "ы">
32<!ENTITY options.label "Баптаулар">32<!ENTITY options.label "Баптаулар">
33<!ENTITY domainRestriction.label "Доменмен шектеу:">33<!ENTITY domainRestriction.label "Доменмен шектеу:">
34<!ENTITY domainRestriction.accesskey "Д">34<!ENTITY domainRestriction.accesskey "т">
35<!ENTITY domainRestriction.help "Бір немесе &quot;|&quot; таңбасымен ажыратылған бірнеше доменді көрсетіңіз, фильтр тек осы домендер үшін орындалады. Домен атының алдыңдағы &quot;~&quot; таңбасы осы доменде фильтр орындалмайтынын көрсетеді.">35<!ENTITY domainRestriction.help "Бір немесе &quot;|&quot; таңбасымен ажыратылған бірнеше доменді көрсетіңіз, фильтр тек осы домендер үшін орындалады. Домен атының алдыңдағы &quot;~&quot; таңбасы осы доменде фильтр орындалмайтынын көрсетеді.">
36<!ENTITY firstParty.label "Тек сол сайт өз құрамасы үшін">36<!ENTITY firstParty.label "Тек сол сайт өз құрамасы үшін">
37<!ENTITY firstParty.accesskey "ш">37<!ENTITY firstParty.accesskey "ш">
3838
=== modified file 'chrome/locale/kk-KZ/overlay.dtd'
--- chrome/locale/kk-KZ/overlay.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/kk-KZ/overlay.dtd 2009-08-12 17:24:40 +0000
@@ -2,13 +2,13 @@
2<!ENTITY blocked.tooltip "Бұл парақтағы блокталған құрама:">2<!ENTITY blocked.tooltip "Бұл парақтағы блокталған құрама:">
3<!ENTITY filters.tooltip "Көп қолданылатын фильтрлер:">3<!ENTITY filters.tooltip "Көп қолданылатын фильтрлер:">
4<!ENTITY menuitem.label "Adblock Plus баптаулары">4<!ENTITY menuitem.label "Adblock Plus баптаулары">
5<!ENTITY menuitem.accesskey "б">5<!ENTITY menuitem.accesskey "п">
6<!ENTITY toolbarbutton.label "Adblock Plus">6<!ENTITY toolbarbutton.label "Adblock Plus">
7<!ENTITY view.blockableItems.label "Adblock Plus: Парақ құрамасы">7<!ENTITY view.blockableItems.label "Adblock Plus: Парақ құрамасы">
8<!ENTITY context.image.label "Adblock Plus: Суретті блоктау">8<!ENTITY context.image.label "Adblock Plus: Суретті блоктау">
9<!ENTITY context.object.label "Adblock Plus: Объектті блоктау">9<!ENTITY context.object.label "Adblock Plus: Объектті блоктау">
10<!ENTITY context.frame.label "Adblock Plus: Фреймді блоктау">10<!ENTITY context.frame.label "Adblock Plus: Фреймді блоктау">
11<!ENTITY context.removeWhitelist.label "Adblock Plus: Бұл парақта қайта қосу">11<!ENTITY context.removeWhitelist.label "Adblock Plus: Осы парақта қайта қосу">
12<!ENTITY sidebar.title "Ағымдағы парақ құрамасы">12<!ENTITY sidebar.title "Ағымдағы парақ құрамасы">
13<!ENTITY settings.label "Баптаулары">13<!ENTITY settings.label "Баптаулары">
14<!ENTITY settings.accesskey "т">14<!ENTITY settings.accesskey "т">
1515
=== modified file 'chrome/locale/kk-KZ/settings.dtd'
--- chrome/locale/kk-KZ/settings.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/kk-KZ/settings.dtd 2009-08-12 17:24:40 +0000
@@ -79,8 +79,8 @@
79<!ENTITY context.resethitcount.label "Фильтр үшін хит статистикасын тастау">79<!ENTITY context.resethitcount.label "Фильтр үшін хит статистикасын тастау">
80<!ENTITY context.synchsubscription.label "Жазылуды қазір жаңарту">80<!ENTITY context.synchsubscription.label "Жазылуды қазір жаңарту">
81<!ENTITY context.editsubscription.label "Жазылуды жаңарту">81<!ENTITY context.editsubscription.label "Жазылуды жаңарту">
82<!ENTITY context.moveup.label "Фильтрді жоғары көтеру">82<!ENTITY context.moveup.label "Фильтрі жоғары көтеру">
83<!ENTITY context.movedown.label "Фильтрді төмен түсіру">83<!ENTITY context.movedown.label "Фильтрі төмен түсіру">
84<!ENTITY context.movegroupup.label "Топты жоғары көтеру">84<!ENTITY context.movegroupup.label "Топты жоғары көтеру">
85<!ENTITY context.movegroupdown.label "Топты төмен түсіру">85<!ENTITY context.movegroupdown.label "Топты төмен түсіру">
86<!ENTITY context.enable.label "Қосу">86<!ENTITY context.enable.label "Қосу">
8787
=== modified file 'chrome/locale/kk-KZ/sidebar.dtd'
--- chrome/locale/kk-KZ/sidebar.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/kk-KZ/sidebar.dtd 2009-08-12 17:24:40 +0000
@@ -8,7 +8,7 @@
8<!ENTITY filter.label "Фильтр">8<!ENTITY filter.label "Фильтр">
9<!ENTITY state.label "Күйі">9<!ENTITY state.label "Күйі">
10<!ENTITY size.label "Көлемі">10<!ENTITY size.label "Көлемі">
11<!ENTITY docDomain.label "Құжат шыққан көзі">11<!ENTITY docDomain.label "Құжат көзі">
12<!ENTITY noitems.label "Блокталатын құрама жоқ">12<!ENTITY noitems.label "Блокталатын құрама жоқ">
13<!ENTITY whitelisted.label "Ережеден тыс парақ">13<!ENTITY whitelisted.label "Ережеден тыс парақ">
14<!ENTITY tooltip.address.label "Адресі:">14<!ENTITY tooltip.address.label "Адресі:">
@@ -16,7 +16,7 @@
16<!ENTITY tooltip.type.blocked "(блокталған)">16<!ENTITY tooltip.type.blocked "(блокталған)">
17<!ENTITY tooltip.type.whitelisted "(ережеден тыс)">17<!ENTITY tooltip.type.whitelisted "(ережеден тыс)">
18<!ENTITY tooltip.size.label "Көлемі:">18<!ENTITY tooltip.size.label "Көлемі:">
19<!ENTITY tooltip.docDomain.label "Құжат шыққан көзі:">19<!ENTITY tooltip.docDomain.label "Құжат көзі:">
20<!ENTITY tooltip.filter.label "Қолданудағы фильтр:">20<!ENTITY tooltip.filter.label "Қолданудағы фильтр:">
21<!ENTITY tooltip.filterSource.label "Фильтр көзі:">21<!ENTITY tooltip.filterSource.label "Фильтр көзі:">
22<!ENTITY context.block.label "Бұл элементті блоктау">22<!ENTITY context.block.label "Бұл элементті блоктау">
2323
=== modified file 'chrome/locale/ko-KR/settings.dtd'
--- chrome/locale/ko-KR/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ko-KR/settings.dtd 2009-08-12 17:31:15 +0000
@@ -64,8 +64,8 @@
64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">
65<!ENTITY about.label "Adblock Plus에 대하여">65<!ENTITY about.label "Adblock Plus에 대하여">
66<!ENTITY about.accesskey "B">66<!ENTITY about.accesskey "B">
67<!ENTITY description "차단하고자 하는 주소를 추가하십시오.67<!ENTITY description "차단하고자 하는 주소를 추가하십시오.
68 일반적인 필터는 &apos;*&apos;을 사용할 수 있습니다.68 일반적인 필터는 &apos;*&apos;을 사용할 수 있습니다.
69 고급 사용자는 정규표현식을 사용할 수 있습니다.(예: /banner\d+\.gif$/)">69 고급 사용자는 정규표현식을 사용할 수 있습니다.(예: /banner\d+\.gif$/)">
70<!ENTITY filter.column "필터 규칙">70<!ENTITY filter.column "필터 규칙">
71<!ENTITY filter.accesskey "F">71<!ENTITY filter.accesskey "F">
7272
=== modified file 'chrome/locale/nl-NL/composer.dtd'
--- chrome/locale/nl-NL/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/nl-NL/composer.dtd 2009-08-12 17:24:40 +0000
@@ -5,7 +5,7 @@
5<!ENTITY disabled.warning.beforeLink "Adblock Plus is uitgeschakeld. U kunt nog wel filters toevoegen, maar ze worden niet toegepast tot u">5<!ENTITY disabled.warning.beforeLink "Adblock Plus is uitgeschakeld. U kunt nog wel filters toevoegen, maar ze worden niet toegepast tot u">
6<!ENTITY disabled.warning.link "Adblock Plus weer inschakelen">6<!ENTITY disabled.warning.link "Adblock Plus weer inschakelen">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "De filtergroep &quot;&#37;S&quot; waar dit filter aan wordt toegevoegd is momenteel uitgeschakeld. U kunt het filter nog wel toevoegen maar het wordt niet gebruikt totdat u">8<!ENTITY groupDisabled.warning.beforeLink "De filtergroep &quot;&#x25;S&quot; aan wordt toegevoegd is momenteel uitgeschakeld. U kunt het filter nog wel toevoegen maar het wordt niet toegepast tenzij u">
9<!ENTITY groupDisabled.warning.link "de filtergroep inschakeld">9<!ENTITY groupDisabled.warning.link "de filtergroep inschakeld">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Nieuw filter">11<!ENTITY filter.label "Nieuw filter">
@@ -24,8 +24,10 @@
24<!ENTITY custom.pattern.accesskey "A">24<!ENTITY custom.pattern.accesskey "A">
25<!ENTITY anchors.label "Accepteer alleen patronen:">25<!ENTITY anchors.label "Accepteer alleen patronen:">
26<!ENTITY anchor.start.label "aan het begin van het adres">26<!ENTITY anchor.start.label "aan het begin van het adres">
27<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->
27<!ENTITY anchor.start.accesskey "h">28<!ENTITY anchor.start.accesskey "h">
28<!ENTITY anchor.start.flexible.label "aan het begin van de domeinnaam">29<!ENTITY anchor.start.flexible.label "aan het begin van de domeinnaam">
30<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter. -->
29<!ENTITY anchor.start.flexible.accesskey "h">31<!ENTITY anchor.start.flexible.accesskey "h">
30<!ENTITY anchor.end.label "aan het eind van het adres">32<!ENTITY anchor.end.label "aan het eind van het adres">
31<!ENTITY anchor.end.accesskey "e">33<!ENTITY anchor.end.accesskey "e">
3234
=== modified file 'chrome/locale/nl-NL/overlay.dtd'
--- chrome/locale/nl-NL/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/nl-NL/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -13,8 +13,10 @@
13<!ENTITY settings.label "Voorkeuren">13<!ENTITY settings.label "Voorkeuren">
14<!ENTITY settings.accesskey "V">14<!ENTITY settings.accesskey "V">
15<!ENTITY opensidebar.label "Blokkeerbare onderdelen open">15<!ENTITY opensidebar.label "Blokkeerbare onderdelen open">
16<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
16<!ENTITY opensidebar.accesskey "B">17<!ENTITY opensidebar.accesskey "B">
17<!ENTITY closesidebar.label "Blokkeerbare onderdelen sluiten">18<!ENTITY closesidebar.label "Blokkeerbare onderdelen sluiten">
19<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
18<!ENTITY closesidebar.accesskey "B">20<!ENTITY closesidebar.accesskey "B">
19<!ENTITY whitelist.site.label "Uitschakelen op --">21<!ENTITY whitelist.site.label "Uitschakelen op --">
20<!ENTITY whitelist.page.label "Alleen op deze pagina uitschakelen">22<!ENTITY whitelist.page.label "Alleen op deze pagina uitschakelen">
2123
=== modified file 'chrome/locale/pl-PL/composer.dtd'
--- chrome/locale/pl-PL/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/pl-PL/composer.dtd 2009-08-12 17:24:40 +0000
@@ -24,8 +24,10 @@
24<!ENTITY custom.pattern.accesskey "D">24<!ENTITY custom.pattern.accesskey "D">
25<!ENTITY anchors.label "Akceptuj wzorzec tylko:">25<!ENTITY anchors.label "Akceptuj wzorzec tylko:">
26<!ENTITY anchor.start.label "na początku adresu">26<!ENTITY anchor.start.label "na początku adresu">
27<!-- Note: This access key should usually be the same as anchor.start.flexible.accesskey. It is the same checkbox with different label depending on suggested filter. -->
27<!ENTITY anchor.start.accesskey "o">28<!ENTITY anchor.start.accesskey "o">
28<!ENTITY anchor.start.flexible.label "na początku nazwy domeny">29<!ENTITY anchor.start.flexible.label "na początku nazwy domeny">
30<!-- Note: This access key should usually be the same as anchor.start.accesskey. It is the same checkbox with different label depending on suggested filter. -->
29<!ENTITY anchor.start.flexible.accesskey "o">31<!ENTITY anchor.start.flexible.accesskey "o">
30<!ENTITY anchor.end.label "na końcu adresu">32<!ENTITY anchor.end.label "na końcu adresu">
31<!ENTITY anchor.end.accesskey "k">33<!ENTITY anchor.end.accesskey "k">
3234
=== modified file 'chrome/locale/pl-PL/overlay.dtd'
--- chrome/locale/pl-PL/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/pl-PL/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -1,28 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK *****
24
25 -->
26<!ENTITY status.tooltip "Status:">1<!ENTITY status.tooltip "Status:">
27<!ENTITY blocked.tooltip "Zablokowane elementy na tej stronie:">2<!ENTITY blocked.tooltip "Zablokowane elementy na tej stronie:">
28<!ENTITY filters.tooltip "Najczęściej stosowane filtry:">3<!ENTITY filters.tooltip "Najczęściej stosowane filtry:">
@@ -38,10 +13,10 @@
38<!ENTITY settings.label "Ustawienia">13<!ENTITY settings.label "Ustawienia">
39<!ENTITY settings.accesskey "U">14<!ENTITY settings.accesskey "U">
40<!ENTITY opensidebar.label "Otwórz listę blokowalnych elementów">15<!ENTITY opensidebar.label "Otwórz listę blokowalnych elementów">
41<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->16<!-- Note: This access key should usually be the same as closesidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
42<!ENTITY opensidebar.accesskey "B">17<!ENTITY opensidebar.accesskey "B">
43<!ENTITY closesidebar.label "Zamknij listę blokowalnych elementów">18<!ENTITY closesidebar.label "Zamknij listę blokowalnych elementów">
44<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->19<!-- Note: This access key should usually be the same as opensidebar.accesskey. It is the same menu item with different label depending on whether the sidebar is currently open. -->
45<!ENTITY closesidebar.accesskey "B">20<!ENTITY closesidebar.accesskey "B">
46<!ENTITY whitelist.site.label "Wyłącz blokowanie na --">21<!ENTITY whitelist.site.label "Wyłącz blokowanie na --">
47<!ENTITY whitelist.page.label "Wyłącz blokowanie tylko na tej stronie">22<!ENTITY whitelist.page.label "Wyłącz blokowanie tylko na tej stronie">
4823
=== modified file 'chrome/locale/pt-BR/composer.dtd'
--- chrome/locale/pt-BR/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/pt-BR/composer.dtd 2009-08-12 17:24:40 +0000
@@ -5,7 +5,7 @@
5<!ENTITY disabled.warning.beforeLink "O Adblock Plus está atualmente desativado. Você ainda pode adicionar filtro mas eles não serão aplicados enquanto você não">5<!ENTITY disabled.warning.beforeLink "O Adblock Plus está atualmente desativado. Você ainda pode adicionar filtro mas eles não serão aplicados enquanto você não">
6<!ENTITY disabled.warning.link "ativar o Adblock Plus">6<!ENTITY disabled.warning.link "ativar o Adblock Plus">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "O grupo de filtros &quot;&#x25;S&quot; a que esse filtro deveria ser adicionado está atualmente desativada. Você ainda pode adicionar o filtro, mas ele não será aplicado até que">8<!ENTITY groupDisabled.warning.beforeLink "O grupo de filtros &quot;&#x25;S&quot;a que esse filtro foi adicionado está atualmente desativado. Você ainda pode adicionar o filtro, mas ele não será aplicado até que você">
9<!ENTITY groupDisabled.warning.link "ative o grupo de filtros">9<!ENTITY groupDisabled.warning.link "ative o grupo de filtros">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Novo filtro:">11<!ENTITY filter.label "Novo filtro:">
1212
=== modified file 'chrome/locale/pt-BR/overlay.dtd'
--- chrome/locale/pt-BR/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/pt-BR/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -8,7 +8,7 @@
8<!ENTITY context.image.label "Adblock Imagem">8<!ENTITY context.image.label "Adblock Imagem">
9<!ENTITY context.object.label "Adblock Objeto">9<!ENTITY context.object.label "Adblock Objeto">
10<!ENTITY context.frame.label "Adblock Frame">10<!ENTITY context.frame.label "Adblock Frame">
11<!ENTITY context.removeWhitelist.label "Adblock Plus: Reativa nessa página">11<!ENTITY context.removeWhitelist.label "Adblock Plus: Reativar nessa página">
12<!ENTITY sidebar.title "Itens bloqueáveis na página atual.">12<!ENTITY sidebar.title "Itens bloqueáveis na página atual.">
13<!ENTITY settings.label "Preferências">13<!ENTITY settings.label "Preferências">
14<!ENTITY settings.accesskey "F">14<!ENTITY settings.accesskey "F">
1515
=== modified file 'chrome/locale/pt-BR/settings.dtd'
--- chrome/locale/pt-BR/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/pt-BR/settings.dtd 2009-08-12 17:31:15 +0000
@@ -68,7 +68,7 @@
68<!ENTITY filter.column "Regra de Filtro">68<!ENTITY filter.column "Regra de Filtro">
69<!ENTITY filter.accesskey "R">69<!ENTITY filter.accesskey "R">
70<!ENTITY slow.column "Filtros lentos">70<!ENTITY slow.column "Filtros lentos">
71<!ENTITY slow.accesskey "i">71<!ENTITY slow.accesskey "e">
72<!ENTITY enabled.column "Ativado">72<!ENTITY enabled.column "Ativado">
73<!ENTITY enabled.accesskey "A">73<!ENTITY enabled.accesskey "A">
74<!ENTITY hitcount.column "Acertos">74<!ENTITY hitcount.column "Acertos">
7575
=== modified file 'chrome/locale/ru-RU/about.dtd'
--- chrome/locale/ru-RU/about.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ru-RU/about.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "О Adblock Plus">1<!ENTITY dialog.title "О Adblock Plus">
262
27<!ENTITY caption.title "Adblock Plus">3<!ENTITY caption.title "Adblock Plus">
284
=== modified file 'chrome/locale/ru-RU/composer.dtd'
--- chrome/locale/ru-RU/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/ru-RU/composer.dtd 2009-08-12 17:24:40 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Составление фильтра для Adblock Plus">1<!ENTITY dialog.title "Составление фильтра для Adblock Plus">
26<!ENTITY accept.label "Добавить фильтр">2<!ENTITY accept.label "Добавить фильтр">
27<!ENTITY advanced.label "Расширенный вид">3<!ENTITY advanced.label "Расширенный вид">
284
=== modified file 'chrome/locale/ru-RU/global.properties'
--- chrome/locale/ru-RU/global.properties 2009-07-25 19:31:00 +0000
+++ chrome/locale/ru-RU/global.properties 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1# ***** BEGIN LICENSE BLOCK *****
2# Version: MPL 1.1
3#
4# The contents of this file are subject to the Mozilla Public License Version
5# 1.1 (the "License"); you may not use this file except in compliance with
6# the License. You may obtain a copy of the License at
7# http://www.mozilla.org/MPL/
8#
9# Software distributed under the License is distributed on an "AS IS" basis,
10# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11# for the specific language governing rights and limitations under the
12# License.
13#
14# The Original Code is Adblock Plus.
15#
16# The Initial Developer of the Original Code is
17# Wladimir Palant.
18# Portions created by the Initial Developer are Copyright (C) 2006-2009
19# the Initial Developer. All Rights Reserved.
20#
21# Contributor(s):
22#
23# ***** END LICENSE BLOCK *****
24
25extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Скажи "нет" рекламе!1extensions.{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.description=Скажи "нет" рекламе!
262
27status_active_label=Adblock3status_active_label=Adblock
284
=== modified file 'chrome/locale/ru-RU/overlay.dtd'
--- chrome/locale/ru-RU/overlay.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ru-RU/overlay.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY status.tooltip "Статус:">1<!ENTITY status.tooltip "Статус:">
26<!ENTITY blocked.tooltip "Заблокированные элементы на этой странице:">2<!ENTITY blocked.tooltip "Заблокированные элементы на этой странице:">
27<!ENTITY filters.tooltip "Наиболее часто примененные фильтры:">3<!ENTITY filters.tooltip "Наиболее часто примененные фильтры:">
284
=== modified file 'chrome/locale/ru-RU/settings.dtd'
--- chrome/locale/ru-RU/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ru-RU/settings.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Установки Adblock Plus">1<!ENTITY dialog.title "Установки Adblock Plus">
262
27<!ENTITY filters.label "Фильтры">3<!ENTITY filters.label "Фильтры">
284
=== modified file 'chrome/locale/ru-RU/sidebar.dtd'
--- chrome/locale/ru-RU/sidebar.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ru-RU/sidebar.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY detached.title "Adblock Plus: элементы открытой страницы (отсоединены)">1<!ENTITY detached.title "Adblock Plus: элементы открытой страницы (отсоединены)">
262
27<!ENTITY detach.label "Отсоединить">3<!ENTITY detach.label "Отсоединить">
284
=== modified file 'chrome/locale/ru-RU/subscription.dtd'
--- chrome/locale/ru-RU/subscription.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ru-RU/subscription.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Редактировать подписку">1<!ENTITY dialog.title "Редактировать подписку">
26<!ENTITY dialog.newtitle "Добавить подписку">2<!ENTITY dialog.newtitle "Добавить подписку">
273
284
=== modified file 'chrome/locale/ru-RU/tip_subscriptions.dtd'
--- chrome/locale/ru-RU/tip_subscriptions.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/ru-RU/tip_subscriptions.dtd 2009-08-12 17:31:15 +0000
@@ -1,27 +1,3 @@
1<!-- ***** BEGIN LICENSE BLOCK *****
2 - Version: MPL 1.1
3 -
4 - The contents of this file are subject to the Mozilla Public License Version
5 - 1.1 (the "License"); you may not use this file except in compliance with
6 - the License. You may obtain a copy of the License at
7 - http://www.mozilla.org/MPL/
8 -
9 - Software distributed under the License is distributed on an "AS IS" basis,
10 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 - for the specific language governing rights and limitations under the
12 - License.
13 -
14 - The Original Code is Adblock Plus.
15 -
16 - The Initial Developer of the Original Code is
17 - Wladimir Palant.
18 - Portions created by the Initial Developer are Copyright (C) 2006-2009
19 - the Initial Developer. All Rights Reserved.
20 -
21 - Contributor(s):
22 -
23 - ***** END LICENSE BLOCK ***** -->
24
25<!ENTITY dialog.title "Добавить подписку для Adblock Plus">1<!ENTITY dialog.title "Добавить подписку для Adblock Plus">
262
27<!ENTITY description.par1 "3<!ENTITY description.par1 "
284
=== modified file 'chrome/locale/sk-SK/about.dtd'
--- chrome/locale/sk-SK/about.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/sk-SK/about.dtd 2009-08-12 17:31:15 +0000
@@ -1,7 +1,7 @@
1<!ENTITY dialog.title "O rozšírení Adblock Plus">1<!ENTITY dialog.title "O rozšírení Adblock Plus">
2<!ENTITY caption.title "Adblock Plus">2<!ENTITY caption.title "Adblock Plus">
3<!ENTITY version.title "Verzia">3<!ENTITY version.title "Verzia">
4<!ENTITY description "Adblock Plus vám umožní rozhodnúť sa, čo si neprajete zobrazovať na stránkach.4<!ENTITY description "Adblock Plus vám umožní rozhodnúť sa, čo si neprajete zobrazovať na stránkach.
5 Nepotrebujete preberať všetky reklamy a titulky, ak ich nechcete - povedzte to Adblock Plus!">5 Nepotrebujete preberať všetky reklamy a titulky, ak ich nechcete - povedzte to Adblock Plus!">
6<!ENTITY homepage.label "Domovská stránka Adblock Plus:">6<!ENTITY homepage.label "Domovská stránka Adblock Plus:">
7<!ENTITY homepage.url "http://adblockplus.org/">7<!ENTITY homepage.url "http://adblockplus.org/">
88
=== modified file 'chrome/locale/sk-SK/settings.dtd'
--- chrome/locale/sk-SK/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/sk-SK/settings.dtd 2009-08-12 17:31:15 +0000
@@ -64,8 +64,8 @@
64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">64<!ENTITY filterdoc.url "http://adblockplus.org/en/filters">
65<!ENTITY about.label "O rozšírení Adblock Plus">65<!ENTITY about.label "O rozšírení Adblock Plus">
66<!ENTITY about.accesskey "O">66<!ENTITY about.accesskey "O">
67<!ENTITY description "Pridať adresu,ktorú chcete blokovať, návrhy skontrolujte v rozbaľovacej ponuke.67<!ENTITY description "Pridať adresu,ktorú chcete blokovať, návrhy skontrolujte v rozbaľovacej ponuke.
68 Môžete použiť * ako divokú kartu na vytvorenie všeobecných filtrov. Pokročilí používatelia môžu68 Môžete použiť * ako divokú kartu na vytvorenie všeobecných filtrov. Pokročilí používatelia môžu
69 použiť regulárne výrazy ako /banner\d+\.gif$/.">69 použiť regulárne výrazy ako /banner\d+\.gif$/.">
70<!ENTITY filter.column "Pravidlo filtra">70<!ENTITY filter.column "Pravidlo filtra">
71<!ENTITY filter.accesskey "f">71<!ENTITY filter.accesskey "f">
7272
=== modified file 'chrome/locale/sr-RS/composer.dtd'
--- chrome/locale/sr-RS/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/sr-RS/composer.dtd 2009-08-12 17:24:40 +0000
@@ -32,8 +32,8 @@
32<!ENTITY options.label "Опције">32<!ENTITY options.label "Опције">
33<!ENTITY domainRestriction.label "Ограничи на домен:">33<!ENTITY domainRestriction.label "Ограничи на домен:">
34<!ENTITY domainRestriction.accesskey "д">34<!ENTITY domainRestriction.accesskey "д">
35<!ENTITY domainRestriction.help "Наведите један или више домена раздвојених знаком &quot;|&quot;.35<!ENTITY domainRestriction.help "Наведите један или више домена раздвојених знаком &quot;|&quot;.
36Филтер ће бити употребљен једино за ове домене.36Филтер ће бити употребљен једино за ове домене.
37Знак &quot;~&quot; испред домена значи да ће домен бити изузет од филтрирања.">37Знак &quot;~&quot; испред домена значи да ће домен бити изузет од филтрирања.">
38<!ENTITY firstParty.label "Само са ове адресе">38<!ENTITY firstParty.label "Само са ове адресе">
39<!ENTITY firstParty.accesskey "в">39<!ENTITY firstParty.accesskey "в">
4040
=== modified file 'chrome/locale/sv-SE/composer.dtd'
--- chrome/locale/sv-SE/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/sv-SE/composer.dtd 2009-08-12 17:24:40 +0000
@@ -5,8 +5,8 @@
5<!ENTITY disabled.warning.beforeLink "Adblock Plus är inaktiverad. Du kan lägga till filter men kan inte användas förrän du">5<!ENTITY disabled.warning.beforeLink "Adblock Plus är inaktiverad. Du kan lägga till filter men kan inte användas förrän du">
6<!ENTITY disabled.warning.link "aktiverar Adblock Plus">6<!ENTITY disabled.warning.link "aktiverar Adblock Plus">
7<!ENTITY disabled.warning.afterLink ".">7<!ENTITY disabled.warning.afterLink ".">
8<!ENTITY groupDisabled.warning.beforeLink "Filtergruppen &quot;&#37;S&quot; som detta filter skulle läggas till i är f.n. avaktiverat. Du kan fortfarande lägga till det men kommer fungera">8<!ENTITY groupDisabled.warning.beforeLink "Filtergruppen &quot;&#x25;S&quot; som detta filter skall läggas till i är f.n. inaktiverat. Du kan lägga till det men kommer inte att användas förrän du">
9<!ENTITY groupDisabled.warning.link "först när du aktiverar gruppen">9<!ENTITY groupDisabled.warning.link "aktiverar denna filtergrupp.">
10<!ENTITY groupDisabled.warning.afterLink ".">10<!ENTITY groupDisabled.warning.afterLink ".">
11<!ENTITY filter.label "Nytt filter:">11<!ENTITY filter.label "Nytt filter:">
12<!ENTITY filter.accesskey "N">12<!ENTITY filter.accesskey "N">
@@ -24,9 +24,9 @@
24<!ENTITY custom.pattern.accesskey "E">24<!ENTITY custom.pattern.accesskey "E">
25<!ENTITY anchors.label "Acceptera endast mönster:">25<!ENTITY anchors.label "Acceptera endast mönster:">
26<!ENTITY anchor.start.label "i början av adresser">26<!ENTITY anchor.start.label "i början av adresser">
27<!ENTITY anchor.start.accesskey "ö">27<!ENTITY anchor.start.accesskey "b">
28<!ENTITY anchor.start.flexible.label "i början av domännamnet">28<!ENTITY anchor.start.flexible.label "i början av domännamnet">
29<!ENTITY anchor.start.flexible.accesskey "ö">29<!ENTITY anchor.start.flexible.accesskey "b">
30<!ENTITY anchor.end.label "i slutet av adresser">30<!ENTITY anchor.end.label "i slutet av adresser">
31<!ENTITY anchor.end.accesskey "t">31<!ENTITY anchor.end.accesskey "t">
32<!ENTITY options.label "Inställningar">32<!ENTITY options.label "Inställningar">
3333
=== modified file 'chrome/locale/sv-SE/settings.dtd'
--- chrome/locale/sv-SE/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/sv-SE/settings.dtd 2009-08-12 17:31:15 +0000
@@ -68,7 +68,7 @@
68<!ENTITY filter.column "Filterregler">68<!ENTITY filter.column "Filterregler">
69<!ENTITY filter.accesskey "F">69<!ENTITY filter.accesskey "F">
70<!ENTITY slow.column "Långsamma filter">70<!ENTITY slow.column "Långsamma filter">
71<!ENTITY slow.accesskey "i">71<!ENTITY slow.accesskey "l">
72<!ENTITY enabled.column "På">72<!ENTITY enabled.column "På">
73<!ENTITY enabled.accesskey "å">73<!ENTITY enabled.accesskey "å">
74<!ENTITY hitcount.column "Träffar">74<!ENTITY hitcount.column "Träffar">
7575
=== modified file 'chrome/locale/tr-TR/composer.dtd'
--- chrome/locale/tr-TR/composer.dtd 2009-07-25 18:59:41 +0000
+++ chrome/locale/tr-TR/composer.dtd 2009-08-12 17:24:40 +0000
@@ -5,9 +5,9 @@
5<!ENTITY disabled.warning.beforeLink "Adblock Plus şu an devre dışı. Yine de süzgeç ekleyebilirsiniz, ancak bunlar">5<!ENTITY disabled.warning.beforeLink "Adblock Plus şu an devre dışı. Yine de süzgeç ekleyebilirsiniz, ancak bunlar">
6<!ENTITY disabled.warning.link "Adblock Plus etkinleştirilene kadar">6<!ENTITY disabled.warning.link "Adblock Plus etkinleştirilene kadar">
7<!ENTITY disabled.warning.afterLink "uygulanmayacaktır.">7<!ENTITY disabled.warning.afterLink "uygulanmayacaktır.">
8<!ENTITY groupDisabled.warning.beforeLink "Bu süzgecin eklenmesi gereken &quot;&#x25;S&quot; süzgeç grubu şu anda devre dışı. Süzgeci yine de ekleyebilirsiniz ancak">8<!ENTITY groupDisabled.warning.beforeLink "Süzgecin eklenmesi gereken &quot;&#x25;S&quot; süzgeç grubu şu an devre dışı. Süzgeci şu an ekleyebilirsiniz ancak">
9<!ENTITY groupDisabled.warning.link "süzgeç grubunu devreye sokana kadar">9<!ENTITY groupDisabled.warning.link "süzgeç grubunu devreye soktuğunuzda">
10<!ENTITY groupDisabled.warning.afterLink "bu süzgeç kullanılmayacaktır.">10<!ENTITY groupDisabled.warning.afterLink "kullanılabilecektir.">
11<!ENTITY filter.label "Yeni süzgeç:">11<!ENTITY filter.label "Yeni süzgeç:">
12<!ENTITY filter.accesskey "y">12<!ENTITY filter.accesskey "y">
13<!ENTITY preferences.label "Mevcut süzgeçleri göster...">13<!ENTITY preferences.label "Mevcut süzgeçleri göster...">
1414
=== modified file 'chrome/locale/tr-TR/settings.dtd'
--- chrome/locale/tr-TR/settings.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/tr-TR/settings.dtd 2009-08-12 17:31:15 +0000
@@ -67,8 +67,8 @@
67<!ENTITY description "Engellemek istediğiniz adresleri yazın. Öneriler için açılır menüye bakın. Daha genel süzgeçler tanımlamak için * işaretini kullanabilirsiniz. İleri düzeyde bilgiye sahip kullanıcılar düzenli ifadelere de (ör. /reklam\d+\.gif$/) başvurabilirler.">67<!ENTITY description "Engellemek istediğiniz adresleri yazın. Öneriler için açılır menüye bakın. Daha genel süzgeçler tanımlamak için * işaretini kullanabilirsiniz. İleri düzeyde bilgiye sahip kullanıcılar düzenli ifadelere de (ör. /reklam\d+\.gif$/) başvurabilirler.">
68<!ENTITY filter.column "Süzgeç kuralı">68<!ENTITY filter.column "Süzgeç kuralı">
69<!ENTITY filter.accesskey "k">69<!ENTITY filter.accesskey "k">
70<!ENTITY slow.column "Yavaş süzgeçler">70<!ENTITY slow.column "Süzgeçleri göster">
71<!ENTITY slow.accesskey "v">71<!ENTITY slow.accesskey "g">
72<!ENTITY enabled.column "Etkinlik">72<!ENTITY enabled.column "Etkinlik">
73<!ENTITY enabled.accesskey "n">73<!ENTITY enabled.accesskey "n">
74<!ENTITY hitcount.column "İsabet">74<!ENTITY hitcount.column "İsabet">
7575
=== modified file 'chrome/locale/uk-UA/tip_subscriptions.dtd'
--- chrome/locale/uk-UA/tip_subscriptions.dtd 2009-07-25 19:31:00 +0000
+++ chrome/locale/uk-UA/tip_subscriptions.dtd 2009-08-12 17:31:15 +0000
@@ -1,15 +1,15 @@
1<!ENTITY dialog.title "Додати підписку на фільтри Adblock Plus">1<!ENTITY dialog.title "Додати підписку на фільтри Adblock Plus">
2<!ENTITY description.par1 "Дякую за встановлення Adblock Plus. Це розширення може2<!ENTITY description.par1 "Дякую за встановлення Adblock Plus. Це розширення може
3 відфільтровувати 99&#x25; інтернет-реклами. Проте, для забезпечення3 відфільтровувати 99&#x25; інтернет-реклами. Проте, для забезпечення
4 ефективності фільтрації ви повинні встановити хороший набір фільтрів. 4 ефективності фільтрації ви повинні встановити хороший набір фільтрів.
5 Ви можете зробити це самостійно, чи просто підписатися на списки5 Ви можете зробити це самостійно, чи просто підписатися на списки
6 фільтрів, складені іншими користувачами. Але в разі потреби ви завжди 6 фільтрів, складені іншими користувачами. Але в разі потреби ви завжди
7 можете додати ваші власні фільтри або вимкнути/вилучити підписки 7 можете додати ваші власні фільтри або вимкнути/вилучити підписки
8 на списки фільтрів.">8 на списки фільтрів.">
9<!ENTITY description.par2 "Ви можете вибрати одну підписку список рекомендованих підписок нижче9<!ENTITY description.par2 "Ви можете вибрати одну підписку список рекомендованих підписок нижче
10 (більше підписок можна додати у налаштуваннях Adblock Plus пізніше,10 (більше підписок можна додати у налаштуваннях Adblock Plus пізніше,
11 проте зазвичай потреби в цьому не виникає):">11 проте зазвичай потреби в цьому не виникає):">
12<!ENTITY note "Примітка: Список фільтрів, як правило, найбільш ефективний на сторінках12<!ENTITY note "Примітка: Список фільтрів, як правило, найбільш ефективний на сторінках
13 того регіону, для якого він створювався.">13 того регіону, для якого він створювався.">
14<!ENTITY adblock.warning "Adblock Plus помітив що встановлено Adblock чи стару версію Adblock Plus. Паралельне використання Adblock та Adblock Plus может спричинити проблеми ти тому цього слід уникати. Рекомендуємо вам зараз вилучити Adblock.">14<!ENTITY adblock.warning "Adblock Plus помітив що встановлено Adblock чи стару версію Adblock Plus. Паралельне використання Adblock та Adblock Plus может спричинити проблеми ти тому цього слід уникати. Рекомендуємо вам зараз вилучити Adblock.">
15<!ENTITY adblock.uninstall "Вилучити Adblock">15<!ENTITY adblock.uninstall "Вилучити Adblock">
1616
=== modified file 'components/AdblockPlus.js'
--- components/AdblockPlus.js 2009-07-25 18:59:41 +0000
+++ components/AdblockPlus.js 2009-08-12 17:24:40 +0000
@@ -98,9 +98,6 @@
98 if (outer)98 if (outer)
99 throw Cr.NS_ERROR_NO_AGGREGATION;99 throw Cr.NS_ERROR_NO_AGGREGATION;
100100
101 if (!abp.initialized)
102 throw Cr.NS_ERROR_NOT_INITIALIZED;
103
104 return abp.QueryInterface(iid);101 return abp.QueryInterface(iid);
105 }102 }
106 },103 },
@@ -324,21 +321,12 @@
324 return;321 return;
325 this.initialized = true;322 this.initialized = true;
326323
327 loader.loadSubScript('chrome://adblockplus/content/utils.js');
328 loader.loadSubScript('chrome://adblockplus/content/filterClasses.js');
329 loader.loadSubScript('chrome://adblockplus/content/subscriptionClasses.js');
330 loader.loadSubScript('chrome://adblockplus/content/filterStorage.js');
331 loader.loadSubScript('chrome://adblockplus/content/matcher.js');
332 loader.loadSubScript('chrome://adblockplus/content/elemhide.js');
333 loader.loadSubScript('chrome://adblockplus/content/filterListener.js');
334 loader.loadSubScript('chrome://adblockplus/content/policy.js');
335 loader.loadSubScript('chrome://adblockplus/content/requests.js');
336 loader.loadSubScript('chrome://adblockplus/content/prefs.js');
337 loader.loadSubScript('chrome://adblockplus/content/synchronizer.js');
338
339 timeLine.log("calling prefs.init()");324 timeLine.log("calling prefs.init()");
340 prefs.init();325 prefs.init();
341326
327 timeLine.log("calling filterListener.init()");
328 filterListener.init();
329
342 timeLine.log("calling filterStorage.init()");330 timeLine.log("calling filterStorage.init()");
343 filterStorage.init();331 filterStorage.init();
344332
@@ -348,6 +336,9 @@
348 timeLine.log("calling elemhide.init()");336 timeLine.log("calling elemhide.init()");
349 elemhide.init();337 elemhide.init();
350338
339 timeLine.log("calling synchronizer.init()");
340 synchronizer.init();
341
351 timeLine.leave("abp.init() done");342 timeLine.leave("abp.init() done");
352 },343 },
353344
@@ -481,6 +472,21 @@
481var NSGetModule = XPCOMUtils.generateNSGetModule([Initializer, ABPComponent]);472var NSGetModule = XPCOMUtils.generateNSGetModule([Initializer, ABPComponent]);
482473
483/*474/*
475 * Loading additional files
476 */
477loader.loadSubScript('chrome://adblockplus/content/utils.js');
478loader.loadSubScript('chrome://adblockplus/content/filterClasses.js');
479loader.loadSubScript('chrome://adblockplus/content/subscriptionClasses.js');
480loader.loadSubScript('chrome://adblockplus/content/filterStorage.js');
481loader.loadSubScript('chrome://adblockplus/content/matcher.js');
482loader.loadSubScript('chrome://adblockplus/content/elemhide.js');
483loader.loadSubScript('chrome://adblockplus/content/filterListener.js');
484loader.loadSubScript('chrome://adblockplus/content/policy.js');
485loader.loadSubScript('chrome://adblockplus/content/requests.js');
486loader.loadSubScript('chrome://adblockplus/content/prefs.js');
487loader.loadSubScript('chrome://adblockplus/content/synchronizer.js');
488
489/*
484 * Core Routines490 * Core Routines
485 */491 */
486492
487493
=== modified file 'debian/changelog'
--- debian/changelog 2009-07-25 22:23:03 +0000
+++ debian/changelog 2009-08-12 17:55:01 +0000
@@ -1,3 +1,13 @@
1adblock-plus (1.1.1-0ubuntu1) karmic; urgency=low
2
3 * New upstream release.
4 * Update maintainer field to new policy.
5 * Use new features of mozilla-devscripts 0.14
6 - simplify debian/rules
7 - reduce Depends to a simple ${xpi:Depends}
8
9 -- Benjamin Drung <bdrung@ubuntu.com> Wed, 12 Aug 2009 19:54:01 +0200
10
1adblock-plus (1.1-0ubuntu1) karmic; urgency=low11adblock-plus (1.1-0ubuntu1) karmic; urgency=low
212
3 * New upstream release.13 * New upstream release.
414
=== modified file 'debian/control'
--- debian/control 2009-07-25 19:47:12 +0000
+++ debian/control 2009-08-12 17:52:28 +0000
@@ -1,18 +1,18 @@
1Source: adblock-plus1Source: adblock-plus
2Section: web2Section: web
3Priority: optional3Priority: optional
4Maintainer: Maintainer: Ubuntu MOTU Developers <ubuntu-motu@lists.ubuntu.com>4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
5XSBC-Original-Maintainer: Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com>5XSBC-Original-Maintainer: Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com>
6Homepage: http://adblockplus.org/6Homepage: http://adblockplus.org/
7Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-dev/firefox-extensions/adblock-plus.ubuntu7Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-dev/firefox-extensions/adblock-plus.ubuntu
8Vcs-Browser: https://code.launchpad.net/~ubuntu-dev/firefox-extensions/adblock-plus.ubuntu8Vcs-Browser: https://code.launchpad.net/~ubuntu-dev/firefox-extensions/adblock-plus.ubuntu
9Build-Depends: cdbs, debhelper (>= 5), mozilla-devscripts (>= 0.05)9Build-Depends: cdbs, debhelper (>= 5), mozilla-devscripts (>= 0.14~)
10Build-Depends-Indep: perl, zip10Build-Depends-Indep: perl, zip
11Standards-Version: 3.8.211Standards-Version: 3.8.2
1212
13Package: adblock-plus13Package: adblock-plus
14Architecture: all14Architecture: all
15Depends: firefox | abrowser | firefox-3.0 | firefox-3.5 | seamonkey-browser (>= 1.0) | midbrowser (>= 0.2), ${misc:Depends}15Depends: ${xpi:Depends}, ${misc:Depends}
16Conflicts: mozilla-firefox-adblock (<= 0.5.3.043-4ubuntu1)16Conflicts: mozilla-firefox-adblock (<= 0.5.3.043-4ubuntu1)
17Replaces: mozilla-firefox-adblock (<= 0.5.3.043-4ubuntu1)17Replaces: mozilla-firefox-adblock (<= 0.5.3.043-4ubuntu1)
18Description: advertisement blocking extension for web browsers18Description: advertisement blocking extension for web browsers
1919
=== modified file 'debian/rules'
--- debian/rules 2009-07-25 21:20:06 +0000
+++ debian/rules 2009-08-12 17:52:28 +0000
@@ -1,8 +1,6 @@
1#!/usr/bin/make -f1#!/usr/bin/make -f
22
3MOZ_EXTENSION_PKG := adblock-plus
4MOZ_XPI_BUILD_COMMAND := perl ./create_xpi.pl adblockplus.xpi3MOZ_XPI_BUILD_COMMAND := perl ./create_xpi.pl adblockplus.xpi
5MOZ_XPI_MOZILLA_DIRS := firefox firefox-addons seamonkey midbrowser
64
7include /usr/share/cdbs/1/rules/debhelper.mk5include /usr/share/cdbs/1/rules/debhelper.mk
8include /usr/share/mozilla-devscripts/xpi.mk6include /usr/share/mozilla-devscripts/xpi.mk
97
=== modified file 'install.rdf'
--- install.rdf 2009-07-25 18:59:41 +0000
+++ install.rdf 2009-08-12 17:24:40 +0000
@@ -16,7 +16,7 @@
16 <Description>16 <Description>
17 <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>17 <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
18 <em:minVersion>3.0.9</em:minVersion>18 <em:minVersion>3.0.9</em:minVersion>
19 <em:maxVersion>3.6a1pre</em:maxVersion>19 <em:maxVersion>3.6b1pre</em:maxVersion>
20 </Description>20 </Description>
21 </em:targetApplication>21 </em:targetApplication>
22 22
2323
=== modified file 'version'
--- version 2009-07-25 19:31:00 +0000
+++ version 2009-08-12 17:31:15 +0000
@@ -1,1 +1,1 @@
11.1
2\ No newline at end of file1\ No newline at end of file
21.1.1
3\ No newline at end of file3\ No newline at end of file

Subscribers

People subscribed via source and target branches

to all changes: