[Pkg-mozext-commits] [tabmixplus] 01/03: Imported Upstream version 0.4.1.6

David Prévot taffit at moszumanska.debian.org
Mon Jan 5 17:49:24 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository tabmixplus.

commit 97d00350e8582368fcf894bd724fb04782d9de34
Author: David Prévot <david at tilapin.org>
Date:   Mon Jan 5 09:50:11 2015 -0400

    Imported Upstream version 0.4.1.6
---
 chrome.manifest                                |   6 -
 chrome/content/session/session.js              | 136 ++++++-----
 chrome/content/session/sessionStore.js         |  11 +-
 chrome/locale/ar/misc.dtd                      |  17 --
 chrome/locale/ar/pref-appearance.dtd           |  18 --
 chrome/locale/ar/pref-filetype.dtd             |   5 -
 chrome/locale/ar/pref-tabmix.dtd               | 308 -------------------------
 chrome/locale/ar/session-manager.properties    | 107 ---------
 chrome/locale/ar/tabmix.dtd                    | 131 -----------
 chrome/locale/ar/tabmix.properties             |  40 ----
 chrome/locale/eu/misc.dtd                      |  17 --
 chrome/locale/eu/pref-appearance.dtd           |  18 --
 chrome/locale/eu/pref-filetype.dtd             |   5 -
 chrome/locale/eu/pref-tabmix.dtd               | 308 -------------------------
 chrome/locale/eu/session-manager.properties    | 107 ---------
 chrome/locale/eu/tabmix.dtd                    | 131 -----------
 chrome/locale/eu/tabmix.properties             |  40 ----
 chrome/locale/fi/misc.dtd                      |  17 --
 chrome/locale/fi/pref-appearance.dtd           |  18 --
 chrome/locale/fi/pref-filetype.dtd             |   5 -
 chrome/locale/fi/pref-tabmix.dtd               | 308 -------------------------
 chrome/locale/fi/session-manager.properties    | 107 ---------
 chrome/locale/fi/tabmix.dtd                    | 131 -----------
 chrome/locale/fi/tabmix.properties             |  40 ----
 chrome/locale/lv-LV/misc.dtd                   |  17 --
 chrome/locale/lv-LV/pref-appearance.dtd        |  18 --
 chrome/locale/lv-LV/pref-filetype.dtd          |   5 -
 chrome/locale/lv-LV/pref-tabmix.dtd            | 308 -------------------------
 chrome/locale/lv-LV/session-manager.properties | 107 ---------
 chrome/locale/lv-LV/tabmix.dtd                 | 131 -----------
 chrome/locale/lv-LV/tabmix.properties          |  40 ----
 install.rdf                                    |  28 +--
 test.manifest                                  |   0
 33 files changed, 88 insertions(+), 2597 deletions(-)

diff --git a/chrome.manifest b/chrome.manifest
index 32fba82..7c09839 100644
--- a/chrome.manifest
+++ b/chrome.manifest
@@ -1,7 +1,6 @@
 content   tabmixplus                 chrome/content/
 resource  tabmixplus                 modules/
 
-locale    tabmixplus   ar            chrome/locale/ar/
 locale    tabmixplus   bg            chrome/locale/bg-BG/
 locale    tabmixplus   ca            chrome/locale/ca/
 locale    tabmixplus   cs            chrome/locale/cs-CZ/
@@ -11,9 +10,7 @@ locale    tabmixplus   el            chrome/locale/el/
 locale    tabmixplus   en-US         chrome/locale/en-US/
 locale    tabmixplus   es-ES         chrome/locale/es-ES/
 locale    tabmixplus   et            chrome/locale/et-EE/
-locale    tabmixplus   eu            chrome/locale/eu/
 locale    tabmixplus   fa            chrome/locale/fa-IR/
-locale    tabmixplus   fi            chrome/locale/fi/
 locale    tabmixplus   fr            chrome/locale/fr/
 locale    tabmixplus   he            chrome/locale/he-IL/
 locale    tabmixplus   hr            chrome/locale/hr-HR/
@@ -21,7 +18,6 @@ locale    tabmixplus   hu            chrome/locale/hu-HU/
 locale    tabmixplus   it            chrome/locale/it/
 locale    tabmixplus   ja            chrome/locale/ja/
 locale    tabmixplus   ko            chrome/locale/ko-KR/
-locale    tabmixplus   lv            chrome/locale/lv-LV/
 locale    tabmixplus   nl            chrome/locale/nl/
 locale    tabmixplus   pl            chrome/locale/pl/
 locale    tabmixplus   pt-BR         chrome/locale/pt-BR/
@@ -85,5 +81,3 @@ skin      tabmix-os    classic/1.0   chrome/skin/app_version/4.0/linux/ os=Linux
 
 style     chrome://global/content/customizeToolbar.xul              chrome://tabmixplus/skin/tab.css
 style     chrome://browser/content/preferences/preferences.xul      chrome://tabmixplus/skin/preferencesOverlay.css
-
-manifest  test.manifest
diff --git a/chrome/content/session/session.js b/chrome/content/session/session.js
index c66051d..43c75aa 100644
--- a/chrome/content/session/session.js
+++ b/chrome/content/session/session.js
@@ -2820,6 +2820,7 @@ try{
    },
 
    // call from tabloaded, tabClosed, saveAllTab
+// xxx add flag what to save : all, history, property, scrollPosition
    saveTab: function SM_saveTab(aTab, rdfLabelTabs, tabContainer, needToAppend) {
       if (this.isTabPrivate(aTab))
          return false;
@@ -2835,16 +2836,23 @@ try{
 
       var sessionHistory = aBrowser.webNavigation.sessionHistory;
       if (!sessionHistory)
-         return false;
+        return false;
       var rdfLabelTab = rdfLabelTabs + "/" + aTab.linkedPanel;
+      var index = sessionHistory.index < 0 ? 0 : sessionHistory.index;
+      var bContent = aBrowser[TabmixSvc.contentWindowAsCPOW];
+      try {
+         var curHistory = sessionHistory.getEntryAtIndex(index, false);
+         curHistory.QueryInterface(Ci.nsISHEntry).setScrollPosition(bContent.scrollX, bContent.scrollY);
+      } catch (ex) {Tabmix.assert(ex, "saveTab error at index " + sessionHistory.index);}
       var rdfNodeTab = this.RDFService.GetResource(rdfLabelTab);
-      var tabState = JSON.parse(TabmixSvc.ss.getTabState(aTab));
-      var data = this.serializeHistory(tabState);
-      if (!data)
-         return false;
-      data.pos = aTab._tPos;
-      data.image = tabState.image;
-      data.properties = TabmixSessionData.getTabProperties(aTab, true);
+      var data = {
+         index: this.enableSaveHistory ? index : 0,
+         pos: aTab._tPos,
+         image: gBrowser.getIcon(aTab),
+         properties: TabmixSessionData.getTabProperties(aTab, true),
+         history: this.saveTabHistory(sessionHistory),
+         scroll: bContent.scrollX + "," + bContent.scrollY
+      };
       this.saveTabData(rdfNodeTab, data);
       this.saveTabviewTab(rdfNodeTab, aTab);
 
@@ -2876,39 +2884,19 @@ try{
       this.setLiteral   (aNode, "scroll",     aData.scroll);
    },
 
-  /**
-   * Convert SessionStore tab history state object
-   *
-   * @param state
-   *        SessionStore tab state object
-   * @return object containing history entries, current history index and
-   *                current history scroll position
-   */
-   serializeHistory: function(state) {
-      // Ensure sure that all entries have url
-      var entries = state.entries.filter(function(e) e.url);
-      if (!entries.length)
-        return null;
-      // Ensure the index is in bounds.
-      var index = (state.index || entries.length) - 1;
-      index = Math.min(index, entries.length - 1);
-      index = Math.max(index, 0);
-      var historyStart = this.enableSaveHistory ? 0 : index;
-      var historyEnd = this.enableSaveHistory ? entries.length : index + 1;
+   saveTabHistory: function(sessionHistory) {
+      var historyStart = this.enableSaveHistory ? 0 : sessionHistory.index;
+      var historyEnd = this.enableSaveHistory ? sessionHistory.count : sessionHistory.index+1;
       var history = [];
-
-      var saveScroll = this.prefBranch.getBoolPref("save.scrollposition");
-      var currentScroll = saveScroll && state.scroll ? state.scroll.scroll : "0,0";
-      if (currentScroll != "0,0")
-        entries[index].scroll = currentScroll;
-
+      sessionHistory.QueryInterface(Ci.nsISHistoryInternal);
       for (let j = historyStart; j < historyEnd; j++) {
-        try {
-          let historyEntry = entries[j];
-          history.push(historyEntry.title || "");
-          history.push(historyEntry.url);
-          history.push(saveScroll && historyEntry.scroll || "0,0");
-        } catch (ex) {Tabmix.assert(ex, "serializeHistory error at index " + j); }
+         try {
+            let historyEntry = sessionHistory.getEntryAtIndex(j, false);
+            historyEntry.QueryInterface(Ci.nsISHEntry);
+            history.push(historyEntry.title);
+            history.push(historyEntry.URI.spec);
+            history.push(this.getScrollPosHs(historyEntry)); // not in use yet
+         } catch (ex) {Tabmix.assert(ex, "saveTabHistory error at index " + j); }
       }
       // generate unique separator and combine the array to one string
       var separator = "][", extraSeparator = "@";
@@ -2916,13 +2904,19 @@ try{
          while (history[i].indexOf(separator) > -1)
             separator += extraSeparator;
       }
-      return {
-        // insert the separator to history so we can extract it in
-        // TabmixConvertSession.getHistoryState
-        history: separator + "|-|" + encodeURI(history.join(separator)),
-        index: index,
-        scroll: currentScroll
-      };
+      // insert the separator to history so we can extract it in loadTabHistory
+      return separator + "|-|" + encodeURI(history.join(separator));
+   },
+
+   getScrollPosHs: function(historyEntry) {
+      if (this.prefBranch.getBoolPref("save.scrollposition")) {
+        try {
+          var x={}, y={};
+          historyEntry.getScrollPosition(x, y);
+          return x.value + "," + y.value;
+        } catch (ex) {}
+      }
+      return "0,0";
    },
 
    get canRestoreLastSession() {
@@ -3527,16 +3521,14 @@ try{
       var tabCount = ctabs.length;
       var maxTabsUndo = Services.prefs.getIntPref("browser.sessionstore.max_tabs_undo");
       for (var i = tabCount - 1; i >= 0; i--) {
-         let tabData = ctabs[i];
-         let data = this.getSessionStoreDataForRDF(tabData);
-         if (!data)
-            continue;
-         let uniqueId, rdfLabelSession, newNode;
+         let tabData, uniqueId, rdfLabelSession, newNode;
          uniqueId = "panel" + Date.now() + i;
          rdfLabelSession = rdfLabelTabs + "/" + uniqueId;
          newNode = this.RDFService.GetResource(rdfLabelSession);
          toContainer.AppendElement(newNode);
-         this.saveTabData(newNode, data);
+         tabData = ctabs[i];
+         this.getSessionStoreDataForRDF(tabData);
+         this.saveTabData(newNode, tabData);
 
          // delete old entry if closedTabs container wasn't empty
          if (toContainer.GetCount() > maxTabsUndo)
@@ -3547,33 +3539,51 @@ try{
 
    getSessionStoreDataForRDF: function SM_getSessionStoreDataForRDF(aTabData) {
       var tabState = aTabData.state;
-      var data = this.serializeHistory(tabState);
-      if (!data)
-         return false;
-      data.pos = aTabData.pos;
-      data.image = aTabData.image;
+      var count = tabState.entries.length;
+      var activeIndex = (tabState.index || count) - 1;
+      var historyStart = this.enableSaveHistory ? 0 : activeIndex;
+      var historyEnd = this.enableSaveHistory ? count : activeIndex + 1;
+      var historyEntry, history = [];
+      for (let j = historyStart; j < historyEnd; j++) {
+         try {
+            historyEntry = tabState.entries[j];
+            history.push(historyEntry.title || "");
+            history.push(historyEntry.url);
+            history.push(historyEntry.scroll || "0,0"); // not in use yet
+         } catch (ex) {Tabmix.assert(ex, "saveTabHistory error at index " + j); }
+      }
+      // generate unique separator and combine the array to one string
+      var separator = "][", extraSeparator = "@";
+      for (var i = 0; i < history.length; ++i) {
+         while (history[i].indexOf(separator) > -1)
+            separator += extraSeparator;
+      }
+      // insert the separator to history so we can extract it in loadTabHistory
+      aTabData.history = separator + "|-|" + encodeURI(history.join(separator));
+      aTabData.index = this.enableSaveHistory ? activeIndex : 0;
+      aTabData.scroll = this.prefBranch.getBoolPref("save.scrollposition") ?
+                         (tabState.entries[activeIndex].scroll || "0,0") : "0,0";
       // closed tab can not be protected - set protected to 0
       var _locked = TMP_SessionStore._getAttribute(tabState, "_locked") != "false" ? "1" : "0";
-      data.properties = "0" + _locked;
+      aTabData.properties = "0" + _locked;
       if ("disallow" in tabState && tabState.disallow) {
          for (let j = 0; j < TabmixSessionData.docShellItems.length; j++ )
-            data.properties += tabState.disallow.indexOf(TabmixSessionData.docShellItems[j]) == -1 ? "1" : "0";
+            aTabData.properties += tabState.disallow.indexOf(TabmixSessionData.docShellItems[j]) == -1 ? "1" : "0";
       }
       else {
-         data.properties += "11111";
+         aTabData.properties += "11111";
       }
       if ("attributes" in tabState && tabState.attributes) {
          delete tabState.attributes["_locked"];
          for (var name in tabState.attributes) {
-            data.properties += " " + name + "=" + encodeURI(tabState.attributes[name]);
+            aTabData.properties += " " + name + "=" + encodeURI(tabState.attributes[name]);
          }
       }
       if ("xultab" in tabState && tabState.xultab) {
          tabState.xultab = tabState.xultab.replace(" _locked=true", "").replace(" _locked=false", "");
          if (tabState.xultab)
-            data.properties += " " + tabState.xultab;
+            aTabData.properties += " " + tabState.xultab;
       }
-      return data;
    },
 
    deleteAllClosedtabs: function(sessionContainer) { // delete all closed tabs in this session
diff --git a/chrome/content/session/sessionStore.js b/chrome/content/session/sessionStore.js
index 80f645b..fd7e952 100644
--- a/chrome/content/session/sessionStore.js
+++ b/chrome/content/session/sessionStore.js
@@ -809,14 +809,7 @@ var TabmixConvertSession = { // jshint ignore:line
         return null;
       tabData.image = TabmixSessionManager.getLiteralValue(rdfNodeTab, "image", null);
       let index = TabmixSessionManager.getIntValue(rdfNodeTab, "index");
-      tabData.index = Math.max(1, Math.min(index + 1, tabData.entries.length));
-      let scroll = TabmixSessionManager.getLiteralValue(rdfNodeTab, "scroll", "0,0");
-      // until version 0.4.1.5 textZoom was included in scroll data
-      scroll = scroll.split(",").splice(0, 2).join(",");
-      if (scroll != "0,0") {
-        tabData.scroll = {scroll: scroll};
-      }
-
+      tabData.index = Math.min(index + 1, tabData.entries.length);
       var properties = TabmixSessionManager.getLiteralValue(rdfNodeTab, "properties");
       var tabAttribute = ["Images","Subframes","MetaRedirects","Plugins","Javascript"];
 
@@ -915,8 +908,6 @@ var TabmixConvertSession = { // jshint ignore:line
          let entry = { url:"", children:[], ID: 0};
          let index = i * 3;
          entry.url = historyData[index + 1];
-         if (!entry.url)
-            continue;
          entry.title = decodeData(historyData[index], !newFormat);
          entry.scroll = historyData[index + 2];
          entries.push(entry);
diff --git a/chrome/locale/ar/misc.dtd b/chrome/locale/ar/misc.dtd
deleted file mode 100644
index 28f324d..0000000
--- a/chrome/locale/ar/misc.dtd
+++ /dev/null
@@ -1,17 +0,0 @@
-<!ENTITY searchTabFocus.label "Load in background">
-<!ENTITY searchTabFocus.accesskey "B">
-<!ENTITY renametab.panel.title "تعديل عنوان اللسان">
-<!ENTITY renametab.reset.label "إعادة العنوان الأصلي">
-<!ENTITY title.label "العنوان">
-<!ENTITY default.label "الأصلي">
-<!ENTITY renametab.permanently.label "تغيير اسم هذا اللسان بغض النظر عن عنوانه">
-<!ENTITY renametab.permanently.tooltip "tab with history - the new name will remain when address changes">
-<!ENTITY forum.label "Forum">
-<!ENTITY faq.label "الأسئلة الشائعة">
-<!ENTITY help.label "مساعدة">
-<!ENTITY tabmix.label "تاب مٍكس بلس">
-<!ENTITY reloadtime.label1 "اختر الوقت من القوائم أدناه أو أدخِل الوقت مباشرة من لوحة المفاتيح">
-<!ENTITY specifyreload.label "حدد وقت إعادة التحميل">
-<!ENTITY sanitizer.entry "جلسات تاب مِكس بلس المحفوظة">
-<!ENTITY sanitizer.entry.accesskey "ت">
-<!ENTITY sanitizer.entry.confirm "هل أنت متأكد من رغبتك في مسح جميع بيانات جلساتك المحفوظة متضمنة النُسَخ الإحتياطية؟">
diff --git a/chrome/locale/ar/pref-appearance.dtd b/chrome/locale/ar/pref-appearance.dtd
deleted file mode 100644
index 78984b8..0000000
--- a/chrome/locale/ar/pref-appearance.dtd
+++ /dev/null
@@ -1,18 +0,0 @@
-<!ENTITY styles.label "أنماط مخصّصة">
-<!ENTITY currentTab.label "اللسان المختار">
-<!ENTITY unloadedTabs.label "الألسنة غير المحمّلة">
-<!ENTITY unreadTab.label "الألسنة غير المقروءة">
-<!ENTITY hideRGB.label "Hide RGB">
-<!ENTITY showRGB.label "Show RGB">
-<!ENTITY unreadAfterReload.label "set tab as unread after reload">
-<!ENTITY squaredTabs.label "Apply background color for squared tabs">
-<!ENTITY otherTabs.label "الألسنة الأخرى">
-<!ENTITY italic.label "مائل">
-<!ENTITY bold.label "عريض">
-<!ENTITY underline.label "خط سفلي">
-<!ENTITY textcolor.label "لون النص">
-<!ENTITY bgColor.label "لون الخلفية">
-<!ENTITY bgTopColor.label "top">
-<!ENTITY bgBottomColor.label "bottom">
-<!ENTITY useThis.label "استخدام هذا النمط لـ">
-<!ENTITY opacity.label "الإعتام">
diff --git a/chrome/locale/ar/pref-filetype.dtd b/chrome/locale/ar/pref-filetype.dtd
deleted file mode 100644
index b72f2fb..0000000
--- a/chrome/locale/ar/pref-filetype.dtd
+++ /dev/null
@@ -1,5 +0,0 @@
-<!ENTITY filetype.options "محرّر أنواع الملفات">
-<!ENTITY filetype.add "أضِف">
-<!ENTITY filetype.edit "عدّل">
-<!ENTITY filetype.delete "احذف">
-<!ENTITY filetype.new "نوع ملف جديد:">
diff --git a/chrome/locale/ar/pref-tabmix.dtd b/chrome/locale/ar/pref-tabmix.dtd
deleted file mode 100644
index 98c2ac6..0000000
--- a/chrome/locale/ar/pref-tabmix.dtd
+++ /dev/null
@@ -1,308 +0,0 @@
-<!ENTITY tab.links "الروابط">
-<!ENTITY tab.events "الأحداث">
-<!ENTITY tab.mouse "الفأرة">
-<!ENTITY tab.appearance "العرض">
-<!ENTITY tab.menu "القوائم">
-<!ENTITY tab.session "الجلسة">
-<!ENTITY tab.incompatible "خطأ">
-<!ENTITY apply.label "طبّق">
-<!ENTITY settings.export "صدّر الإعدادات">
-<!ENTITY settings.import "استورد الإعدادات">
-<!ENTITY settings.sync "Sync Preferences">
-<!ENTITY settings.default "استعد الإعدادات المبدئية">
-<!ENTITY generalWindowOpen.label "فتح الروابط التي تُفتح في نافذة جديدة في:">
-<!ENTITY externalLink.useSeparate.label "استخدام تفضيل منفصل للروابط القادمة من تطبيقات أخرى">
-<!ENTITY externalLinkTarget.label "فتح الروابط القادمة من تطبيقات أخرى في:">
-<!ENTITY linkTarget.tab "لسان جديد">
-<!ENTITY linkTarget.window "نافذة جديدة">
-<!ENTITY linkTarget.current "اللسان الحالي">
-<!ENTITY linkTarget.accesskey "ح">
-<!ENTITY divertedWindowOpen.label "JavaScript & Popup restriction:">
-<!ENTITY divertedWindowOpen.all "فتح جميع النوافذ المنبثقة في ألسنة">
-<!ENTITY divertedWindowOpen.some "السماح بتحجيم النوافذ المنبثقة">
-<!ENTITY divertedWindowOpen.none "السماح بجميع النوافذ المنبثقة">
-<!ENTITY linkTarget.label "Open links with a target attribute in current tab">
-<!ENTITY download.label "منع الألسنة الفارغة عند تنزيل ملفات">
-<!ENTITY edit.label "عدّل">
-<!ENTITY speLink.label "الإجبار على الفتح في لسان جديد:">
-<!ENTITY speLink.none "لا شيء">
-<!ENTITY speLink.allLinks "جميع الروابط">
-<!ENTITY speLink.external "الروابط المؤدية لمواقع أخرى">
-<!ENTITY singleWindow.label "تفعيل نمط النافذة الموحدة">
-<!ENTITY newTabs.label "الألسنة الجديدة">
-<!ENTITY tabOpen.label "فتح الألسنة">
-<!ENTITY tabFocus.label "Tab Focus">
-<!ENTITY tabClose.label "إغلاق الألسنة">
-<!ENTITY tabMerge.label "دمج الألسنة">
-<!ENTITY tabFeature.label "ميزات الألسنة">
-<!ENTITY newtab.label "تحميل في اللسان الجديد:">
-<!ENTITY replaceLastTabWith.label "عندما أقوم بإغلاق آخر لسان استبدله بـ">
-<!ENTITY newtab.blank "صفحة فارغة">
-<!ENTITY newtab.home "صفحة بداية فيرفكس">
-<!ENTITY newtab.current "الصفحة المُختارة">
-<!ENTITY newtab.duplicate "تكرار الصفحة المختارة مع تأريخها">
-<!ENTITY newtab.location.1 "صفحة لسان جديد">
-<!ENTITY newtab.placeholder.label "Default New Tab Page">
-<!ENTITY location.label.1 "العنوان">
-<!ENTITY focusContent.label "Focus content when loading non blank page">
-<!ENTITY openTabNext.label "فتح اللسان الجديد بجوار اللسان المختار">
-<!ENTITY openOtherTabNext.label "فتح الألسنة الأخرى بجوار اللسان المختار">
-<!ENTITY relatedAfterCurrent.label "فقط إذا كان له علاقة باللسان المختار">
-<!ENTITY openTabNext.tooltip1 "[a][b][c][1][2][3] -> [a][1][2][3][b][c]">
-<!ENTITY openDuplicateNext.label "فتح الألسنة المكرّرة بجوار الأصلية">
-<!ENTITY openTabNext.tooltip "[a][b][c][1][2][3] -> [a][3][2][1][b][c]">
-<!ENTITY openTabNextInverse.label "تغيير ترتيب الفتح">
-<!ENTITY openTabNextInverse.tooltip "[a][3][2][1][b][c] -> [a][1][2][3][b][c]">
-<!ENTITY openTabNextInverse.tooltip1 "فتح اللسان الجديد بجوار اللسان المفتوح مؤخرا من اللسان الحالي">
-<!ENTITY lockTabs.label "إيصاد الألسنة">
-<!ENTITY lockNewTabs.label "إيصاد الألسنة الجديدة">
-<!ENTITY lockAppTabs.label "إيصاد الألسنة المُثبّتة">
-<!ENTITY updateLockState.label "Apply changes to open tabs">
-<!ENTITY openNewTab.label "فتح ألسنة من:">
-<!ENTITY openBookmarks.label "العلامات">
-<!ENTITY openBMKGroups.label "مجموعات من العلامات">
-<!ENTITY openBMKGroups.tooltip "عدم تجاهل ألسنة عند فتح مجموعة من العلامات">
-<!ENTITY openHistory.label "التأريخ">
-<!ENTITY openUrl.label "شريط العنوان">
-<!ENTITY openSearch.label "شريط البحث">
-<!ENTITY middlecurrent1.label "Middle-click or Control-click opens items in current tab">
-<!ENTITY middlecurrent.tooltip "Only for bookmarks, history, links forced to open in new tab">
-<!ENTITY tabFocus.caption "Focus/Select tabs that open from:">
-<!ENTITY selectTab.label "الروابط">
-<!ENTITY selectDivertedTab.label "Diverted windows">
-<!ENTITY selectTabFromExternal.label "Other applications">
-<!ENTITY selectTabCommand.label "New tab commands">
-<!ENTITY contextMenuSearch.label "Context menu search for">
-<!ENTITY selectTabBH.label "العلامات/التأريخ">
-<!ENTITY duplicateTab.label "Duplicate Tab">
-<!ENTITY inversefocus1.label "Inverse Middle-click or Control-click focus of:">
-<!ENTITY warning.caption.label "التنبيه">
-<!ENTITY warnOnCloseProtected.label "نبهني عند إغلاق نافذة تحتوي ألسنة محمية">
-<!ENTITY warnOnCloseWindow.label "نبهني عند إغلاق نافذة تحتوي عدة ألسنة">
-<!ENTITY lasttab.caption.label "إغلاق اللسان الأخير">
-<!ENTITY keepWindow.label.3.1 "لا تغلق النافذة عند إغلاق اللسان الأخير">
-<!ENTITY keeptab.label "منع اللسان الأخير من الانغلاق">
-<!ENTITY closeOnMerge.label "إغلاق النوافذ بمجرد دمجها">
-<!ENTITY warnOnMerge.label "التنبيه عند إغلاق ألسنة غير مُدمجة">
-<!ENTITY currenttab.caption.label "إغلاق اللسان الحالي">
-<!ENTITY focusTab.labelBegin "عند إغلاق اللسان الحالي، انتقل إلى:">
-<!ENTITY focusTab.firstTab "اللسان الأول">
-<!ENTITY focusTab.leftTab "اللسان الأيسر">
-<!ENTITY focusTab.rightTab "اللسان الأيمن">
-<!ENTITY focusTab.lastTab "اللسان الأخير">
-<!ENTITY focusTab.lastSelectedTab "آخر لسان مختار">
-<!ENTITY focusTab.openerTab "Opener/right tab">
-<!ENTITY focusTab.openerTab.rtl "Opener/left tab">
-<!ENTITY focusTab.lastOpenedTab "أخر لسان مفتوح">
-<!ENTITY undoClose.label "Enable undo close tabs">
-<!ENTITY undoCloseCache.label "Max number of closed tabs to remember:">
-<!ENTITY undoClosepos.label "Restore the tab's original position">
-<!ENTITY menuonlybutton.label "Make the toolbar button display only a list">
-<!ENTITY ctrltab.label "Ctrl-Tab navigates tabs in the most recently used order">
-<!ENTITY cmdtab.label "Cmd-Tab navigates tabs in the most recently used order">
-<!ENTITY ctrltab.tabPreviews "عرض معاينة للسان">
-<!ENTITY ctrltab.popup "Ctrl-Tab displays a tab list popup menu">
-<!ENTITY cmdtab.popup "Cmd-Tab displays a tab list popup menu">
-<!ENTITY tabpopup.mouse "Tab list responds to the mouse">
-<!ENTITY mergeNoTabSelection.label "Merge windows when no tabs are selected">
-<!ENTITY mergeTabSelection.label "Merging after selecting tabs">
-<!ENTITY mergeall.label "دمج جميع النوافذ في نافذة واحدة">
-<!ENTITY mergelastfocused.label "دمج النافذة الحالية فقط مع آخر نافذة مختارة">
-<!ENTITY mergePopups.label "Also take popup windows">
-<!ENTITY popupNextToOpener.label "Place popups next to their openers">
-<!ENTITY activateSlideshow.label "Pressing #1 rotates tabs every">
-<!ENTITY toggleAnimation.label "Disable Open/Close tab animation">
-<!ENTITY reloadEvery.matchAddress.label "Reload a tab regardless of its address">
-<!ENTITY reloadEvery.onReloadButton.label "Show Reload Every menu on Reload button">
-<!ENTITY seconds.label "ثانية\ثوان">
-<!ENTITY minutes.label "دقيقة\دقائق">
-<!ENTITY tabBarAppearance.label "شريط الألسنة">
-<!ENTITY tabAppearance.label "اللسان">
-<!ENTITY toolBarAppearance.label "شريط الأدوات">
-<!ENTITY show.ontabbar.label "اعرض في شريط الألسنة">
-<!ENTITY show.ontab.label "اعرض في اللسان">
-<!ENTITY dragNewTabButton.tooltip "Drag 'New Tab' button to your tab-bar to enable this option.">
-<!ENTITY hideTabBarButton.label "زر غلق اللسان">
-<!ENTITY newTabButton.label "زر فتح لسان جديد">
-<!ENTITY newTabButton.posiotion.left.label "في الجانب الأيسر">
-<!ENTITY newTabButton.posiotion.right.label "في الجانب الأيمن">
-<!ENTITY newTabButton.posiotion.afterlast.label "بعد اللسان الأخير">
-<!ENTITY allTabsButton.label "جميع أزرار الألسنة">
-<!ENTITY tabBarSpace.label "مساحة إضافية في كلا الجانبين">
-<!ENTITY tabBarSpace.tooltip "For clicking and dropping something on tab bar">
-<!ENTITY tabbar.label "Hide tab bar when only one tab is open">
-<!ENTITY moveTabOnDragging.label "When dragging a tab move it directly">
-<!ENTITY dropIndicator.label "Drop indicator">
-<!ENTITY dropIndicator-native.label "Native style">
-<!ENTITY dropIndicator-builtin.label "Built-in style">
-<!ENTITY verticalTabbar.description "Use treeStyleTab or VerticalTab extension to control these preferences.">
-<!ENTITY tabBarPosition.label "الموضع:">
-<!ENTITY tabBarPosition.top.label "علوي (فوق المحتوى)">
-<!ENTITY tabBarPosition.bottom.label "سفلي (تحت المحتوى)">
-<!ENTITY tabScroll.label "عندما لا تلائم الألسنة العرض:">
-<!ENTITY tabScroll.none "يمكن تمريرها دون ظهور أزرار">
-<!ENTITY tabScroll.leftRightButtons "يمكن تمريرها مع ظهور أزرار">
-<!ENTITY tabScroll.rightButtons "يمكن تمريرها مع ظهور أزرار على اليمين">
-<!ENTITY tabScroll.rightButtons.rtl "يمكن تمريرها مع ظهور أزرار على اليسار">
-<!ENTITY tabScroll.multibar "أظهر الألسنة في صفوف متعددة">
-<!ENTITY maxrow.label "أقصى عدد صفوف يمكن عرضه:">
-<!ENTITY offsetAmountToScroll.label "When scrolling show part of next out-of-sight tab">
-<!ENTITY smoothScroll.label "تفعيل التمرير السلس">
-<!ENTITY scrolldelay.label "مُهلة التمرير (الوقت بين تكرار التمرير)">
-<!ENTITY highlight.label "الإبراز والتمييز">
-<!ENTITY currenttab.style.label "اللسان المختار">
-<!ENTITY unloadedtabs.style.label "الألسنة غير المحملة">
-<!ENTITY unreadtabs.style.label "الألسنة غير المقروءة">
-<!ENTITY othertabs.style.label "الألسنة الأخرى">
-<!ENTITY setstyles.label "تخصيص الأنماط">
-<!ENTITY extraIcons.label1 "أيقونات">
-<!ENTITY extraIcons.locked "القفل">
-<!ENTITY extraIcons.protected "الحماية">
-<!ENTITY extraIcons.autoreload "إعادة التحميل التلقائي">
-<!ENTITY extraIcons.hideonpinned "Hide on pinned tabs">
-<!ENTITY progressMeter.label "شريط التحميل على الألسنة">
-<!ENTITY showTabX.labelBegin "زر إغلاق اللسان">
-<!ENTITY showTabX.left "إظهار زر الإغلاق في اليسار">
-<!ENTITY showTabX.rtl "إظهار زر الإغلاق في اليمين">
-<!ENTITY milliseconds.label "مللي ثانية">
-<!-- LOCALIZATION NOTE          change this only if you need to change the width -->
-<!ENTITY showTabX.popup.width "13em">
-<!ENTITY showTabX.always "على الكل">
-<!ENTITY showTabX.current "على المختار">
-<!ENTITY showTabX.hover "on pointed for">
-<!ENTITY showTabX.alwaysExeption "on all tabs wider than">
-<!ENTITY showTabX.currentHover "on current & pointed for">
-<!ENTITY minWidth.label "عرض اللسان:">
-<!ENTITY widthTo.label "إلى">
-<!ENTITY widthPixels.label "بكسل">
-<!ENTITY flexTabs.label "عرض اللسان يلائم عنوان اللسان">
-<!ENTITY bookastitle.label "استخدام اسم العلامة كعنوان للسان">
-<!-- LOCALIZATION NOTE:          change this only if you need to change the width -->
-<!ENTITY toolbar.description.width "21em">
-<!ENTITY toolbar.description "You can customize which Tab Mix Plus buttons to show in your Toolbar">
-<!ENTITY toolbar.button.label "تخصيص">
-<!ENTITY toolbar.visible.caption "الأزرار الظاهرة">
-<!ENTITY toolbar.novisible.label "ليس هناك أزرار ظاهرة">
-<!ENTITY toolbar.hidden.caption "الأزرار المخفية">
-<!ENTITY toolbar.nohidden.label "ليس هناك أزرار مخفية">
-<!ENTITY mouseGesture.label "إيماءات الفأرة">
-<!ENTITY mouseClick.label "النقر بالفأرة">
-<!ENTITY mouseHoverSelect.labelBegin "Select tab pointed for">
-<!ENTITY tabFlip.label "Switch to last selected tab when clicking current one">
-<!ENTITY tabFlip.delay "Use a delay of">
-<!ENTITY clickFocus.label "Mouse click (down and release) to select a tab">
-<!ENTITY removeEntries.label "Remove Tab Mix Plus menu list entries using middle-click">
-<!ENTITY lockTabSizingOnClose.label "When closing a tab, other tabs should not resize until cursor leaves toolbar region">
-<!ENTITY removeEntries.tooltip "Includes closed tabs, closed windows, and saved sessions">
-<!ENTITY tabbarscrolling.caption "When scrolling over the tab-bar">
-<!ENTITY tabbarscrolling.holdShift.label "Hold Shift while scrolling to switch between these options">
-<!ENTITY tabbarscrolling.selectTab.label "Change selected tab">
-<!ENTITY tabbarscrolling.scrollAllTabs.label "Scroll all tabs">
-<!ENTITY tabbarscrolling.inverse.label "عكس اتجاه التمرير">
-<!ENTITY double.label "نقر مزدوج">
-<!ENTITY middle.label "نقر بالزر الأوسط">
-<!ENTITY ctrl.label "Ctrl-click">
-<!ENTITY cmd.label "Cmd-Click">
-<!ENTITY shift.label "Shift-click">
-<!ENTITY alt.label "Alt-Click">
-<!ENTITY ontab.label "on a tab:">
-<!ENTITY ontabbar.label "on the tabbar:">
-<!ENTITY clicktab.label "Choose command to perform when clicking on tab or tabbar">
-<!ENTITY ontabbar.dblClick.label "Prevent double click on Tab-bar from changing window size.">
-<!ENTITY ontabbar.click.label "Prevent clicking on Tab-bar from dragging the window.">
-<!ENTITY clicktab.default "Firefox default or other extension">
-<!ENTITY clicktab.nothing "Does nothing">
-<!ENTITY clicktab.addtab "Open a new tab">
-<!ENTITY clicktab.duplicatetab "Duplicates the tab">
-<!ENTITY clicktab.duplicatetabw "Duplicates the tab in a new window">
-<!ENTITY clicktab.detachtab "Move the tab to a new window">
-<!ENTITY clicktab.protecttab "Protects the tab">
-<!ENTITY clicktab.locktab "Locks the tab">
-<!ENTITY clicktab.freezetab "Protects and Locks the tab">
-<!ENTITY clicktab.renametab "Renames the tab">
-<!ENTITY clicktab.copyTabUrl "Copies the tab's URL to the clipboard">
-<!ENTITY clicktab.copyUrlFromClipboard "Load URL from clipboard">
-<!ENTITY clicktab.selectMerge "Selects the tab for merging">
-<!ENTITY clicktab.mergeTabs "Merges windows together">
-<!ENTITY clicktab.bookTab "Bookmarks the tab">
-<!ENTITY clicktab.bookTabs "Bookmarks all tabs">
-<!ENTITY clicktab.reloadtab "Reloads the tab">
-<!ENTITY clicktab.reloadtabs "Reloads all tabs">
-<!ENTITY clicktab.reloadothertabs "Reloads other tabs">
-<!ENTITY clicktab.reloadlefttabs "Reloads left tabs">
-<!ENTITY clicktab.reloadrighttabs "Reloads right tabs">
-<!ENTITY clicktab.autoReloadTab "Activate/Deactivate tab auto reload">
-<!ENTITY clicktab.removeall "Close all tabs">
-<!ENTITY clicktab.removeother "Close other tabs">
-<!ENTITY clicktab.removesimilar "Close tabs from similar domain">
-<!ENTITY clicktab.removetoLeft "Close Tabs to the Left">
-<!ENTITY clicktab.removetoRight "Close Tabs to the Right">
-<!ENTITY clicktab.uctab "Reopens last closed tab">
-<!ENTITY clicktab.ucatab "Reopens all closed tabs">
-<!ENTITY clicktab.snapback "SnapBack Tab">
-<!ENTITY clicktab.ietab "Opens the tab in IE">
-<!ENTITY contentLoad "Middle-click loads url from clipboard">
-<!ENTITY context.tab "Tab Context Menu">
-<!ENTITY context.main "Main Context Menu">
-<!ENTITY context.tools "Tools Menu">
-<!ENTITY showtabBarContext.label "Show in Tab Context Menu">
-<!ENTITY showContentAreaContext.label "Show in Main Context Menu">
-<!ENTITY showToolsMenu.label "Show in Tools Menu">
-<!ENTITY startupHomePage.label "Show my home page">
-<!ENTITY startupBlankPage.label "Show a blank page">
-<!ENTITY startupLastSession.label "Show my windows and tabs from last time">
-<!ENTITY sm.extension.description1 "Tab Mix Plus detect that Session Manager Extension is installed">
-<!ENTITY sm.extension.description2 "Tab Mix Plus session manager will be disabled">
-<!ENTITY sm.extension.description3 "You can click the button on the right to open Session Manager Options dialog">
-<!ENTITY sm.extension.description4 "Convert My sessions data from Tab Mix Plus format to Session Manager extension format">
-<!ENTITY sm.extension.convert.label "Convert">
-<!ENTITY sm.extension.chooseFile.label0 "Let me choose which data file to convert">
-<!ENTITY sm.extension.chooseFile.label1 "Convert Tab Mix Plus sessions from the current profile">
-<!ENTITY ss.enable.label "Use Firefox's built-in Session Restore feature">
-<!ENTITY ss.enable.tooltip "Uncheck to allow the use with Tab Mix Plus Session Manager">
-<!ENTITY ss.advanced_setting "Advanced Setting">
-<!ENTITY ss.advanced_setting.warning "Don't change these, unless you know what you're doing">
-<!ENTITY ss.interval "Minimum time interval between two state saves">
-<!ENTITY ss.interval.seconds "(in milliseconds)">
-<!ENTITY ss.privacy_level "Save sensitive data (form data, POSTDATA and cookies) for">
-<!ENTITY ss.privacy_level.allsites "All sites">
-<!ENTITY ss.privacy_level.unencrypted "Unencrypted sites only">
-<!ENTITY ss.privacy_level.nosites "No sites at all">
-<!ENTITY ss.postdata.label1 "Maximum amount of POSTDATA to be stored">
-<!ENTITY ss.postdata.label2 "(in bytes, -1 = all of it)">
-<!ENTITY sessionManger.enable "Enable Session Manager">
-<!ENTITY crashRecovery.enable "Enable Crash Recovery">
-<!ENTITY sm.StartExit "Start/Exit">
-<!ENTITY sm.restore "Restore">
-<!ENTITY sm.preserve "Preserve">
-<!ENTITY sm.start "When Browser Starts:">
-<!ENTITY sm.start.restore "Restore">
-<!ENTITY sm.start.ask "Ask Before Restoring">
-<!ENTITY sm.start.nothing "Don't Restore">
-<!ENTITY sm.exit "When Browser Exits:">
-<!ENTITY sm.exit.save "Save Session">
-<!ENTITY sm.exit.ask "Ask Before Saving">
-<!ENTITY sm.exit.nothing "Don't Save">
-<!ENTITY sm.startup "Startup Session:">
-<!ENTITY sm.lastsession "Last Session">
-<!ENTITY sm.previouslast "Previous to Last">
-<!ENTITY sm.chooseifempty "Choose another if empty">
-<!ENTITY sm.restore.options "When Restoring Sessions:">
-<!ENTITY sm.restore.overwrite "Overwrite existing windows">
-<!ENTITY sm.restore.overwriteTabs "And tabs">
-<!ENTITY sm.restore.closedWinList "Save windows in closed windows list">
-<!ENTITY sm.restore.merge "Join multiple windows into one">
-<!ENTITY sm.restore.bypassCache "Bypass cache when restoring">
-<!ENTITY sm.notrestore.label "When not restoring on start">
-<!ENTITY sm.restorePinned.label "Restore my pinned tabs from last time">
-<!ENTITY sm.preserve.options "Preserve Tabs:">
-<!ENTITY sm.preserve.history "History">
-<!ENTITY sm.preserve.protect "Protect Status">
-<!ENTITY sm.preserve.locked "Lock Status">
-<!ENTITY sm.preserve.permission "Permissions">
-<!ENTITY sm.preserve.scroll1 "Scroll Position">
-<!ENTITY sm.restore.winOptions "Preserve Windows:">
-<!ENTITY sm.restore.selectedTab "Selected tab">
-<!ENTITY sm.restore.closedTabs "Closed tabs list">
-<!ENTITY incompatible.extensions "Some of your extensions are incompatible with Tab Mix Plus, it is recommended that you will disable or uninstall those extensions.">
-<!ENTITY incompatible.button.label "Show List">
diff --git a/chrome/locale/ar/session-manager.properties b/chrome/locale/ar/session-manager.properties
deleted file mode 100644
index 5f825c6..0000000
--- a/chrome/locale/ar/session-manager.properties
+++ /dev/null
@@ -1,107 +0,0 @@
-sm.saveClosedTab.chkbox.label=Save closed tabs list with this session
-sm.button.continue.label=Continue
-sm.button.continue.accesskey=C
-sm.askBeforSave.title=Session Manager - Save Session
-sm.askBeforSave.msg0=Would you like to save your session?
-sm.askBeforSave.msg2=Only non-private windows will be save to disk
-sm.askBeforSave.msg1=If you don\'t save, next time you start the browser the \'Last Session\' will be empty.
-sm.askBeforSave.button0.label=Save Session
-sm.askBeforSave.button0.accesskey=S
-sm.askBeforSave.button1.label=Don\'t Save
-sm.askBeforSave.button1.accesskey=D
-sm.corrupted.title=Session Manager - Corrupted Database
-sm.corrupted.msg0=Session Manager cannot load its database from corrupted session.rdf.
-sm.corrupted.msg1=The file session.rdf will be deleted, a copy can be found in session.old in your profile. sessions backups are in <profile>/sessionbackups
-sm.areYouSure.msg=Are you sure you want to continue?
-sm.canChooseStartup.msg=You can choose a session to be your new startup session from the list:
-sm.addtoStartup.title=Session Manager - Add to Startup Session
-sm.addtoStartup.msg.windows=You are about to add window(s) to your startup session:
-sm.addtoStartup.msg.tabs=You are about to add tab(s) to your startup session:
-sm.addtoStartup.button0.label=Add to Session
-sm.addtoStartup.button0.accesskey=A
-sm.addtoStartup.button1.label=Don\'t Add
-sm.addtoStartup.button1.accesskey=D
-sm.replaceStartup.title=Session Manager - Override Startup Session
-sm.replaceStartup.msg=You are about to replace your startup session:
-sm.replaceStartup.button0.label=Replace Session
-sm.replaceStartup.button0.accesskey=R
-sm.replaceStartup.button1.label=Don\'t Replace
-sm.replaceStartup.button1.accesskey=D
-sm.removeStartup.title=Session Manager - Delete Startup Session
-sm.removeStartup.msg0=You are about to delete your startup session:
-sm.removeStartup.msg1=Choose a session to be your new startup session from the list:
-sm.removeStartup.button0.label=Delete
-sm.removeStartup.button0.accesskey=D
-sm.removeStartup.button1.label=Don\'t Delete
-sm.removeStartup.button1.accesskey=T
-sm.title=Session Manager
-sm.dontSaveBlank.msg=Session Manager doesn\'t save blank windows
-sm.sessoinSave.error=Error in Session Manager, session didn\'t save
-sm.sessionName.title.rename=Session Manager - Rename Session
-sm.sessionName.title.saveprevious=Session Manager - Save Session
-sm.sessionName.title.savethiswindow=Session Manager - Save This Window
-sm.sessionName.title.saveallwindows=Session Manager - Save All Windows
-sm.sessionName.msg0=Enter Session Name:
-sm.sessionName.msg1=Name must be at least one letter or number.
-sm.sessionName.msg2=This name is already in use!
-sm.sessionName.msg3=Are you sure you want to replace the session?
-sm.sessionName.button0.label=Rename Session
-sm.sessionName.button0.accesskey=R
-sm.sessionName.button1.label=Don\'t Rename
-sm.sessionName.button1.accesskey=D
-sm.session.empty=empty
-sm.session.tabs=T
-sm.session.windows=W
-sm.removeAll.title.session=Session Manager - Delete All Saved Sessions
-sm.removeAll.title.closedwindow=Session Manager - Delete All Closed Windows
-sm.removeAll.msg0=Are you sure you want to delete all your saved sessions?
-sm.removeAll.msg1=If you choose \'Delete\' your startup session will be the \'Last Session\'.
-sm.removeAll.msg2=Are you sure you want to delete all your closed windows?
-sm.sessionMenu.last=Last Session
-sm.sessionMenu.lastDefault=Last Session - Default
-sm.sessionMenu.lastgood=Last Good Session
-sm.sessionMenu.previous=Previous to Last
-sm.sessionMenu.crashed=Crashed Session
-sm.afterCrash.title=Session Manager - Restore after Crash
-sm.afterCrash.chkbox.label=Enable Session Manager
-sm.afterCrash.msg0=Your last session Crashed!
-sm.afterCrash.msg0.again=Your last Crashed session Crashed again!
-sm.afterCrash.msg1=Choose session to restore from the list:
-sm.afterCrash.msg2=Choose how to continue
-sm.afterCrash.msg3=Session Manager is currently disabled, if you enable Session Manager, you will be able to restore crashed sessions, closed sessions, saved sessions and closed windows from the Session Manager menu.
-sm.afterCrash.msg4=You can also restore the crashed session later from the Session Manager menu.
-sm.afterCrash.msg5=but nothing was saved.
-sm.afterCrash.msg6=but there isn\'t any open window in your Crashed session
-sm.afterCrash.msg7=Choose window to restore from Closed Windows list
-sm.afterCrash.msg8=(you can also restore closed windows later from the Closed Windows menu)
-sm.afterCrash.msg9=Your Crashed session is empty!
-sm.afterCrash.msg10=Session Manager did not find any sessions to restore from.
-sm.afterCrash.button0.label=Restore Session
-sm.afterCrash.button0.accesskey=R
-sm.afterCrash.button0.crashed.label=Restore Crashed Session
-sm.afterCrash.button0.crashed.accesskey=R
-sm.afterCrash.button1.label=Don\'t Restore
-sm.afterCrash.button1.accesskey=D
-sm.start.title=Session Manager - Restore Session
-sm.start.chkbox.label=Enable Crash Recovery
-sm.start.msg0=Your Startup session is empty!
-sm.start.msg1=Crash Recovery is currently disabled, if you enable Crash Recovery, you will be able to restore crashed sessions.
-sm.start.msg2=Error while looking for your startup session, your saved startup session does not exist.
-sm.restoreError.msg0=Error in session manager file!
-sm.restoreError.msg1=Delete the session you tried to restore
-sm.disable.msg=Firefox has a built-in session restore feature.
-sm.disable.msg1=Would you like to enable built-in session restore and disable the Tab Mix Plus Session Manager?
-sm.disable.msg2=Would you like to enable Tab Mix Plus Session Manager and disable the built-in session restore?
-sm.extension.convert.msg1=Would you like to convert your sessions data from Tab Mix Plus format to Session Manager extension format?
-sm.extension.convert.msg2=You can do it later from Tab Mix Plus session options window.
-sm.extension.convert.nosessions=There is no session in this file.
-sm.extension.convert.alreadyconverted=This session file have already been converted to Session Manager extension format.
-sm.extension.convert.doitagain=Do you wish to convert them again?
-sm.extension.convert.unable=Unable to convert from session.rdf
-sm.extension.convert.many=sessions converted, would you like to delete any of them?
-sm.extension.convert.one=one session converted, would you like to delete it?
-sm.extension.convert.rename=You will be able to rename the session(s) later from Session Manager menu
-sm.extension.convert.selectfile=Select session.rdf file to convert
-sm.extension.convert.rdffiles=RDF Files
-sm.extension.convert.sessionfiles=Session Files
-sm.tabview.hiddengroups=More tabs restored into hidden groups.
diff --git a/chrome/locale/ar/tabmix.dtd b/chrome/locale/ar/tabmix.dtd
deleted file mode 100644
index 8fa796c..0000000
--- a/chrome/locale/ar/tabmix.dtd
+++ /dev/null
@@ -1,131 +0,0 @@
-<!ENTITY closedtabsbtn.label "الألسنة المغلقة">
-<!ENTITY closedtabsbtn.tooltip "عرض قائمة الألسنة المغلقة">
-<!ENTITY sessionbtn.tooltip "عرض وإدارة جلساتك">
-<!ENTITY tabslistbtn.label "الألسنة المفتوحة">
-<!ENTITY tabslistbtn.tooltip "عرض قائمة الألسنة المفتوحة">
-<!ENTITY closedwindowsbtn.label "النوافذ المغلقة">
-<!ENTITY closedwindowsbtn.tooltip "عرض قائمة النوافذ المغلقة">
-<!ENTITY page.header.title "Tab Mix Plus Options">
-<!ENTITY options.main.sessionbutton.label "Tab Mix Plus Session Manager">
-<!ENTITY session.Tools "Session Manager">
-<!ENTITY closedWin.label "قائمة النوافذ المغلقة">
-<!ENTITY duplicateTabMenu.label "كرّر اللسان">
-<!ENTITY duplicateTabMenu.accesskey "ر">
-<!ENTITY duplicateinWin.label "كرّر في نافذة جديدة">
-<!ENTITY duplicateinWin.accesskey "ف">
-<!ENTITY detachTab.label "انقل إلى نافذة جديدة">
-<!ENTITY detachTab.accesskey "ذ">
-<!ENTITY mergeContext.label "دمج النوافذ">
-<!ENTITY mergeContext.accesskey "ج">
-<!ENTITY renametab.label "غيّر تسمية اللسان">
-<!ENTITY renametab.accesskey "س">
-<!ENTITY copytaburl.label "انسخ رابط اللسان">
-<!ENTITY copytaburl.accesskey "خ">
-<!ENTITY reloadother.label "أعِد تحميل الألسنة الأخرى">
-<!ENTITY reloadother.accesskey "م">
-<!ENTITY reloadleft.label "أعِد تحميل الألسنة اليسرى">
-<!ENTITY reloadleft.accesskey "س">
-<!ENTITY reloadright.label "أعِد تحميل الألسنة اليمنى">
-<!ENTITY reloadright.accesskey "م">
-<!ENTITY autoReloadTab.label "أعِد تحميل اللسان كل">
-<!ENTITY autoReloadTab.accesskey "ك">
-<!ENTITY autoReloadSite.label "أعِد تحميل هذا الموقع كل">
-<!ENTITY autoReloadSite.accesskey "ك">
-<!ENTITY afterthis.label "بعد هذا اللسان">
-<!ENTITY bookmarktab.label "علّم هذا اللسان">
-<!ENTITY undoCloseListMenu.label "قائمة الألسنة المغلقة">
-<!ENTITY undoCloseListMenu.accesskey "ق">
-<!ENTITY closeAllTabsMenu.label "أغلق كل الألسنة">
-<!ENTITY closeall.accesskey "غ">
-<!ENTITY closeSimilarTab.label "أغلق الألسنة المشابهة">
-<!ENTITY closeSimilarTab.accesskey "ش">
-<!ENTITY closeTabsToLeft.label "Close Tabs to the Left">
-<!ENTITY closeleft.accesskey "س">
-<!ENTITY closeTabstoRight.label "Close Tabs to the Right">
-<!ENTITY closeright.accesskey "م">
-<!ENTITY docShellMenu.label "الأذونات">
-<!ENTITY docShellMenu.accesskey "ذ">
-<!ENTITY freezeTabMenu.label "جمّد اللسان">
-<!ENTITY freezeTabMenu.accesskey "ج">
-<!ENTITY protectTabMenu.label "Protect Tab">
-<!ENTITY protectTabMenu.tooltip "Protect tabs from being closed">
-<!ENTITY protectTabMenu.accesskey "P">
-<!ENTITY lockTabMenu.label "Lock Tab">
-<!ENTITY lockTabMenu.tooltip "All links open in new tab">
-<!ENTITY lockTabMenu.accesskey "K">
-<!ENTITY bookmarktabs.label "علّم كل الألسنة">
-<!ENTITY linkhere.label "افتح الرابط في هذا اللسان">
-<!ENTITY linkhere.accesskey "ف">
-<!ENTITY linkBackgroundTab.label "Open Link in Background Tab">
-<!ENTITY linkForegroundTab.label "Open Link in Foreground Tab">
-<!ENTITY linkBackgroundTab.accesskey "B">
-<!ENTITY linkForegroundTab.accesskey "F">
-<!ENTITY openalllinks.label "افتح الروابط في ألسنة جديدة">
-<!ENTITY openalllinks.accesskey "ج">
-<!ENTITY linkwithhistory.label "افتح الرابط في اللسان المكرّر">
-<!ENTITY linkwithhistory.accesskey "ك">
-<!ENTITY tabsList.label "قائمة الألسنة المفتوحة">
-<!ENTITY tabsList.accesskey "م">
-<!ENTITY allowImage.label "Image">
-<!ENTITY allowJavascript.label "JavaScript">
-<!ENTITY allowRedirect.label "Redirect">
-<!ENTITY allowPlugin.label "Plug-in">
-<!ENTITY allowFrame.label "Frame">
-<!ENTITY restoreincurrent.label "Restore to Current Tab">
-<!ENTITY restoreincurrent.accesskey "C">
-<!ENTITY restoreinwin.label "Restore to New Window">
-<!ENTITY restoreinwin.accesskey "W">
-<!ENTITY restoreintab.label "Restore to New Tab">
-<!ENTITY restoreintab.accesskey "T">
-<!ENTITY restoretab.label "Restore Tab">
-<!ENTITY restoretab.accesskey "R">
-<!ENTITY bookmark.label "علّم هذا الرابط...">
-<!ENTITY bookmark.accesskey "ع">
-<!ENTITY deletelist.label "احذف من القائمة">
-<!ENTITY deletelist.accesskey "ح">
-<!ENTITY settings.label "إعدادات">
-<!ENTITY saveWindow.label "Save This Window">
-<!ENTITY saveAllWindows.label "Save All Windows">
-<!ENTITY sm.context.overwrite "Restore, Overwrite Existing Window(s)">
-<!ENTITY sm.context.overwrite.key "O">
-<!ENTITY sm.context.restore.new "Restore to New Window(s)">
-<!ENTITY sm.context.restore.newkey "N">
-<!ENTITY sm.context.replacethis "Replace, With This Window">
-<!ENTITY sm.context.replacethis.key "T">
-<!ENTITY sm.context.replaceall "Replace, With All Windows">
-<!ENTITY sm.context.replaceall.key "A">
-<!ENTITY sm.context.add "Add This Window">
-<!ENTITY sm.context.add.key "W">
-<!ENTITY sm.context.addall "Add All Windows">
-<!ENTITY sm.context.addall.key "I">
-<!ENTITY sm.context.save "Save">
-<!ENTITY sm.context.save.key "S">
-<!ENTITY sm.context.rename "Rename">
-<!ENTITY sm.context.rename.key "R">
-<!ENTITY sm.context.delete "Delete">
-<!ENTITY sm.context.delete.key "D">
-<!ENTITY sm.context.deleteall "Delete All">
-<!ENTITY sm.context.deleteall.key "L">
-<!ENTITY sm.context.startup "Set as Startup Session">
-<!ENTITY sm.context.startup.key "P">
-<!ENTITY sm.context.details "Show Counters, Date and Time in Session Menu">
-<!ENTITY sm.context.details.key "C">
-<!ENTITY tab.key "T">
-<!ENTITY window.key "N">
-<!ENTITY merge.key "M">
-<!ENTITY sortedTabs.label "Sorted Tabs">
-<!ENTITY sortedTabs.tooltip "Check to show the list sorted alphabetically">
-<!ENTITY enable.label "Enable">
-<!ENTITY custom.label "Custom">
-<!ENTITY enableTabs.label "Enable All Tabs">
-<!ENTITY disableTabs.label "Disable All Tabs">
-<!ENTITY seconds.label "seconds">
-<!ENTITY minutes.label "minutes">
-<!ENTITY minute.label "minute">
-<!ENTITY hideTabBar.label "Hide the tab bar">
-<!ENTITY hideTabBar.never.label "Never">
-<!ENTITY hideTabBar.never.key "N">
-<!ENTITY hideTabBar.onOneTab.label "When I have only one tab">
-<!ENTITY hideTabBar.onOneTab.key "E">
-<!ENTITY hideTabBar.always.label "Always">
-<!ENTITY hideTabBar.always.key "A">
diff --git a/chrome/locale/ar/tabmix.properties b/chrome/locale/ar/tabmix.properties
deleted file mode 100644
index 171b159..0000000
--- a/chrome/locale/ar/tabmix.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-extensions.{dc572301-7619-498c-a57d-39143191b318}.description= Tab browsing with an added boost.
-tmp.merge.warning.title= Closing window with non-merged tabs
-tmp.merge.warning.message= The selected tabs will be merged with another window, but the other tabs will now be closed with the current window.
-tmp.merge.warning.checkboxLabel= Always warn me when closing a window with tabs that aren\'t merging.
-tmp.merge.error= At least 2 windows have to be opened before you can merge them
-tmp.merge.private= You can not merge private window with non-private window.
-tmp.importPref.error1= Can not import because it is not a valid file.
-tmp.importPref.error2= Failed to import settings.
-tmp.sessionempty= Next time you start the browser, \'Last Session\' will be empty.
-droptoclose.label= Drop a tab to close it
-droplink.label=Drop at the center to replace the tab or at the sides to create a new tab
-flstOn.label= Tabs Focus to Last Selected - Press F9 to swap preference
-flstOff.label= Tabs Focus to Right - Press F9 to swap preference
-slideshowOn.label=الانتقال التلقائي بين الألسنة يعمل - اضغط F8 لإيقافه
-slideshowOff.label=الانتقال التلقائي بين الأسنة متوقف - اضغط F8 لتشغيله
-undoclosetab.clear.label=نظّف قائمة الألسنة المغلقة
-undoclosetab.clear.accesskey=ظ
-undoClosedWindows.clear.label=نظّف قائمة النوافذ المغلقة
-undoClosedWindows.clear.accesskey=ظ
-protectedtabs.closeWarning.1=You are about to close %S protected tab. Are you sure you want to continue?
-protectedtabs.closeWarning.2=You are about to close %S protected tabs. Are you sure you want to continue?
-protectedtabs.closeWarning.3=You are about to close %S tabs, %S of them protected. Are you sure you want to continue?
-protectedtabs.closeWarning.4=نبهني عند محاولتي إغلاق نافذة تحتوي ألسنة محمية
-window.closeWarning.1=نبهني عند محاولتي إغلاق نافذة تحتوي عدة ألسنة
-closeWindow.label=أغلق النافذة
-confirm_autoreloadPostData_title=تحذير!
-confirm_autoreloadPostData=The page on which you tried to enable Auto Reload contains POSTDATA.\nIf you enable Auto Reload, any action the form carries out (such as an online purchase) will be repeated.\n\nAre you sure that you want to enable Auto Reload?
-incompatible.title= Tab Mix Plus
-incompatible.msg0= The following extensions are integrated or incompatible with Tab Mix Plus.
-incompatible.msg1=هل ترغب في تعطيل هذه الامتدادات؟
-incompatible.msg2=الامتدادات غير المتوافقة ستتعطل بعد إعادة تشغيل المتصفح.
-incompatible.button0.label=عطّل
-incompatible.button0.accesskey=ع
-incompatible.button1.label=لا تعطّل
-incompatible.button1.accesskey=ل
-incompatible.button2.label=عطّل وأعِد التشغيل
-incompatible.button2.accesskey=و
-incompatible.chkbox.label=عرض هذا التنبيه عند بدء المتصفح
-tabmixoption.error.title= Tab Mix Plus Error
-tabmixoption.error.msg= You must have one browser window to use Tab Mix Plus Options
diff --git a/chrome/locale/eu/misc.dtd b/chrome/locale/eu/misc.dtd
deleted file mode 100644
index 089e509..0000000
--- a/chrome/locale/eu/misc.dtd
+++ /dev/null
@@ -1,17 +0,0 @@
-<!ENTITY searchTabFocus.label "Load in background">
-<!ENTITY searchTabFocus.accesskey "B">
-<!ENTITY renametab.panel.title "Edit Tab Title">
-<!ENTITY renametab.reset.label "Reset to default title">
-<!ENTITY title.label "Title">
-<!ENTITY default.label "Default">
-<!ENTITY renametab.permanently.label "Rename this tab regardless of its address">
-<!ENTITY renametab.permanently.tooltip "tab with history - the new name will remain when address changes">
-<!ENTITY forum.label "Forum">
-<!ENTITY faq.label "FAQ">
-<!ENTITY help.label "Help">
-<!ENTITY tabmix.label "Tab Mix Plus">
-<!ENTITY reloadtime.label1 "Choose time from the list or enter your own time">
-<!ENTITY specifyreload.label "Specify Reload Time">
-<!ENTITY sanitizer.entry "Tab Mix Plus Saved Sessions">
-<!ENTITY sanitizer.entry.accesskey "T">
-<!ENTITY sanitizer.entry.confirm "Are you sure you want to erase ALL your saved sessions data including backups ?">
diff --git a/chrome/locale/eu/pref-appearance.dtd b/chrome/locale/eu/pref-appearance.dtd
deleted file mode 100644
index d4bc391..0000000
--- a/chrome/locale/eu/pref-appearance.dtd
+++ /dev/null
@@ -1,18 +0,0 @@
-<!ENTITY styles.label "Customize Styles">
-<!ENTITY currentTab.label "Current Tab">
-<!ENTITY unloadedTabs.label "Unloaded Tabs">
-<!ENTITY unreadTab.label "Unread Tabs">
-<!ENTITY hideRGB.label "Hide RGB">
-<!ENTITY showRGB.label "Show RGB">
-<!ENTITY unreadAfterReload.label "set tab as unread after reload">
-<!ENTITY squaredTabs.label "Apply background color for squared tabs">
-<!ENTITY otherTabs.label "Other Tabs">
-<!ENTITY italic.label "Italic">
-<!ENTITY bold.label "Bold">
-<!ENTITY underline.label "Underline">
-<!ENTITY textcolor.label "Text Color">
-<!ENTITY bgColor.label "Background Color">
-<!ENTITY bgTopColor.label "top">
-<!ENTITY bgBottomColor.label "bottom">
-<!ENTITY useThis.label "use this style for">
-<!ENTITY opacity.label "opacity">
diff --git a/chrome/locale/eu/pref-filetype.dtd b/chrome/locale/eu/pref-filetype.dtd
deleted file mode 100644
index 4661544..0000000
--- a/chrome/locale/eu/pref-filetype.dtd
+++ /dev/null
@@ -1,5 +0,0 @@
-<!ENTITY filetype.options "File Type Editor">
-<!ENTITY filetype.add "Add">
-<!ENTITY filetype.edit "Modify">
-<!ENTITY filetype.delete "Delete">
-<!ENTITY filetype.new "New file type:">
diff --git a/chrome/locale/eu/pref-tabmix.dtd b/chrome/locale/eu/pref-tabmix.dtd
deleted file mode 100644
index cb2003d..0000000
--- a/chrome/locale/eu/pref-tabmix.dtd
+++ /dev/null
@@ -1,308 +0,0 @@
-<!ENTITY tab.links "Laserbideak">
-<!ENTITY tab.events "Ekintzak">
-<!ENTITY tab.mouse "Sagua">
-<!ENTITY tab.appearance "Erakutsi">
-<!ENTITY tab.menu "Aukerak">
-<!ENTITY tab.session "Saioa">
-<!ENTITY tab.incompatible "Errorea">
-<!ENTITY apply.label "Aplikatu">
-<!ENTITY settings.export "Exportatze Aukerak">
-<!ENTITY settings.import "Importatze Aukerak">
-<!ENTITY settings.sync "Sync Preferences">
-<!ENTITY settings.default "Berrezarri lehenetsiak">
-<!ENTITY generalWindowOpen.label "Ireki "leiho berri" linkak horrela:">
-<!ENTITY externalLink.useSeparate.label "Use separate preference for links from other applications">
-<!ENTITY externalLinkTarget.label "Ireki beste aplikazioetatiko linkak horrela:">
-<!ENTITY linkTarget.tab "Fitxa Berria">
-<!ENTITY linkTarget.window "Leiho Berria">
-<!ENTITY linkTarget.current "Gaineko Fitxa">
-<!ENTITY linkTarget.accesskey "C">
-<!ENTITY divertedWindowOpen.label "Mugatu JavaScript eta Popup:">
-<!ENTITY divertedWindowOpen.all "Popup guztiak fitxa gisa ireki">
-<!ENTITY divertedWindowOpen.some "Baimendu edozein popup-leiho neurri">
-<!ENTITY divertedWindowOpen.none "Baimendu edozein popup">
-<!ENTITY linkTarget.label "Ireki fitxategi batera bidaltzen duten linkak gaineko fitxan">
-<!ENTITY download.label "Saihest fitxa zuriak fitxategiak deskargatzean">
-<!ENTITY edit.label "Editatu">
-<!ENTITY speLink.label "Fitxa berri gisa irekiarazi:">
-<!ENTITY speLink.none "Ezer ez">
-<!ENTITY speLink.allLinks "Link guztiak">
-<!ENTITY speLink.external "Beste orri baterako linkak">
-<!ENTITY singleWindow.label "Fitxa guztiak leiho bakar batean beti">
-<!ENTITY newTabs.label "Fitxa berriak">
-<!ENTITY tabOpen.label "Fitxak irekitzea">
-<!ENTITY tabFocus.label "Fitxen Hurrenkera">
-<!ENTITY tabClose.label "Fitxak ixtea">
-<!ENTITY tabMerge.label "Fitxak bateratzea">
-<!ENTITY tabFeature.label "Fitxen ezaugarriak">
-<!ENTITY newtab.label "Ireki fitxa berrian:">
-<!ENTITY replaceLastTabWith.label "Azken fitxa itxiz gero, honekin ordeztu:">
-<!ENTITY newtab.blank "Orri zuria">
-<!ENTITY newtab.home "Etxeko orria">
-<!ENTITY newtab.current "Gaineko orria">
-<!ENTITY newtab.duplicate "Bikoiztu orria">
-<!ENTITY newtab.location.1 "New Tab Page">
-<!ENTITY newtab.placeholder.label "Default New Tab Page">
-<!ENTITY location.label.1 "Address">
-<!ENTITY focusContent.label "Focus content when loading non blank page">
-<!ENTITY openTabNext.label "Ireki fitxa berriak gainekoaren ondoan">
-<!ENTITY openOtherTabNext.label "Ireki bestelako fitxak gainekoaren ondoan">
-<!ENTITY relatedAfterCurrent.label "Gaineko fitxarekiko zerikusia badu bakarrik">
-<!ENTITY openTabNext.tooltip1 "[a][b][c][1][2][3]->[a][1][2][3][b][c]">
-<!ENTITY openDuplicateNext.label "Ireki bikoiztutako fitxak originalaren ondoan">
-<!ENTITY openTabNext.tooltip "[a][b][c][1][2][3]->[a][3][2][1][b][c]">
-<!ENTITY openTabNextInverse.label "Aldatu irekitzeko hurrenkera">
-<!ENTITY openTabNextInverse.tooltip "[æ][3][2][1][b][c]->[a][1][2][3][b][c]">
-<!ENTITY openTabNextInverse.tooltip1 "Ireki fitxa berrian gainekoaren aurrekoaren ondoan">
-<!ENTITY lockTabs.label "Kateatu fitxak">
-<!ENTITY lockNewTabs.label "Kateatu fitxa berriak">
-<!ENTITY lockAppTabs.label "Kateatu aplikazioen fitxak">
-<!ENTITY updateLockState.label "Apply changes to open tabs">
-<!ENTITY openNewTab.label "Ireki fitxak hortik:">
-<!ENTITY openBookmarks.label "Lastermarkak">
-<!ENTITY openBMKGroups.label "Taldekako Lastermarkak">
-<!ENTITY openBMKGroups.tooltip "Ez ezabatu fitxarik taldekako bookmarkak irekitzean">
-<!ENTITY openHistory.label "Historia">
-<!ENTITY openUrl.label "Helbide barra">
-<!ENTITY openSearch.label "Bilatzaile barra">
-<!ENTITY middlecurrent1.label "Erdiko klikak edo CTRL-klikak gaineko fitxan irekitzen du">
-<!ENTITY middlecurrent.tooltip "Lastermarkak, historia eta derrigorrezko "leiho berri"-linkak bakarrik">
-<!ENTITY tabFocus.caption "Honelako fitxa berriak gainean jarri/hautatu:">
-<!ENTITY selectTab.label "Linkak">
-<!ENTITY selectDivertedTab.label "Leiho besteratuak">
-<!ENTITY selectTabFromExternal.label "Other applications">
-<!ENTITY selectTabCommand.label ""Fitxa berri" komandoak">
-<!ENTITY contextMenuSearch.label "Context menu search for">
-<!ENTITY selectTabBH.label "Lastermarkak/Historia">
-<!ENTITY duplicateTab.label "Bikoiztu fitxa">
-<!ENTITY inversefocus1.label "Erdiko klikak edo CTRL-klikak hautatzen du:">
-<!ENTITY warning.caption.label "Iragarpenak">
-<!ENTITY warnOnCloseProtected.label "Iragarri babestutako fitxak ixtekotan">
-<!ENTITY warnOnCloseWindow.label "Iragarri fitxa bat baino gehiagoko leihoa ixtekoan">
-<!ENTITY lasttab.caption.label "Azken fitxa ixtekotan">
-<!ENTITY keepWindow.label.3.1 "Ez itxi leihoa azken fitxa itxiz gero">
-<!ENTITY keeptab.label "Azken fitxa ezingo da itxi">
-<!ENTITY closeOnMerge.label "Itxi leiho zuriak leihoak bateratuz gero">
-<!ENTITY warnOnMerge.label "Iragarri bateratuko ez diren fitxak ixtekotan">
-<!ENTITY currenttab.caption.label "Gaineko fitxa ixtea">
-<!ENTITY focusTab.labelBegin "Gaineko fitxa ixtean, honako hau hautatu:">
-<!ENTITY focusTab.firstTab "Lehenengo fitxa">
-<!ENTITY focusTab.leftTab "Ezkerreko fitxa">
-<!ENTITY focusTab.rightTab "Eskuineko fitxa">
-<!ENTITY focusTab.lastTab "Azken fitxa">
-<!ENTITY focusTab.lastSelectedTab "Aurretik hautatutako fitxa">
-<!ENTITY focusTab.openerTab "Irekitzailea/eskuineko fitxa">
-<!ENTITY focusTab.openerTab.rtl "Irekitzailea/ezkerreko fitxa">
-<!ENTITY focusTab.lastOpenedTab "Aurretik irekitako fitxa">
-<!ENTITY undoClose.label "Piztu "itxitako fitxa berriz ireki" funtzioa">
-<!ENTITY undoCloseCache.label "Zenbat itxitako fitxak gogoratu:">
-<!ENTITY undoClosepos.label "Birrireki leju berdinean">
-<!ENTITY menuonlybutton.label "Make the toolbar button display only a list">
-<!ENTITY ctrltab.label "Ctrl-Tab navigates tabs in the most recently used order">
-<!ENTITY cmdtab.label "Cmd-Tab navigates tabs in the most recently used order">
-<!ENTITY ctrltab.tabPreviews "Show tab previews">
-<!ENTITY ctrltab.popup "Ctrl-Tab displays a tab list popup menu">
-<!ENTITY cmdtab.popup "Cmd-Tab displays a tab list popup menu">
-<!ENTITY tabpopup.mouse "Tab list responds to the mouse">
-<!ENTITY mergeNoTabSelection.label "Merge windows when no tabs are selected">
-<!ENTITY mergeTabSelection.label "Merging after selecting tabs">
-<!ENTITY mergeall.label "Merge all windows into one">
-<!ENTITY mergelastfocused.label "Merge only current window with last focused">
-<!ENTITY mergePopups.label "Also take popup windows">
-<!ENTITY popupNextToOpener.label "Place popups next to their openers">
-<!ENTITY activateSlideshow.label "Pressing #1 rotates tabs every">
-<!ENTITY toggleAnimation.label "Disable Open/Close tab animation">
-<!ENTITY reloadEvery.matchAddress.label "Reload a tab regardless of its address">
-<!ENTITY reloadEvery.onReloadButton.label "Show Reload Every menu on Reload button">
-<!ENTITY seconds.label "seconds">
-<!ENTITY minutes.label "min">
-<!ENTITY tabBarAppearance.label "Tab Bar">
-<!ENTITY tabAppearance.label "Tab">
-<!ENTITY toolBarAppearance.label "ToolBar">
-<!ENTITY show.ontabbar.label "Show on Tab bar">
-<!ENTITY show.ontab.label "Show on Tab">
-<!ENTITY dragNewTabButton.tooltip "Drag 'New Tab' button to your tab-bar to enable this option.">
-<!ENTITY hideTabBarButton.label "Close tab button">
-<!ENTITY newTabButton.label "New tab button">
-<!ENTITY newTabButton.posiotion.left.label "on Left side">
-<!ENTITY newTabButton.posiotion.right.label "on Right side">
-<!ENTITY newTabButton.posiotion.afterlast.label "After last tab">
-<!ENTITY allTabsButton.label "All tabs button">
-<!ENTITY tabBarSpace.label "Extra spaces on both sides">
-<!ENTITY tabBarSpace.tooltip "For clicking and dropping something on tab bar">
-<!ENTITY tabbar.label "Hide tab bar when only one tab is open">
-<!ENTITY moveTabOnDragging.label "When dragging a tab move it directly">
-<!ENTITY dropIndicator.label "Drop indicator">
-<!ENTITY dropIndicator-native.label "Native style">
-<!ENTITY dropIndicator-builtin.label "Built-in style">
-<!ENTITY verticalTabbar.description "Use treeStyleTab or VerticalTab extension to control these preferences.">
-<!ENTITY tabBarPosition.label "Position:">
-<!ENTITY tabBarPosition.top.label "Top (above content)">
-<!ENTITY tabBarPosition.bottom.label "Bottom (below content)">
-<!ENTITY tabScroll.label "When tabs don't fit width:">
-<!ENTITY tabScroll.none "Scrollable without buttons">
-<!ENTITY tabScroll.leftRightButtons "Scrollable with buttons on both sides">
-<!ENTITY tabScroll.rightButtons "Scrollable with buttons on right side">
-<!ENTITY tabScroll.rightButtons.rtl "Scrollable with buttons on left side">
-<!ENTITY tabScroll.multibar "Multi-row">
-<!ENTITY maxrow.label "Max number of rows to display:">
-<!ENTITY offsetAmountToScroll.label "When scrolling show part of next out-of-sight tab">
-<!ENTITY smoothScroll.label "Enable smooth scroll">
-<!ENTITY scrolldelay.label "Scroll Delay (time between scroll repetition)">
-<!ENTITY highlight.label "Highlight">
-<!ENTITY currenttab.style.label "Current tab">
-<!ENTITY unloadedtabs.style.label "Unloaded tabs">
-<!ENTITY unreadtabs.style.label "Unread tabs">
-<!ENTITY othertabs.style.label "Other tabs">
-<!ENTITY setstyles.label "Customize Styles">
-<!ENTITY extraIcons.label1 "Icons for">
-<!ENTITY extraIcons.locked "Locked">
-<!ENTITY extraIcons.protected "Protected">
-<!ENTITY extraIcons.autoreload "Auto Reload">
-<!ENTITY extraIcons.hideonpinned "Hide on pinned tabs">
-<!ENTITY progressMeter.label "Progress meter on tabs">
-<!ENTITY showTabX.labelBegin "Close tab button">
-<!ENTITY showTabX.left "Place on left side">
-<!ENTITY showTabX.rtl "Place on right side">
-<!ENTITY milliseconds.label "msec">
-<!-- LOCALIZATION NOTE          change this only if you need to change the width -->
-<!ENTITY showTabX.popup.width "13em">
-<!ENTITY showTabX.always "on all">
-<!ENTITY showTabX.current "on current">
-<!ENTITY showTabX.hover "on pointed for">
-<!ENTITY showTabX.alwaysExeption "on all tabs wider than">
-<!ENTITY showTabX.currentHover "on current & pointed for">
-<!ENTITY minWidth.label "Tab Width:">
-<!ENTITY widthTo.label "to">
-<!ENTITY widthPixels.label "pixels">
-<!ENTITY flexTabs.label "Tab width fits to tab title">
-<!ENTITY bookastitle.label "Use bookmark name as tab title">
-<!-- LOCALIZATION NOTE:          change this only if you need to change the width -->
-<!ENTITY toolbar.description.width "21em">
-<!ENTITY toolbar.description "You can customize which Tab Mix Plus buttons to show in your Toolbar">
-<!ENTITY toolbar.button.label "Customize">
-<!ENTITY toolbar.visible.caption "Visible buttons">
-<!ENTITY toolbar.novisible.label "There are no visible buttons">
-<!ENTITY toolbar.hidden.caption "Hidden buttons">
-<!ENTITY toolbar.nohidden.label "There are no hidden buttons">
-<!ENTITY mouseGesture.label "Mouse Gestures">
-<!ENTITY mouseClick.label "Mouse Clicking">
-<!ENTITY mouseHoverSelect.labelBegin "Select tab pointed for">
-<!ENTITY tabFlip.label "Switch to last selected tab when clicking current one">
-<!ENTITY tabFlip.delay "Use a delay of">
-<!ENTITY clickFocus.label "Mouse click (down and release) to select a tab">
-<!ENTITY removeEntries.label "Remove Tab Mix Plus menu list entries using middle-click">
-<!ENTITY lockTabSizingOnClose.label "When closing a tab, other tabs should not resize until cursor leaves toolbar region">
-<!ENTITY removeEntries.tooltip "Includes closed tabs, closed windows, and saved sessions">
-<!ENTITY tabbarscrolling.caption "When scrolling over the tab-bar">
-<!ENTITY tabbarscrolling.holdShift.label "Hold Shift while scrolling to switch between these options">
-<!ENTITY tabbarscrolling.selectTab.label "Change selected tab">
-<!ENTITY tabbarscrolling.scrollAllTabs.label "Scroll all tabs">
-<!ENTITY tabbarscrolling.inverse.label "Inverse scroll direction">
-<!ENTITY double.label "Double-click">
-<!ENTITY middle.label "Middle-click">
-<!ENTITY ctrl.label "Ctrl-click">
-<!ENTITY cmd.label "Cmd-Click">
-<!ENTITY shift.label "Shift-click">
-<!ENTITY alt.label "Alt-Click">
-<!ENTITY ontab.label "on a tab:">
-<!ENTITY ontabbar.label "on the tabbar:">
-<!ENTITY clicktab.label "Choose command to perform when clicking on tab or tabbar">
-<!ENTITY ontabbar.dblClick.label "Prevent double click on Tab-bar from changing window size.">
-<!ENTITY ontabbar.click.label "Prevent clicking on Tab-bar from dragging the window.">
-<!ENTITY clicktab.default "Firefox default or other extension">
-<!ENTITY clicktab.nothing "Does nothing">
-<!ENTITY clicktab.addtab "Open a new tab">
-<!ENTITY clicktab.duplicatetab "Duplicates the tab">
-<!ENTITY clicktab.duplicatetabw "Duplicates the tab in a new window">
-<!ENTITY clicktab.detachtab "Move the tab to a new window">
-<!ENTITY clicktab.protecttab "Protects the tab">
-<!ENTITY clicktab.locktab "Locks the tab">
-<!ENTITY clicktab.freezetab "Protects and Locks the tab">
-<!ENTITY clicktab.renametab "Renames the tab">
-<!ENTITY clicktab.copyTabUrl "Copies the tab's URL to the clipboard">
-<!ENTITY clicktab.copyUrlFromClipboard "Load URL from clipboard">
-<!ENTITY clicktab.selectMerge "Selects the tab for merging">
-<!ENTITY clicktab.mergeTabs "Merges windows together">
-<!ENTITY clicktab.bookTab "Bookmarks the tab">
-<!ENTITY clicktab.bookTabs "Bookmarks all tabs">
-<!ENTITY clicktab.reloadtab "Reloads the tab">
-<!ENTITY clicktab.reloadtabs "Reloads all tabs">
-<!ENTITY clicktab.reloadothertabs "Reloads other tabs">
-<!ENTITY clicktab.reloadlefttabs "Reloads left tabs">
-<!ENTITY clicktab.reloadrighttabs "Reloads right tabs">
-<!ENTITY clicktab.autoReloadTab "Activate/Deactivate tab auto reload">
-<!ENTITY clicktab.removeall "Close all tabs">
-<!ENTITY clicktab.removeother "Close other tabs">
-<!ENTITY clicktab.removesimilar "Close tabs from similar domain">
-<!ENTITY clicktab.removetoLeft "Close Tabs to the Left">
-<!ENTITY clicktab.removetoRight "Close Tabs to the Right">
-<!ENTITY clicktab.uctab "Reopens last closed tab">
-<!ENTITY clicktab.ucatab "Reopens all closed tabs">
-<!ENTITY clicktab.snapback "SnapBack Tab">
-<!ENTITY clicktab.ietab "Opens the tab in IE">
-<!ENTITY contentLoad "Middle-click loads url from clipboard">
-<!ENTITY context.tab "Tab Context Menu">
-<!ENTITY context.main "Main Context Menu">
-<!ENTITY context.tools "Tools Menu">
-<!ENTITY showtabBarContext.label "Show in Tab Context Menu">
-<!ENTITY showContentAreaContext.label "Show in Main Context Menu">
-<!ENTITY showToolsMenu.label "Show in Tools Menu">
-<!ENTITY startupHomePage.label "Show my home page">
-<!ENTITY startupBlankPage.label "Show a blank page">
-<!ENTITY startupLastSession.label "Show my windows and tabs from last time">
-<!ENTITY sm.extension.description1 "Tab Mix Plus detect that Session Manager Extension is installed">
-<!ENTITY sm.extension.description2 "Tab Mix Plus session manager will be disabled">
-<!ENTITY sm.extension.description3 "You can click the button on the right to open Session Manager Options dialog">
-<!ENTITY sm.extension.description4 "Convert My sessions data from Tab Mix Plus format to Session Manager extension format">
-<!ENTITY sm.extension.convert.label "Convert">
-<!ENTITY sm.extension.chooseFile.label0 "Let me choose which data file to convert">
-<!ENTITY sm.extension.chooseFile.label1 "Convert Tab Mix Plus sessions from the current profile">
-<!ENTITY ss.enable.label "Use Firefox's built-in Session Restore feature">
-<!ENTITY ss.enable.tooltip "Uncheck to allow the use with Tab Mix Plus Session Manager">
-<!ENTITY ss.advanced_setting "Advanced Setting">
-<!ENTITY ss.advanced_setting.warning "Don't change these, unless you know what you're doing">
-<!ENTITY ss.interval "Minimum time interval between two state saves">
-<!ENTITY ss.interval.seconds "(in milliseconds)">
-<!ENTITY ss.privacy_level "Save sensitive data (form data, POSTDATA and cookies) for">
-<!ENTITY ss.privacy_level.allsites "All sites">
-<!ENTITY ss.privacy_level.unencrypted "Unencrypted sites only">
-<!ENTITY ss.privacy_level.nosites "No sites at all">
-<!ENTITY ss.postdata.label1 "Maximum amount of POSTDATA to be stored">
-<!ENTITY ss.postdata.label2 "(in bytes, -1 = all of it)">
-<!ENTITY sessionManger.enable "Enable Session Manager">
-<!ENTITY crashRecovery.enable "Enable Crash Recovery">
-<!ENTITY sm.StartExit "Start/Exit">
-<!ENTITY sm.restore "Restore">
-<!ENTITY sm.preserve "Preserve">
-<!ENTITY sm.start "When Browser Starts:">
-<!ENTITY sm.start.restore "Restore">
-<!ENTITY sm.start.ask "Ask Before Restoring">
-<!ENTITY sm.start.nothing "Don't Restore">
-<!ENTITY sm.exit "When Browser Exits:">
-<!ENTITY sm.exit.save "Save Session">
-<!ENTITY sm.exit.ask "Ask Before Saving">
-<!ENTITY sm.exit.nothing "Don't Save">
-<!ENTITY sm.startup "Startup Session:">
-<!ENTITY sm.lastsession "Last Session">
-<!ENTITY sm.previouslast "Previous to Last">
-<!ENTITY sm.chooseifempty "Choose another if empty">
-<!ENTITY sm.restore.options "When Restoring Sessions:">
-<!ENTITY sm.restore.overwrite "Overwrite existing windows">
-<!ENTITY sm.restore.overwriteTabs "And tabs">
-<!ENTITY sm.restore.closedWinList "Save windows in closed windows list">
-<!ENTITY sm.restore.merge "Join multiple windows into one">
-<!ENTITY sm.restore.bypassCache "Bypass cache when restoring">
-<!ENTITY sm.notrestore.label "When not restoring on start">
-<!ENTITY sm.restorePinned.label "Restore my pinned tabs from last time">
-<!ENTITY sm.preserve.options "Preserve Tabs:">
-<!ENTITY sm.preserve.history "History">
-<!ENTITY sm.preserve.protect "Protect Status">
-<!ENTITY sm.preserve.locked "Lock Status">
-<!ENTITY sm.preserve.permission "Permissions">
-<!ENTITY sm.preserve.scroll1 "Scroll Position">
-<!ENTITY sm.restore.winOptions "Preserve Windows:">
-<!ENTITY sm.restore.selectedTab "Selected tab">
-<!ENTITY sm.restore.closedTabs "Closed tabs list">
-<!ENTITY incompatible.extensions "Some of your extensions are incompatible with Tab Mix Plus, it is recommended that you will disable or uninstall those extensions.">
-<!ENTITY incompatible.button.label "Show List">
diff --git a/chrome/locale/eu/session-manager.properties b/chrome/locale/eu/session-manager.properties
deleted file mode 100644
index 5f825c6..0000000
--- a/chrome/locale/eu/session-manager.properties
+++ /dev/null
@@ -1,107 +0,0 @@
-sm.saveClosedTab.chkbox.label=Save closed tabs list with this session
-sm.button.continue.label=Continue
-sm.button.continue.accesskey=C
-sm.askBeforSave.title=Session Manager - Save Session
-sm.askBeforSave.msg0=Would you like to save your session?
-sm.askBeforSave.msg2=Only non-private windows will be save to disk
-sm.askBeforSave.msg1=If you don\'t save, next time you start the browser the \'Last Session\' will be empty.
-sm.askBeforSave.button0.label=Save Session
-sm.askBeforSave.button0.accesskey=S
-sm.askBeforSave.button1.label=Don\'t Save
-sm.askBeforSave.button1.accesskey=D
-sm.corrupted.title=Session Manager - Corrupted Database
-sm.corrupted.msg0=Session Manager cannot load its database from corrupted session.rdf.
-sm.corrupted.msg1=The file session.rdf will be deleted, a copy can be found in session.old in your profile. sessions backups are in <profile>/sessionbackups
-sm.areYouSure.msg=Are you sure you want to continue?
-sm.canChooseStartup.msg=You can choose a session to be your new startup session from the list:
-sm.addtoStartup.title=Session Manager - Add to Startup Session
-sm.addtoStartup.msg.windows=You are about to add window(s) to your startup session:
-sm.addtoStartup.msg.tabs=You are about to add tab(s) to your startup session:
-sm.addtoStartup.button0.label=Add to Session
-sm.addtoStartup.button0.accesskey=A
-sm.addtoStartup.button1.label=Don\'t Add
-sm.addtoStartup.button1.accesskey=D
-sm.replaceStartup.title=Session Manager - Override Startup Session
-sm.replaceStartup.msg=You are about to replace your startup session:
-sm.replaceStartup.button0.label=Replace Session
-sm.replaceStartup.button0.accesskey=R
-sm.replaceStartup.button1.label=Don\'t Replace
-sm.replaceStartup.button1.accesskey=D
-sm.removeStartup.title=Session Manager - Delete Startup Session
-sm.removeStartup.msg0=You are about to delete your startup session:
-sm.removeStartup.msg1=Choose a session to be your new startup session from the list:
-sm.removeStartup.button0.label=Delete
-sm.removeStartup.button0.accesskey=D
-sm.removeStartup.button1.label=Don\'t Delete
-sm.removeStartup.button1.accesskey=T
-sm.title=Session Manager
-sm.dontSaveBlank.msg=Session Manager doesn\'t save blank windows
-sm.sessoinSave.error=Error in Session Manager, session didn\'t save
-sm.sessionName.title.rename=Session Manager - Rename Session
-sm.sessionName.title.saveprevious=Session Manager - Save Session
-sm.sessionName.title.savethiswindow=Session Manager - Save This Window
-sm.sessionName.title.saveallwindows=Session Manager - Save All Windows
-sm.sessionName.msg0=Enter Session Name:
-sm.sessionName.msg1=Name must be at least one letter or number.
-sm.sessionName.msg2=This name is already in use!
-sm.sessionName.msg3=Are you sure you want to replace the session?
-sm.sessionName.button0.label=Rename Session
-sm.sessionName.button0.accesskey=R
-sm.sessionName.button1.label=Don\'t Rename
-sm.sessionName.button1.accesskey=D
-sm.session.empty=empty
-sm.session.tabs=T
-sm.session.windows=W
-sm.removeAll.title.session=Session Manager - Delete All Saved Sessions
-sm.removeAll.title.closedwindow=Session Manager - Delete All Closed Windows
-sm.removeAll.msg0=Are you sure you want to delete all your saved sessions?
-sm.removeAll.msg1=If you choose \'Delete\' your startup session will be the \'Last Session\'.
-sm.removeAll.msg2=Are you sure you want to delete all your closed windows?
-sm.sessionMenu.last=Last Session
-sm.sessionMenu.lastDefault=Last Session - Default
-sm.sessionMenu.lastgood=Last Good Session
-sm.sessionMenu.previous=Previous to Last
-sm.sessionMenu.crashed=Crashed Session
-sm.afterCrash.title=Session Manager - Restore after Crash
-sm.afterCrash.chkbox.label=Enable Session Manager
-sm.afterCrash.msg0=Your last session Crashed!
-sm.afterCrash.msg0.again=Your last Crashed session Crashed again!
-sm.afterCrash.msg1=Choose session to restore from the list:
-sm.afterCrash.msg2=Choose how to continue
-sm.afterCrash.msg3=Session Manager is currently disabled, if you enable Session Manager, you will be able to restore crashed sessions, closed sessions, saved sessions and closed windows from the Session Manager menu.
-sm.afterCrash.msg4=You can also restore the crashed session later from the Session Manager menu.
-sm.afterCrash.msg5=but nothing was saved.
-sm.afterCrash.msg6=but there isn\'t any open window in your Crashed session
-sm.afterCrash.msg7=Choose window to restore from Closed Windows list
-sm.afterCrash.msg8=(you can also restore closed windows later from the Closed Windows menu)
-sm.afterCrash.msg9=Your Crashed session is empty!
-sm.afterCrash.msg10=Session Manager did not find any sessions to restore from.
-sm.afterCrash.button0.label=Restore Session
-sm.afterCrash.button0.accesskey=R
-sm.afterCrash.button0.crashed.label=Restore Crashed Session
-sm.afterCrash.button0.crashed.accesskey=R
-sm.afterCrash.button1.label=Don\'t Restore
-sm.afterCrash.button1.accesskey=D
-sm.start.title=Session Manager - Restore Session
-sm.start.chkbox.label=Enable Crash Recovery
-sm.start.msg0=Your Startup session is empty!
-sm.start.msg1=Crash Recovery is currently disabled, if you enable Crash Recovery, you will be able to restore crashed sessions.
-sm.start.msg2=Error while looking for your startup session, your saved startup session does not exist.
-sm.restoreError.msg0=Error in session manager file!
-sm.restoreError.msg1=Delete the session you tried to restore
-sm.disable.msg=Firefox has a built-in session restore feature.
-sm.disable.msg1=Would you like to enable built-in session restore and disable the Tab Mix Plus Session Manager?
-sm.disable.msg2=Would you like to enable Tab Mix Plus Session Manager and disable the built-in session restore?
-sm.extension.convert.msg1=Would you like to convert your sessions data from Tab Mix Plus format to Session Manager extension format?
-sm.extension.convert.msg2=You can do it later from Tab Mix Plus session options window.
-sm.extension.convert.nosessions=There is no session in this file.
-sm.extension.convert.alreadyconverted=This session file have already been converted to Session Manager extension format.
-sm.extension.convert.doitagain=Do you wish to convert them again?
-sm.extension.convert.unable=Unable to convert from session.rdf
-sm.extension.convert.many=sessions converted, would you like to delete any of them?
-sm.extension.convert.one=one session converted, would you like to delete it?
-sm.extension.convert.rename=You will be able to rename the session(s) later from Session Manager menu
-sm.extension.convert.selectfile=Select session.rdf file to convert
-sm.extension.convert.rdffiles=RDF Files
-sm.extension.convert.sessionfiles=Session Files
-sm.tabview.hiddengroups=More tabs restored into hidden groups.
diff --git a/chrome/locale/eu/tabmix.dtd b/chrome/locale/eu/tabmix.dtd
deleted file mode 100644
index 4b629a2..0000000
--- a/chrome/locale/eu/tabmix.dtd
+++ /dev/null
@@ -1,131 +0,0 @@
-<!ENTITY closedtabsbtn.label "Arestian itxitako fitxak">
-<!ENTITY closedtabsbtn.tooltip "Erakutsi itxitako fitxen zerrenda">
-<!ENTITY sessionbtn.tooltip "Display and Manage your Sessions">
-<!ENTITY tabslistbtn.label "Fitxa irekiak">
-<!ENTITY tabslistbtn.tooltip "Erakutsi fitxa irekien zerrenda">
-<!ENTITY closedwindowsbtn.label "Arestian itxitako leihoak">
-<!ENTITY closedwindowsbtn.tooltip "Erakutsi itxitako leihoen zerrenda">
-<!ENTITY page.header.title "Tab Mix Plus Hobespenak">
-<!ENTITY options.main.sessionbutton.label "Tab Mix Plus Session Manager">
-<!ENTITY session.Tools "Session Manager">
-<!ENTITY closedWin.label "Itxitako leihoen zerrenda">
-<!ENTITY duplicateTabMenu.label "Fitxa bikoiztu">
-<!ENTITY duplicateTabMenu.accesskey "Z">
-<!ENTITY duplicateinWin.label "Bikoiztu leiho berri batean">
-<!ENTITY duplicateinWin.accesskey "L">
-<!ENTITY detachTab.label "Mugitu leiho berri batera">
-<!ENTITY detachTab.accesskey "M">
-<!ENTITY mergeContext.label "Batu leihoak">
-<!ENTITY mergeContext.accesskey "B">
-<!ENTITY renametab.label "Aldatu fitxaren izena">
-<!ENTITY renametab.accesskey "M">
-<!ENTITY copytaburl.label "Kopiatu fitxaren URL">
-<!ENTITY copytaburl.accesskey "U">
-<!ENTITY reloadother.label "Birkargatu beste fitxak">
-<!ENTITY reloadother.accesskey "F">
-<!ENTITY reloadleft.label "Birkargatu ezkerreko fitxak">
-<!ENTITY reloadleft.accesskey "E">
-<!ENTITY reloadright.label "Birkargatu eskuineko fitxak">
-<!ENTITY reloadright.accesskey "R">
-<!ENTITY autoReloadTab.label "Birkargatu behin eta berriz">
-<!ENTITY autoReloadTab.accesskey "D">
-<!ENTITY autoReloadSite.label "Reload This Site Every">
-<!ENTITY autoReloadSite.accesskey "E">
-<!ENTITY afterthis.label "Fitxa honen ondoren">
-<!ENTITY bookmarktab.label "Egin fitxa honen laster-marka">
-<!ENTITY undoCloseListMenu.label "Itxitako fitxen zerrenda">
-<!ENTITY undoCloseListMenu.accesskey "X">
-<!ENTITY closeAllTabsMenu.label "Itxi fitxa oro">
-<!ENTITY closeall.accesskey "O">
-<!ENTITY closeSimilarTab.label "Itxi antzeko fitxak">
-<!ENTITY closeSimilarTab.accesskey "Z">
-<!ENTITY closeTabsToLeft.label "Close Tabs to the Left">
-<!ENTITY closeleft.accesskey "E">
-<!ENTITY closeTabstoRight.label "Close Tabs to the Right">
-<!ENTITY closeright.accesskey "R">
-<!ENTITY docShellMenu.label "Baimenak">
-<!ENTITY docShellMenu.accesskey "P">
-<!ENTITY freezeTabMenu.label "Izoztu fitxa">
-<!ENTITY freezeTabMenu.accesskey "F">
-<!ENTITY protectTabMenu.label "Babestu fitxa">
-<!ENTITY protectTabMenu.tooltip "Babestu fitxak itxi ez daitezen">
-<!ENTITY protectTabMenu.accesskey "B">
-<!ENTITY lockTabMenu.label "Lotu Fitxa">
-<!ENTITY lockTabMenu.tooltip "Lotura oro fitxa berri batean ireki">
-<!ENTITY lockTabMenu.accesskey "L">
-<!ENTITY bookmarktabs.label "Egin fitxa guztien laster-markak">
-<!ENTITY linkhere.label "Ireki lotura fitxa honetan">
-<!ENTITY linkhere.accesskey "h">
-<!ENTITY linkBackgroundTab.label "Ireki lotura atzeko planoan">
-<!ENTITY linkForegroundTab.label "Ireki lotura aurreko planoan">
-<!ENTITY linkBackgroundTab.accesskey "a">
-<!ENTITY linkForegroundTab.accesskey "u">
-<!ENTITY openalllinks.label "Ireki loturak fitxa berri batzuetan">
-<!ENTITY openalllinks.accesskey "x">
-<!ENTITY linkwithhistory.label "Ireki lotura bikoiztutako fitxa batean">
-<!ENTITY linkwithhistory.accesskey "z">
-<!ENTITY tabsList.label "Fitxa irekien zerrenda">
-<!ENTITY tabsList.accesskey "i">
-<!ENTITY allowImage.label "Irudia">
-<!ENTITY allowJavascript.label "JavaScript">
-<!ENTITY allowRedirect.label "Redirect">
-<!ENTITY allowPlugin.label "Plug-in">
-<!ENTITY allowFrame.label "Frame">
-<!ENTITY restoreincurrent.label "Birkargatu fitxa honetan">
-<!ENTITY restoreincurrent.accesskey "h">
-<!ENTITY restoreinwin.label "Birkargatu leiho berri batean">
-<!ENTITY restoreinwin.accesskey "b">
-<!ENTITY restoreintab.label "Birkargatu fitxa berri batean">
-<!ENTITY restoreintab.accesskey "f">
-<!ENTITY restoretab.label "Berreskuratu fitxa">
-<!ENTITY restoretab.accesskey "R">
-<!ENTITY bookmark.label "Egin lotura honen laster-marka">
-<!ENTITY bookmark.accesskey "l">
-<!ENTITY deletelist.label "Kendu zerrendatik">
-<!ENTITY deletelist.accesskey "k">
-<!ENTITY settings.label "Hobespenak">
-<!ENTITY saveWindow.label "Gorde leiho hau">
-<!ENTITY saveAllWindows.label "Gorde leiho guztiak">
-<!ENTITY sm.context.overwrite "Berreskuratu, Gainidatzi dagoen leiho(ak)">
-<!ENTITY sm.context.overwrite.key "G">
-<!ENTITY sm.context.restore.new "Berreskuratu leiho berri batzuetan">
-<!ENTITY sm.context.restore.newkey "b">
-<!ENTITY sm.context.replacethis "Replace, With This Window">
-<!ENTITY sm.context.replacethis.key "T">
-<!ENTITY sm.context.replaceall "Replace, With All Windows">
-<!ENTITY sm.context.replaceall.key "A">
-<!ENTITY sm.context.add "Gehitu leiho hau">
-<!ENTITY sm.context.add.key "h">
-<!ENTITY sm.context.addall "Gehitu leiho guztiak">
-<!ENTITY sm.context.addall.key "z">
-<!ENTITY sm.context.save "Gorde">
-<!ENTITY sm.context.save.key "G">
-<!ENTITY sm.context.rename "Aldatu izena">
-<!ENTITY sm.context.rename.key "d">
-<!ENTITY sm.context.delete "Ezabatu">
-<!ENTITY sm.context.delete.key "E">
-<!ENTITY sm.context.deleteall "Ezabatu dena">
-<!ENTITY sm.context.deleteall.key "n">
-<!ENTITY sm.context.startup "Set as Startup Session">
-<!ENTITY sm.context.startup.key "P">
-<!ENTITY sm.context.details "Show Counters, Date and Time in Session Menu">
-<!ENTITY sm.context.details.key "C">
-<!ENTITY tab.key "T">
-<!ENTITY window.key "N">
-<!ENTITY merge.key "M">
-<!ENTITY sortedTabs.label "Sorted Tabs">
-<!ENTITY sortedTabs.tooltip "Check to show the list sorted alphabetically">
-<!ENTITY enable.label "Enable">
-<!ENTITY custom.label "Custom">
-<!ENTITY enableTabs.label "Enable All Tabs">
-<!ENTITY disableTabs.label "Disable All Tabs">
-<!ENTITY seconds.label "seconds">
-<!ENTITY minutes.label "minutes">
-<!ENTITY minute.label "minute">
-<!ENTITY hideTabBar.label "Hide the tab bar">
-<!ENTITY hideTabBar.never.label "Never">
-<!ENTITY hideTabBar.never.key "N">
-<!ENTITY hideTabBar.onOneTab.label "When I have only one tab">
-<!ENTITY hideTabBar.onOneTab.key "E">
-<!ENTITY hideTabBar.always.label "Always">
-<!ENTITY hideTabBar.always.key "A">
diff --git a/chrome/locale/eu/tabmix.properties b/chrome/locale/eu/tabmix.properties
deleted file mode 100644
index a1db12b..0000000
--- a/chrome/locale/eu/tabmix.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-extensions.{dc572301-7619-498c-a57d-39143191b318}.description= Tab browsing with an added boost.
-tmp.merge.warning.title= Closing window with non-merged tabs
-tmp.merge.warning.message= The selected tabs will be merged with another window, but the other tabs will now be closed with the current window.
-tmp.merge.warning.checkboxLabel= Always warn me when closing a window with tabs that aren\'t merging.
-tmp.merge.error= At least 2 windows have to be opened before you can merge them
-tmp.merge.private= You can not merge private window with non-private window.
-tmp.importPref.error1= Can not import because it is not a valid file.
-tmp.importPref.error2= Failed to import settings.
-tmp.sessionempty= Next time you start the browser, \'Last Session\' will be empty.
-droptoclose.label= Drop a tab to close it
-droplink.label=Drop at the center to replace the tab or at the sides to create a new tab
-flstOn.label= Tabs Focus to Last Selected - Press F9 to swap preference
-flstOff.label= Tabs Focus to Right - Press F9 to swap preference
-slideshowOn.label= Tab Rotation is On - Press F8 to turn off
-slideshowOff.label= Tab Rotation Off - Press F8 to turn on
-undoclosetab.clear.label= Clear Closed Tabs List
-undoclosetab.clear.accesskey= C
-undoClosedWindows.clear.label= Clear Closed Windows List
-undoClosedWindows.clear.accesskey= C
-protectedtabs.closeWarning.1=You are about to close %S protected tab. Are you sure you want to continue?
-protectedtabs.closeWarning.2=You are about to close %S protected tabs. Are you sure you want to continue?
-protectedtabs.closeWarning.3=You are about to close %S tabs, %S of them protected. Are you sure you want to continue?
-protectedtabs.closeWarning.4=Warn me when I attempt to close window with protected tabs
-window.closeWarning.1=Warn me when I attempt to close window with multiple tabs
-closeWindow.label=Close window
-confirm_autoreloadPostData_title=Warning!
-confirm_autoreloadPostData=The page on which you tried to enable Auto Reload contains POSTDATA.\nIf you enable Auto Reload, any action the form carries out (such as an online purchase) will be repeated.\n\nAre you sure that you want to enable Auto Reload?
-incompatible.title= Tab Mix Plus
-incompatible.msg0= The following extensions are integrated or incompatible with Tab Mix Plus.
-incompatible.msg1= Would you like to disable these extensions?
-incompatible.msg2= The incompatible extensions will be disabled after you restart your browser.
-incompatible.button0.label= Disable
-incompatible.button0.accesskey= D
-incompatible.button1.label= Don\'t Disable
-incompatible.button1.accesskey= O
-incompatible.button2.label= Disable and Restart
-incompatible.button2.accesskey= E
-incompatible.chkbox.label= Show this alert when browser starts
-tabmixoption.error.title= Tab Mix Plus Error
-tabmixoption.error.msg= You must have one browser window to use Tab Mix Plus Options
diff --git a/chrome/locale/fi/misc.dtd b/chrome/locale/fi/misc.dtd
deleted file mode 100644
index b9d909a..0000000
--- a/chrome/locale/fi/misc.dtd
+++ /dev/null
@@ -1,17 +0,0 @@
-<!ENTITY searchTabFocus.label "Lataa taustalla">
-<!ENTITY searchTabFocus.accesskey "B">
-<!ENTITY renametab.panel.title "Muokkaa välilehden nimeä">
-<!ENTITY renametab.reset.label "Palauta oletusnimi">
-<!ENTITY title.label "Nimike">
-<!ENTITY default.label "Oletus">
-<!ENTITY renametab.permanently.label "Muuta tämän välilehden nimi sen osoitteesta huolimatta">
-<!ENTITY renametab.permanently.tooltip "Välilehti historian kera - uusi nimi säilyy kun osoite muuttuu">
-<!ENTITY forum.label "Foorumi">
-<!ENTITY faq.label "UKK">
-<!ENTITY help.label "Apua">
-<!ENTITY tabmix.label "Tab Mix Plus">
-<!ENTITY reloadtime.label1 "Valitse aika listalta tai määritä itse">
-<!ENTITY specifyreload.label "Määritä uudelleenlatauksen aikaväli">
-<!ENTITY sanitizer.entry "Tallenneteut Tab Mix Plus -istunnot">
-<!ENTITY sanitizer.entry.accesskey "T">
-<!ENTITY sanitizer.entry.confirm "Oletko varma että haluat poistaa KAIKKI tallennetut tiedot mukaanlukien varmuuskopiot?">
diff --git a/chrome/locale/fi/pref-appearance.dtd b/chrome/locale/fi/pref-appearance.dtd
deleted file mode 100644
index 6eb5442..0000000
--- a/chrome/locale/fi/pref-appearance.dtd
+++ /dev/null
@@ -1,18 +0,0 @@
-<!ENTITY styles.label "Mukauta tyylejä">
-<!ENTITY currentTab.label "Nykyinen välilehti">
-<!ENTITY unloadedTabs.label "Suljetut välilehdet">
-<!ENTITY unreadTab.label "Lukemamattoman välilehdet">
-<!ENTITY hideRGB.label "Hide RGB">
-<!ENTITY showRGB.label "Show RGB">
-<!ENTITY unreadAfterReload.label "set tab as unread after reload">
-<!ENTITY squaredTabs.label "Apply background color for squared tabs">
-<!ENTITY otherTabs.label "Muut välilehdet">
-<!ENTITY italic.label "Kursiivi">
-<!ENTITY bold.label "Lihavoitu">
-<!ENTITY underline.label "Alleviivattu">
-<!ENTITY textcolor.label "Tekstin väri">
-<!ENTITY bgColor.label "Taustan väri">
-<!ENTITY bgTopColor.label "top">
-<!ENTITY bgBottomColor.label "bottom">
-<!ENTITY useThis.label "Käytä tätä tyyliä">
-<!ENTITY opacity.label "Läpikuultavuus">
diff --git a/chrome/locale/fi/pref-filetype.dtd b/chrome/locale/fi/pref-filetype.dtd
deleted file mode 100644
index fcdd20e..0000000
--- a/chrome/locale/fi/pref-filetype.dtd
+++ /dev/null
@@ -1,5 +0,0 @@
-<!ENTITY filetype.options "Tiedostotyyppien muokkaus">
-<!ENTITY filetype.add "Lisää">
-<!ENTITY filetype.edit "Muokkaa">
-<!ENTITY filetype.delete "Poista">
-<!ENTITY filetype.new "Uusi tiedostotyyppi:">
diff --git a/chrome/locale/fi/pref-tabmix.dtd b/chrome/locale/fi/pref-tabmix.dtd
deleted file mode 100644
index fe461c1..0000000
--- a/chrome/locale/fi/pref-tabmix.dtd
+++ /dev/null
@@ -1,308 +0,0 @@
-<!ENTITY tab.links "Linkit">
-<!ENTITY tab.events "Tapahtumat">
-<!ENTITY tab.mouse "Hiiri">
-<!ENTITY tab.appearance "Näyttö">
-<!ENTITY tab.menu "Valikko">
-<!ENTITY tab.session "Istunto">
-<!ENTITY tab.incompatible "Error">
-<!ENTITY apply.label "Käytä">
-<!ENTITY settings.export "Vie asetukset">
-<!ENTITY settings.import "Tuo asetukset">
-<!ENTITY settings.sync "Sync Preferences">
-<!ENTITY settings.default "Palauta oletusasetukset">
-<!ENTITY generalWindowOpen.label "Avaa uusissa ikkunoissa avautuvat linkit:">
-<!ENTITY externalLink.useSeparate.label "Use separate preference for links from other applications">
-<!ENTITY externalLinkTarget.label "Avaa muista ohjelmista avatut linkit:">
-<!ENTITY linkTarget.tab "Uudella välilehdellä">
-<!ENTITY linkTarget.window "Uuteen ikkunaan">
-<!ENTITY linkTarget.current "Nykyiseen välilehteen">
-<!ENTITY linkTarget.accesskey "C">
-<!ENTITY divertedWindowOpen.label "JavaScript-ponnahdusikkunat:">
-<!ENTITY divertedWindowOpen.all "Avaan kaikki ponnahdusikkunat välilehtiin">
-<!ENTITY divertedWindowOpen.some "Salli kiinteäkokoiset ponnahdusikkunat">
-<!ENTITY divertedWindowOpen.none "Salli kaikki ponnahdusikkunat">
-<!ENTITY linkTarget.label "Avaa linkit, joissa on target-attribuutti, nykyiseen välilehteen">
-<!ENTITY download.label "Estä tyhjät välilehdet tiedostoja ladattaessa">
-<!ENTITY edit.label "Muokkaa">
-<!ENTITY speLink.label "Pakota avaus uuteen välilehteen:">
-<!ENTITY speLink.none "Ei käytössä">
-<!ENTITY speLink.allLinks "All links">
-<!ENTITY speLink.external "Linkit muille sivustoille">
-<!ENTITY singleWindow.label "Ota käyttöön yhden ikkunan tila">
-<!ENTITY newTabs.label "New Tabs">
-<!ENTITY tabOpen.label "Välilehtien avaus">
-<!ENTITY tabFocus.label "Välilehtien kohdistus">
-<!ENTITY tabClose.label "Välilehtien sulkeminen">
-<!ENTITY tabMerge.label "Välilehtien yhdistäminen">
-<!ENTITY tabFeature.label "Välilehtien ominaisuudet">
-<!ENTITY newtab.label "Lataa uusiin välilehtiin">
-<!ENTITY replaceLastTabWith.label "Suljettaessa viimeinen välilehti, korvaa se">
-<!ENTITY newtab.blank "tyhjällä sivulla">
-<!ENTITY newtab.home "kotisivulla">
-<!ENTITY newtab.current "Nykyisellä sivulla">
-<!ENTITY newtab.duplicate "Duplicate Page">
-<!ENTITY newtab.location.1 "Uusi välilehtisivu">
-<!ENTITY newtab.placeholder.label "Default New Tab Page">
-<!ENTITY location.label.1 "Osoite">
-<!ENTITY focusContent.label "Focus content when loading non blank page">
-<!ENTITY openTabNext.label "Open new tabs next to current one">
-<!ENTITY openOtherTabNext.label "Open other tabs next to current one">
-<!ENTITY relatedAfterCurrent.label "Only if related to current tab">
-<!ENTITY openTabNext.tooltip1 "[a][b][c][1][2][3] -> [a][1][2][3][b][c]">
-<!ENTITY openDuplicateNext.label "Open duplicated tabs next to original">
-<!ENTITY openTabNext.tooltip "[a][b][c][1][2][3] -> [a][3][2][1][b][c]">
-<!ENTITY openTabNextInverse.label "Change opening order">
-<!ENTITY openTabNextInverse.tooltip "[a][3][2][1][b][c] -> [a][1][2][3][b][c]">
-<!ENTITY openTabNextInverse.tooltip1 "Open new tab next to the tab last opened from the current tab (since it was last selected)">
-<!ENTITY lockTabs.label "Lock tabs">
-<!ENTITY lockNewTabs.label "Lock New tabs">
-<!ENTITY lockAppTabs.label "Lock App tabs">
-<!ENTITY updateLockState.label "Apply changes to open tabs">
-<!ENTITY openNewTab.label "Open tabs from:">
-<!ENTITY openBookmarks.label "Bookmarks">
-<!ENTITY openBMKGroups.label "Groups of bookmarks">
-<!ENTITY openBMKGroups.tooltip "Don't override tabs when opening a group of bookmarks">
-<!ENTITY openHistory.label "History">
-<!ENTITY openUrl.label "Address bar">
-<!ENTITY openSearch.label "Search bar">
-<!ENTITY middlecurrent1.label "Middle-click or Control-click opens items in current tab">
-<!ENTITY middlecurrent.tooltip "Only for bookmarks, history, links forced to open in new tab">
-<!ENTITY tabFocus.caption "Focus/Select tabs that open from:">
-<!ENTITY selectTab.label "Links">
-<!ENTITY selectDivertedTab.label "Diverted windows">
-<!ENTITY selectTabFromExternal.label "Other applications">
-<!ENTITY selectTabCommand.label "New tab commands">
-<!ENTITY contextMenuSearch.label "Ponnahdusvalikkohaku:">
-<!ENTITY selectTabBH.label "Bookmarks/History">
-<!ENTITY duplicateTab.label "Duplicate Tab">
-<!ENTITY inversefocus1.label "Inverse Middle-click or Control-click focus of:">
-<!ENTITY warning.caption.label "Warning">
-<!ENTITY warnOnCloseProtected.label "Warn me when closing window with protected tabs">
-<!ENTITY warnOnCloseWindow.label "Warn me when closing window with multiple tabs">
-<!ENTITY lasttab.caption.label "Closing last tab">
-<!ENTITY keepWindow.label.3.1 "Do not close window when closing last tab">
-<!ENTITY keeptab.label "Prevent last tab from closing">
-<!ENTITY closeOnMerge.label "Close windows once they have merged">
-<!ENTITY warnOnMerge.label "Warn when closing tabs that aren't being merged">
-<!ENTITY currenttab.caption.label "Closing current tab">
-<!ENTITY focusTab.labelBegin "When closing current tab, focus:">
-<!ENTITY focusTab.firstTab "First tab">
-<!ENTITY focusTab.leftTab "Left tab">
-<!ENTITY focusTab.rightTab "Right tab">
-<!ENTITY focusTab.lastTab "Last tab">
-<!ENTITY focusTab.lastSelectedTab "Last selected tab">
-<!ENTITY focusTab.openerTab "Opener/right tab">
-<!ENTITY focusTab.openerTab.rtl "Opener/left tab">
-<!ENTITY focusTab.lastOpenedTab "Last opened tab">
-<!ENTITY undoClose.label "Enable undo close tabs">
-<!ENTITY undoCloseCache.label "Max number of closed tabs to remember:">
-<!ENTITY undoClosepos.label "Restore the tab's original position">
-<!ENTITY menuonlybutton.label "Make the toolbar button display only a list">
-<!ENTITY ctrltab.label "Ctrl-Tab navigates tabs in the most recently used order">
-<!ENTITY cmdtab.label "Cmd-Tab navigates tabs in the most recently used order">
-<!ENTITY ctrltab.tabPreviews "Show tab previews">
-<!ENTITY ctrltab.popup "Ctrl-Tab displays a tab list popup menu">
-<!ENTITY cmdtab.popup "Cmd-Tab displays a tab list popup menu">
-<!ENTITY tabpopup.mouse "Tab list responds to the mouse">
-<!ENTITY mergeNoTabSelection.label "Merge windows when no tabs are selected">
-<!ENTITY mergeTabSelection.label "Merging after selecting tabs">
-<!ENTITY mergeall.label "Merge all windows into one">
-<!ENTITY mergelastfocused.label "Merge only current window with last focused">
-<!ENTITY mergePopups.label "Also take popup windows">
-<!ENTITY popupNextToOpener.label "Place popups next to their openers">
-<!ENTITY activateSlideshow.label "Pressing #1 rotates tabs every">
-<!ENTITY toggleAnimation.label "Disable Open/Close tab animation">
-<!ENTITY reloadEvery.matchAddress.label "Lataa välilehti uudelleen riippumatta sen osoitteesta">
-<!ENTITY reloadEvery.onReloadButton.label "Show Reload Every menu on Reload button">
-<!ENTITY seconds.label "seconds">
-<!ENTITY minutes.label "min">
-<!ENTITY tabBarAppearance.label "Tab Bar">
-<!ENTITY tabAppearance.label "Tab">
-<!ENTITY toolBarAppearance.label "ToolBar">
-<!ENTITY show.ontabbar.label "Show on Tab bar">
-<!ENTITY show.ontab.label "Show on Tab">
-<!ENTITY dragNewTabButton.tooltip "Drag 'New Tab' button to your tab-bar to enable this option.">
-<!ENTITY hideTabBarButton.label "Close tab button">
-<!ENTITY newTabButton.label "New tab button">
-<!ENTITY newTabButton.posiotion.left.label "on Left side">
-<!ENTITY newTabButton.posiotion.right.label "on Right side">
-<!ENTITY newTabButton.posiotion.afterlast.label "After last tab">
-<!ENTITY allTabsButton.label "All tabs button">
-<!ENTITY tabBarSpace.label "Extra spaces on both sides">
-<!ENTITY tabBarSpace.tooltip "For clicking and dropping something on tab bar">
-<!ENTITY tabbar.label "Hide tab bar when only one tab is open">
-<!ENTITY moveTabOnDragging.label "When dragging a tab move it directly">
-<!ENTITY dropIndicator.label "Drop indicator">
-<!ENTITY dropIndicator-native.label "Native style">
-<!ENTITY dropIndicator-builtin.label "Built-in style">
-<!ENTITY verticalTabbar.description "Use treeStyleTab or VerticalTab extension to control these preferences.">
-<!ENTITY tabBarPosition.label "Position:">
-<!ENTITY tabBarPosition.top.label "Top (above content)">
-<!ENTITY tabBarPosition.bottom.label "Bottom (below content)">
-<!ENTITY tabScroll.label "When tabs don't fit width:">
-<!ENTITY tabScroll.none "Scrollable without buttons">
-<!ENTITY tabScroll.leftRightButtons "Scrollable with buttons on left and right sides">
-<!ENTITY tabScroll.rightButtons "Scrollable with buttons on right side">
-<!ENTITY tabScroll.rightButtons.rtl "Scrollable with buttons on left side">
-<!ENTITY tabScroll.multibar "Multi-row">
-<!ENTITY maxrow.label "Max number of rows to display:">
-<!ENTITY offsetAmountToScroll.label "Vieritettäessä näytä osa seuraavasta piiloon jäävästä välilehdestä">
-<!ENTITY smoothScroll.label "Käytä pehmeää vieritystä">
-<!ENTITY scrolldelay.label "Scroll Delay (time between scroll repetition)">
-<!ENTITY highlight.label "Highlight">
-<!ENTITY currenttab.style.label "Current tab">
-<!ENTITY unloadedtabs.style.label "Suljetut välilehdet">
-<!ENTITY unreadtabs.style.label "Unread tabs">
-<!ENTITY othertabs.style.label "Other Tabs">
-<!ENTITY setstyles.label "Customize Styles">
-<!ENTITY extraIcons.label1 "Icons for">
-<!ENTITY extraIcons.locked "Locked">
-<!ENTITY extraIcons.protected "Protected">
-<!ENTITY extraIcons.autoreload "Auto-Reload">
-<!ENTITY extraIcons.hideonpinned "Hide on pinned tabs">
-<!ENTITY progressMeter.label "Progress meter on tabs">
-<!ENTITY showTabX.labelBegin "Close tab button">
-<!ENTITY showTabX.left "Place on left side">
-<!ENTITY showTabX.rtl "Place on right side">
-<!ENTITY milliseconds.label "msec">
-<!-- LOCALIZATION NOTE          change this only if you need to change the width -->
-<!ENTITY showTabX.popup.width "13em">
-<!ENTITY showTabX.always "on all">
-<!ENTITY showTabX.current "on current">
-<!ENTITY showTabX.hover "on pointed for">
-<!ENTITY showTabX.alwaysExeption "on all tabs wider than">
-<!ENTITY showTabX.currentHover "on current & pointed for">
-<!ENTITY minWidth.label "Tab Width:">
-<!ENTITY widthTo.label "to">
-<!ENTITY widthPixels.label "pixels">
-<!ENTITY flexTabs.label "Tab width fits to tab title">
-<!ENTITY bookastitle.label "Use bookmark name as tab title">
-<!-- LOCALIZATION NOTE:          change this only if you need to change the width -->
-<!ENTITY toolbar.description.width "21em">
-<!ENTITY toolbar.description "You can customize which Tab Mix Plus buttons to show in your Toolbar">
-<!ENTITY toolbar.button.label "Customize">
-<!ENTITY toolbar.visible.caption "Visible buttons">
-<!ENTITY toolbar.novisible.label "There are no visible buttons">
-<!ENTITY toolbar.hidden.caption "Hidden buttons">
-<!ENTITY toolbar.nohidden.label "There are no hidden buttons">
-<!ENTITY mouseGesture.label "Mouse Gestures">
-<!ENTITY mouseClick.label "Mouse Clicking">
-<!ENTITY mouseHoverSelect.labelBegin "Select tab pointed for">
-<!ENTITY tabFlip.label "Switch to last selected tab when clicking current one">
-<!ENTITY tabFlip.delay "Use a delay of">
-<!ENTITY clickFocus.label "Mouse click (down and release) to select a tab">
-<!ENTITY removeEntries.label "Remove Tab Mix Plus menu list entries using middle-click">
-<!ENTITY lockTabSizingOnClose.label "Suljettaessa välilehteä, säilytä muiden välilehtien koko kunnes kursori poistuu työkalupalkin alueelta">
-<!ENTITY removeEntries.tooltip "Includes closed tabs, closed windows, and saved sessions">
-<!ENTITY tabbarscrolling.caption "Vieritettäessä välilehtipalkin päällä">
-<!ENTITY tabbarscrolling.holdShift.label "Pidä Shift pohjassa vieritettäessä vaihtaaksesi näiden valintojen välillä">
-<!ENTITY tabbarscrolling.selectTab.label "Vaihda valittu välilehti">
-<!ENTITY tabbarscrolling.scrollAllTabs.label "Vieritä kaikki välilehdet">
-<!ENTITY tabbarscrolling.inverse.label "Käännä vierityksen suunta">
-<!ENTITY double.label "Double-click">
-<!ENTITY middle.label "Middle-click">
-<!ENTITY ctrl.label "Ctrl-click">
-<!ENTITY cmd.label "Cmd-Click">
-<!ENTITY shift.label "Shift-click">
-<!ENTITY alt.label "Alt-Click">
-<!ENTITY ontab.label "on a tab:">
-<!ENTITY ontabbar.label "on the tabbar:">
-<!ENTITY clicktab.label "Choose command to perform when clicking on tab or tabbar">
-<!ENTITY ontabbar.dblClick.label "Prevent double click on Tab-bar from changing window size.">
-<!ENTITY ontabbar.click.label "Prevent clicking on Tab-bar from dragging the window.">
-<!ENTITY clicktab.default "Firefox default or other extension">
-<!ENTITY clicktab.nothing "Does nothing">
-<!ENTITY clicktab.addtab "Open a new tab">
-<!ENTITY clicktab.duplicatetab "Duplicates the tab">
-<!ENTITY clicktab.duplicatetabw "Duplicates the tab in a new window">
-<!ENTITY clicktab.detachtab "Move the tab to a new window">
-<!ENTITY clicktab.protecttab "Protects the tab">
-<!ENTITY clicktab.locktab "Locks the tab">
-<!ENTITY clicktab.freezetab "Protects and Locks the tab">
-<!ENTITY clicktab.renametab "Renames the tab">
-<!ENTITY clicktab.copyTabUrl "Copies the tab's URL to the clipboard">
-<!ENTITY clicktab.copyUrlFromClipboard "Load URL from clipboard">
-<!ENTITY clicktab.selectMerge "Selects the tab for merging">
-<!ENTITY clicktab.mergeTabs "Merges windows together">
-<!ENTITY clicktab.bookTab "Bookmarks the tab">
-<!ENTITY clicktab.bookTabs "Bookmarks all tabs">
-<!ENTITY clicktab.reloadtab "Reloads the tab">
-<!ENTITY clicktab.reloadtabs "Reloads all tabs">
-<!ENTITY clicktab.reloadothertabs "Reloads other tabs">
-<!ENTITY clicktab.reloadlefttabs "Reloads left tabs">
-<!ENTITY clicktab.reloadrighttabs "Reloads right tabs">
-<!ENTITY clicktab.autoReloadTab "Activate/Deactivate tab auto reload">
-<!ENTITY clicktab.removeall "Close all tabs">
-<!ENTITY clicktab.removeother "Close other tabs">
-<!ENTITY clicktab.removesimilar "Close tabs from similar domain">
-<!ENTITY clicktab.removetoLeft "Close Tabs to the Left">
-<!ENTITY clicktab.removetoRight "Close Tabs to the Right">
-<!ENTITY clicktab.uctab "Reopens last closed tab">
-<!ENTITY clicktab.ucatab "Reopens all closed tabs">
-<!ENTITY clicktab.snapback "SnapBack Tab">
-<!ENTITY clicktab.ietab "Opens the tab in IE">
-<!ENTITY contentLoad "Middle-click loads url from clipboard">
-<!ENTITY context.tab "Tab Context Menu">
-<!ENTITY context.main "Main Context Menu">
-<!ENTITY context.tools "Tools Menu">
-<!ENTITY showtabBarContext.label "Show in Tab Context Menu">
-<!ENTITY showContentAreaContext.label "Show in Main Context Menu">
-<!ENTITY showToolsMenu.label "Show in Tools Menu">
-<!ENTITY startupHomePage.label "Show my home page">
-<!ENTITY startupBlankPage.label "Show a blank page">
-<!ENTITY startupLastSession.label "Show my windows and tabs from last time">
-<!ENTITY sm.extension.description1 "Tab Mix Plus detect that Session Manager Extension is installed">
-<!ENTITY sm.extension.description2 "Tab Mix Plus session manager will be disabled">
-<!ENTITY sm.extension.description3 "You can click the button on the right to open Session Manager Options dialog">
-<!ENTITY sm.extension.description4 "Convert My sessions data from Tab Mix Plus format to Session Manager extension format">
-<!ENTITY sm.extension.convert.label "Convert">
-<!ENTITY sm.extension.chooseFile.label0 "Let me choose which data file to convert">
-<!ENTITY sm.extension.chooseFile.label1 "Convert Tab Mix Plus sessions from the current profile">
-<!ENTITY ss.enable.label "Use Firefox's built-in Session Restore feature">
-<!ENTITY ss.enable.tooltip "Uncheck to allow the use with Tab Mix Plus Session Manager">
-<!ENTITY ss.advanced_setting "Advanced Setting">
-<!ENTITY ss.advanced_setting.warning "Don't change these, unless you know what you're doing">
-<!ENTITY ss.interval "Minimum time interval between two state saves">
-<!ENTITY ss.interval.seconds "(in milliseconds)">
-<!ENTITY ss.privacy_level "Save sensitive data (form data, POSTDATA and cookies) for">
-<!ENTITY ss.privacy_level.allsites "All sites">
-<!ENTITY ss.privacy_level.unencrypted "Unencrypted sites only">
-<!ENTITY ss.privacy_level.nosites "No sites at all">
-<!ENTITY ss.postdata.label1 "Maximum amount of POSTDATA to be stored">
-<!ENTITY ss.postdata.label2 "(in bytes, -1 = all of it)">
-<!ENTITY sessionManger.enable "Enable Session Manager">
-<!ENTITY crashRecovery.enable "Enable Crash Recovery">
-<!ENTITY sm.StartExit "Start/Exit">
-<!ENTITY sm.restore "Restore">
-<!ENTITY sm.preserve "Preserve">
-<!ENTITY sm.start "When Browser Starts:">
-<!ENTITY sm.start.restore "Restore">
-<!ENTITY sm.start.ask "Ask Before Restoring">
-<!ENTITY sm.start.nothing "Don't Restore">
-<!ENTITY sm.exit "When Browser Exits:">
-<!ENTITY sm.exit.save "Save Session">
-<!ENTITY sm.exit.ask "Ask Before Saving">
-<!ENTITY sm.exit.nothing "Don't Save">
-<!ENTITY sm.startup "Startup Session:">
-<!ENTITY sm.lastsession "Last Session">
-<!ENTITY sm.previouslast "Previous to Last">
-<!ENTITY sm.chooseifempty "Choose another if empty">
-<!ENTITY sm.restore.options "When Restoring Sessions:">
-<!ENTITY sm.restore.overwrite "Overwrite existing windows">
-<!ENTITY sm.restore.overwriteTabs "And tabs">
-<!ENTITY sm.restore.closedWinList "Save windows in closed windows list">
-<!ENTITY sm.restore.merge "Join multiple windows into one">
-<!ENTITY sm.restore.bypassCache "Bypass cache when restoring">
-<!ENTITY sm.notrestore.label "When not restoring on start">
-<!ENTITY sm.restorePinned.label "Restore my pinned tabs from last time">
-<!ENTITY sm.preserve.options "Preserve Tabs:">
-<!ENTITY sm.preserve.history "History">
-<!ENTITY sm.preserve.protect "Protect Status">
-<!ENTITY sm.preserve.locked "Lock Status">
-<!ENTITY sm.preserve.permission "Permissions">
-<!ENTITY sm.preserve.scroll1 "Scroll Position">
-<!ENTITY sm.restore.winOptions "Preserve Windows:">
-<!ENTITY sm.restore.selectedTab "Selected tab">
-<!ENTITY sm.restore.closedTabs "Closed tabs list">
-<!ENTITY incompatible.extensions "Some of your extensions are incompatible with Tab Mix Plus, it is recommended that you will disable or uninstall those extensions.">
-<!ENTITY incompatible.button.label "Show List">
diff --git a/chrome/locale/fi/session-manager.properties b/chrome/locale/fi/session-manager.properties
deleted file mode 100644
index 5f825c6..0000000
--- a/chrome/locale/fi/session-manager.properties
+++ /dev/null
@@ -1,107 +0,0 @@
-sm.saveClosedTab.chkbox.label=Save closed tabs list with this session
-sm.button.continue.label=Continue
-sm.button.continue.accesskey=C
-sm.askBeforSave.title=Session Manager - Save Session
-sm.askBeforSave.msg0=Would you like to save your session?
-sm.askBeforSave.msg2=Only non-private windows will be save to disk
-sm.askBeforSave.msg1=If you don\'t save, next time you start the browser the \'Last Session\' will be empty.
-sm.askBeforSave.button0.label=Save Session
-sm.askBeforSave.button0.accesskey=S
-sm.askBeforSave.button1.label=Don\'t Save
-sm.askBeforSave.button1.accesskey=D
-sm.corrupted.title=Session Manager - Corrupted Database
-sm.corrupted.msg0=Session Manager cannot load its database from corrupted session.rdf.
-sm.corrupted.msg1=The file session.rdf will be deleted, a copy can be found in session.old in your profile. sessions backups are in <profile>/sessionbackups
-sm.areYouSure.msg=Are you sure you want to continue?
-sm.canChooseStartup.msg=You can choose a session to be your new startup session from the list:
-sm.addtoStartup.title=Session Manager - Add to Startup Session
-sm.addtoStartup.msg.windows=You are about to add window(s) to your startup session:
-sm.addtoStartup.msg.tabs=You are about to add tab(s) to your startup session:
-sm.addtoStartup.button0.label=Add to Session
-sm.addtoStartup.button0.accesskey=A
-sm.addtoStartup.button1.label=Don\'t Add
-sm.addtoStartup.button1.accesskey=D
-sm.replaceStartup.title=Session Manager - Override Startup Session
-sm.replaceStartup.msg=You are about to replace your startup session:
-sm.replaceStartup.button0.label=Replace Session
-sm.replaceStartup.button0.accesskey=R
-sm.replaceStartup.button1.label=Don\'t Replace
-sm.replaceStartup.button1.accesskey=D
-sm.removeStartup.title=Session Manager - Delete Startup Session
-sm.removeStartup.msg0=You are about to delete your startup session:
-sm.removeStartup.msg1=Choose a session to be your new startup session from the list:
-sm.removeStartup.button0.label=Delete
-sm.removeStartup.button0.accesskey=D
-sm.removeStartup.button1.label=Don\'t Delete
-sm.removeStartup.button1.accesskey=T
-sm.title=Session Manager
-sm.dontSaveBlank.msg=Session Manager doesn\'t save blank windows
-sm.sessoinSave.error=Error in Session Manager, session didn\'t save
-sm.sessionName.title.rename=Session Manager - Rename Session
-sm.sessionName.title.saveprevious=Session Manager - Save Session
-sm.sessionName.title.savethiswindow=Session Manager - Save This Window
-sm.sessionName.title.saveallwindows=Session Manager - Save All Windows
-sm.sessionName.msg0=Enter Session Name:
-sm.sessionName.msg1=Name must be at least one letter or number.
-sm.sessionName.msg2=This name is already in use!
-sm.sessionName.msg3=Are you sure you want to replace the session?
-sm.sessionName.button0.label=Rename Session
-sm.sessionName.button0.accesskey=R
-sm.sessionName.button1.label=Don\'t Rename
-sm.sessionName.button1.accesskey=D
-sm.session.empty=empty
-sm.session.tabs=T
-sm.session.windows=W
-sm.removeAll.title.session=Session Manager - Delete All Saved Sessions
-sm.removeAll.title.closedwindow=Session Manager - Delete All Closed Windows
-sm.removeAll.msg0=Are you sure you want to delete all your saved sessions?
-sm.removeAll.msg1=If you choose \'Delete\' your startup session will be the \'Last Session\'.
-sm.removeAll.msg2=Are you sure you want to delete all your closed windows?
-sm.sessionMenu.last=Last Session
-sm.sessionMenu.lastDefault=Last Session - Default
-sm.sessionMenu.lastgood=Last Good Session
-sm.sessionMenu.previous=Previous to Last
-sm.sessionMenu.crashed=Crashed Session
-sm.afterCrash.title=Session Manager - Restore after Crash
-sm.afterCrash.chkbox.label=Enable Session Manager
-sm.afterCrash.msg0=Your last session Crashed!
-sm.afterCrash.msg0.again=Your last Crashed session Crashed again!
-sm.afterCrash.msg1=Choose session to restore from the list:
-sm.afterCrash.msg2=Choose how to continue
-sm.afterCrash.msg3=Session Manager is currently disabled, if you enable Session Manager, you will be able to restore crashed sessions, closed sessions, saved sessions and closed windows from the Session Manager menu.
-sm.afterCrash.msg4=You can also restore the crashed session later from the Session Manager menu.
-sm.afterCrash.msg5=but nothing was saved.
-sm.afterCrash.msg6=but there isn\'t any open window in your Crashed session
-sm.afterCrash.msg7=Choose window to restore from Closed Windows list
-sm.afterCrash.msg8=(you can also restore closed windows later from the Closed Windows menu)
-sm.afterCrash.msg9=Your Crashed session is empty!
-sm.afterCrash.msg10=Session Manager did not find any sessions to restore from.
-sm.afterCrash.button0.label=Restore Session
-sm.afterCrash.button0.accesskey=R
-sm.afterCrash.button0.crashed.label=Restore Crashed Session
-sm.afterCrash.button0.crashed.accesskey=R
-sm.afterCrash.button1.label=Don\'t Restore
-sm.afterCrash.button1.accesskey=D
-sm.start.title=Session Manager - Restore Session
-sm.start.chkbox.label=Enable Crash Recovery
-sm.start.msg0=Your Startup session is empty!
-sm.start.msg1=Crash Recovery is currently disabled, if you enable Crash Recovery, you will be able to restore crashed sessions.
-sm.start.msg2=Error while looking for your startup session, your saved startup session does not exist.
-sm.restoreError.msg0=Error in session manager file!
-sm.restoreError.msg1=Delete the session you tried to restore
-sm.disable.msg=Firefox has a built-in session restore feature.
-sm.disable.msg1=Would you like to enable built-in session restore and disable the Tab Mix Plus Session Manager?
-sm.disable.msg2=Would you like to enable Tab Mix Plus Session Manager and disable the built-in session restore?
-sm.extension.convert.msg1=Would you like to convert your sessions data from Tab Mix Plus format to Session Manager extension format?
-sm.extension.convert.msg2=You can do it later from Tab Mix Plus session options window.
-sm.extension.convert.nosessions=There is no session in this file.
-sm.extension.convert.alreadyconverted=This session file have already been converted to Session Manager extension format.
-sm.extension.convert.doitagain=Do you wish to convert them again?
-sm.extension.convert.unable=Unable to convert from session.rdf
-sm.extension.convert.many=sessions converted, would you like to delete any of them?
-sm.extension.convert.one=one session converted, would you like to delete it?
-sm.extension.convert.rename=You will be able to rename the session(s) later from Session Manager menu
-sm.extension.convert.selectfile=Select session.rdf file to convert
-sm.extension.convert.rdffiles=RDF Files
-sm.extension.convert.sessionfiles=Session Files
-sm.tabview.hiddengroups=More tabs restored into hidden groups.
diff --git a/chrome/locale/fi/tabmix.dtd b/chrome/locale/fi/tabmix.dtd
deleted file mode 100644
index 2498299..0000000
--- a/chrome/locale/fi/tabmix.dtd
+++ /dev/null
@@ -1,131 +0,0 @@
-<!ENTITY closedtabsbtn.label "Suljetut välilehdet">
-<!ENTITY closedtabsbtn.tooltip "Näytä lista suljetuista välilehdistä">
-<!ENTITY sessionbtn.tooltip "Katsele ja hallinnoi istuntojasi">
-<!ENTITY tabslistbtn.label "Avatut välilehdet">
-<!ENTITY tabslistbtn.tooltip "Näytä lista avatuista välilehdistä">
-<!ENTITY closedwindowsbtn.label "Suljetut ikkunat">
-<!ENTITY closedwindowsbtn.tooltip "Näytä lista suljetuista ikkunoista">
-<!ENTITY page.header.title "Tab Mix Plus - Asetukset">
-<!ENTITY options.main.sessionbutton.label "Tab Mix Plus Istuntojenhallinta">
-<!ENTITY session.Tools "Istuntojenhallinta">
-<!ENTITY closedWin.label "Lista suljetuista ikkunoista">
-<!ENTITY duplicateTabMenu.label "Monista välilehti">
-<!ENTITY duplicateTabMenu.accesskey "M">
-<!ENTITY duplicateinWin.label "Monista uuteen ikkunaan">
-<!ENTITY duplicateinWin.accesskey "I">
-<!ENTITY detachTab.label "Siirrä uuteen ikkunaan">
-<!ENTITY detachTab.accesskey "S">
-<!ENTITY mergeContext.label "Yhdistä ikkunat">
-<!ENTITY mergeContext.accesskey "Y">
-<!ENTITY renametab.label "Uudelleennimeä välilehti">
-<!ENTITY renametab.accesskey "N">
-<!ENTITY copytaburl.label "Kopioi välilehden URL-osoite">
-<!ENTITY copytaburl.accesskey "K">
-<!ENTITY reloadother.label "Päivitä muut välilehdet">
-<!ENTITY reloadother.accesskey "P">
-<!ENTITY reloadleft.label "Päivitä vasenmanpuoleiset välilehdet">
-<!ENTITY reloadleft.accesskey "V">
-<!ENTITY reloadright.label "Päivitä oikeanpuoleiset välilehdet">
-<!ENTITY reloadright.accesskey "O">
-<!ENTITY autoReloadTab.label "Välilehden päivitysväli">
-<!ENTITY autoReloadTab.accesskey "L">
-<!ENTITY autoReloadSite.label "Lataa tämä sivusto joka">
-<!ENTITY autoReloadSite.accesskey "E">
-<!ENTITY afterthis.label "Tämän välilehden jälkeen">
-<!ENTITY bookmarktab.label "Lisää tämä välilehti kirjanmerkkeihin">
-<!ENTITY undoCloseListMenu.label "Lista suljetuista välilehdistä">
-<!ENTITY undoCloseListMenu.accesskey "U">
-<!ENTITY closeAllTabsMenu.label "Sulje kaikki välilehdet">
-<!ENTITY closeall.accesskey "A">
-<!ENTITY closeSimilarTab.label "Sulje samankaltaiset ikkunat">
-<!ENTITY closeSimilarTab.accesskey "M">
-<!ENTITY closeTabsToLeft.label "Close Tabs to the Left">
-<!ENTITY closeleft.accesskey "V">
-<!ENTITY closeTabstoRight.label "Close Tabs to the Right">
-<!ENTITY closeright.accesskey "O">
-<!ENTITY docShellMenu.label "Oikeudet">
-<!ENTITY docShellMenu.accesskey "O">
-<!ENTITY freezeTabMenu.label "Jäädytä välilehti">
-<!ENTITY freezeTabMenu.accesskey "J">
-<!ENTITY protectTabMenu.label "Suojaa välilehti">
-<!ENTITY protectTabMenu.tooltip "Protect tabs from being closed">
-<!ENTITY protectTabMenu.accesskey "P">
-<!ENTITY lockTabMenu.label "Lock Tab">
-<!ENTITY lockTabMenu.tooltip "All links open in new tab">
-<!ENTITY lockTabMenu.accesskey "K">
-<!ENTITY bookmarktabs.label "Bookmark All Tabs">
-<!ENTITY linkhere.label "Open Link in This Tab">
-<!ENTITY linkhere.accesskey "O">
-<!ENTITY linkBackgroundTab.label "Open Link in Background Tab">
-<!ENTITY linkForegroundTab.label "Open Link in Foreground Tab">
-<!ENTITY linkBackgroundTab.accesskey "B">
-<!ENTITY linkForegroundTab.accesskey "F">
-<!ENTITY openalllinks.label "Open Links in New Tabs">
-<!ENTITY openalllinks.accesskey "S">
-<!ENTITY linkwithhistory.label "Open Link in Duplicated Tab">
-<!ENTITY linkwithhistory.accesskey "D">
-<!ENTITY tabsList.label "Opened Tabs List">
-<!ENTITY tabsList.accesskey "L">
-<!ENTITY allowImage.label "Image">
-<!ENTITY allowJavascript.label "JavaScript">
-<!ENTITY allowRedirect.label "Redirect">
-<!ENTITY allowPlugin.label "Plug-in">
-<!ENTITY allowFrame.label "Frame">
-<!ENTITY restoreincurrent.label "Restore to Current Tab">
-<!ENTITY restoreincurrent.accesskey "C">
-<!ENTITY restoreinwin.label "Restore to New Window">
-<!ENTITY restoreinwin.accesskey "W">
-<!ENTITY restoreintab.label "Restore to New Tab">
-<!ENTITY restoreintab.accesskey "T">
-<!ENTITY restoretab.label "Restore Tab">
-<!ENTITY restoretab.accesskey "R">
-<!ENTITY bookmark.label "Bookmark This Link...">
-<!ENTITY bookmark.accesskey "B">
-<!ENTITY deletelist.label "Delete from the list">
-<!ENTITY deletelist.accesskey "D">
-<!ENTITY settings.label "Settings">
-<!ENTITY saveWindow.label "Save This Window">
-<!ENTITY saveAllWindows.label "Save All Windows">
-<!ENTITY sm.context.overwrite "Restore, Overwrite Existing Window(s)">
-<!ENTITY sm.context.overwrite.key "O">
-<!ENTITY sm.context.restore.new "Restore to New Window(s)">
-<!ENTITY sm.context.restore.newkey "N">
-<!ENTITY sm.context.replacethis "Replace, With This Window">
-<!ENTITY sm.context.replacethis.key "T">
-<!ENTITY sm.context.replaceall "Replace, With All Windows">
-<!ENTITY sm.context.replaceall.key "A">
-<!ENTITY sm.context.add "Add This Window">
-<!ENTITY sm.context.add.key "W">
-<!ENTITY sm.context.addall "Add All Windows">
-<!ENTITY sm.context.addall.key "I">
-<!ENTITY sm.context.save "Save">
-<!ENTITY sm.context.save.key "S">
-<!ENTITY sm.context.rename "Rename">
-<!ENTITY sm.context.rename.key "R">
-<!ENTITY sm.context.delete "Delete">
-<!ENTITY sm.context.delete.key "D">
-<!ENTITY sm.context.deleteall "Delete All">
-<!ENTITY sm.context.deleteall.key "L">
-<!ENTITY sm.context.startup "Set as Startup Session">
-<!ENTITY sm.context.startup.key "P">
-<!ENTITY sm.context.details "Show Counters, Date and Time in Session Menu">
-<!ENTITY sm.context.details.key "C">
-<!ENTITY tab.key "T">
-<!ENTITY window.key "N">
-<!ENTITY merge.key "M">
-<!ENTITY sortedTabs.label "Sorted Tabs">
-<!ENTITY sortedTabs.tooltip "Check to show the list sorted alphabetically">
-<!ENTITY enable.label "Enable">
-<!ENTITY custom.label "Custom">
-<!ENTITY enableTabs.label "Enable All Tabs">
-<!ENTITY disableTabs.label "Disable All Tabs">
-<!ENTITY seconds.label "seconds">
-<!ENTITY minutes.label "minutes">
-<!ENTITY minute.label "minute">
-<!ENTITY hideTabBar.label "Hide the tab bar">
-<!ENTITY hideTabBar.never.label "Never">
-<!ENTITY hideTabBar.never.key "N">
-<!ENTITY hideTabBar.onOneTab.label "When I have only one tab">
-<!ENTITY hideTabBar.onOneTab.key "E">
-<!ENTITY hideTabBar.always.label "Always">
-<!ENTITY hideTabBar.always.key "A">
diff --git a/chrome/locale/fi/tabmix.properties b/chrome/locale/fi/tabmix.properties
deleted file mode 100644
index 6235eed..0000000
--- a/chrome/locale/fi/tabmix.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-extensions.{dc572301-7619-498c-a57d-39143191b318}.description=Vauhditettua välilehtiselausta.
-tmp.merge.warning.title=Irralliset välilehdet suljettavassa ikkunassa
-tmp.merge.warning.message=Valitut välilehdet yhdistetään toiseen ikkunaan, mutta muut suljetaan ikkunan mukana.
-tmp.merge.warning.checkboxLabel=Varoita minua aina kun suljettavassa ikkunassa on irrallisia välilehtiä.
-tmp.merge.error=Vähintään 2 ikkunaa täytyy olla auki ennen kuin voit yhdistää niitä
-tmp.merge.private= You can not merge private window with non-private window.
-tmp.importPref.error1=Tuonti epäonnistui koska tiedosto ei ole kelvollinen.
-tmp.importPref.error2=Asetusten tuonti epäonnistui.
-tmp.sessionempty=Seuraavan kerran kun käynnistät selaimen \"Edellinen istunto\" on tyhjä.
-droptoclose.label=Pudota välilehti sulkeaksesi sen
-droplink.label=Pudota keskelle korvataksesi välilehden tai reunoille luodaksesi uuden välilehden
-flstOn.label=Valitse viimeksi valittu välilehti - Vaihda valintaa painamalla F9
-flstOff.label=Valitse oikeanpuoleinen välilehti - Vaihda valintaa painamalla F9
-slideshowOn.label=Välilehtien kierrätys on päällä - Käännä pois päältä painamalla F8
-slideshowOff.label=Välilehtien kierrätys on pois päältä - Käännä päälle painamalla F8
-undoclosetab.clear.label=Tyhjennä suljettujen välilehtien lista
-undoclosetab.clear.accesskey=T
-undoClosedWindows.clear.label=Tyhjennä suljettujen ikkunoiden lista
-undoClosedWindows.clear.accesskey=T
-protectedtabs.closeWarning.1=Olet sulkemassa suojatun välilehden. Oletko varma että haluat jatkaa?
-protectedtabs.closeWarning.2=Olet sulkemassa %S suojattua välilehteä. Oletko varma että haluat jatkaa?
-protectedtabs.closeWarning.3=Olet sulkamassa %S välilehteä, joista %S on suojattuja. Oletko varma että haluat jatkaa?
-protectedtabs.closeWarning.4=Varoita, kun yritän sulkea ikkunan, jossa on suojattuja välilehtiä
-window.closeWarning.1=Varoita, kun yritän sulkea ikkunan, jossa on useita välilehtiä
-closeWindow.label=Sulje ikkuna
-confirm_autoreloadPostData_title=Varoitus!
-confirm_autoreloadPostData=Yrität ottaa käyttöön automaattisen päivityksen sivulla, jolla on lomaketietoja.nJos otat automaattisen päivityksen käyttöön, lomaketietojen lähetyksestä seuraavat tapahtumat (esim. maksutapahtumat) tullaan toistamaan.nnOletko varma että haluat ottaa automaattisen päivityksen käyttöön?
-incompatible.title=Tab Mix Plus
-incompatible.msg0=Seuraavat laajennukset eivät ole yhteensopivia Tab Mix Plussan kanssa tai ne ovat osa toiminnallisuutta.
-incompatible.msg1=Haluatko poistaa nämä laajennukset käytöstä?
-incompatible.msg2=Yhteensopimattomat laajennukset otetaan pois käytöstä, kun käynnistät selaimen uudelleen.
-incompatible.button0.label=Poista käytöstä
-incompatible.button0.accesskey=P
-incompatible.button1.label=Älä poista
-incompatible.button1.accesskey=Ä
-incompatible.button2.label=Poista käytöstä ja käynnistä uudelleen
-incompatible.button2.accesskey=K
-incompatible.chkbox.label=Näytä tämä hälytys kun selain käynnistyy
-tabmixoption.error.title=Tab Mix Plus - Virhe
-tabmixoption.error.msg=Sinulla täytyy olla vähintään yksi ikkuna jotta voit käyttää Tab Mix Plussan asetuksia.
diff --git a/chrome/locale/lv-LV/misc.dtd b/chrome/locale/lv-LV/misc.dtd
deleted file mode 100644
index 69cffa0..0000000
--- a/chrome/locale/lv-LV/misc.dtd
+++ /dev/null
@@ -1,17 +0,0 @@
-<!ENTITY searchTabFocus.label "Ielādēt fonā">
-<!ENTITY searchTabFocus.accesskey "L">
-<!ENTITY renametab.panel.title "Rediģēt cilnes nosaukumu">
-<!ENTITY renametab.reset.label "Atstatīt uz noklusēto nosaukumu">
-<!ENTITY title.label "Nosaukums">
-<!ENTITY default.label "Noklusētais">
-<!ENTITY renametab.permanently.label "Pārdēvēt šo cilni neatkarīgi no tās adreses">
-<!ENTITY renametab.permanently.tooltip "cilne ar vēsturi - jaunais nosaukums arī adresei izmainoties">
-<!ENTITY forum.label "Forums">
-<!ENTITY faq.label "BUJ">
-<!ENTITY help.label "Palīdzība">
-<!ENTITY tabmix.label "Tab Mix Plus">
-<!ENTITY reloadtime.label1 "Izvēlieties laiku no saraksta vai arī ievadiet savu laiku">
-<!ENTITY specifyreload.label "Norādīt pārlādēšanas laiku">
-<!ENTITY sanitizer.entry "Tab Mix Plus saglabātās sesijas">
-<!ENTITY sanitizer.entry.accesskey "T">
-<!ENTITY sanitizer.entry.confirm "Vai esat pārliecināts, ka vēlaties izdzēst VISAS jūsu saglabātās sesijas, ieskaitot rezerves kopijas?">
diff --git a/chrome/locale/lv-LV/pref-appearance.dtd b/chrome/locale/lv-LV/pref-appearance.dtd
deleted file mode 100644
index ac69b16..0000000
--- a/chrome/locale/lv-LV/pref-appearance.dtd
+++ /dev/null
@@ -1,18 +0,0 @@
-<!ENTITY styles.label "Pielāgot stilus">
-<!ENTITY currentTab.label "Pašreizējā cilne">
-<!ENTITY unloadedTabs.label "Neielādētās cilnes">
-<!ENTITY unreadTab.label "Nelasītās cilnes">
-<!ENTITY hideRGB.label "Paslēpt RGB">
-<!ENTITY showRGB.label "Rādīt RGB">
-<!ENTITY unreadAfterReload.label "pēc pārlādēšanas iestatīt cilni kā nelasītu">
-<!ENTITY squaredTabs.label "Pielietot fona krāsu kvadrātveida cilnēm">
-<!ENTITY otherTabs.label "Citas cilnes">
-<!ENTITY italic.label "Slīpraksts">
-<!ENTITY bold.label "Treknraksts">
-<!ENTITY underline.label "Pasvītrots">
-<!ENTITY textcolor.label "Teksta krāsa">
-<!ENTITY bgColor.label "Fona krāsa">
-<!ENTITY bgTopColor.label "augša">
-<!ENTITY bgBottomColor.label "apakša">
-<!ENTITY useThis.label "izmantot šo stilu priekš">
-<!ENTITY opacity.label "caurspīdība">
diff --git a/chrome/locale/lv-LV/pref-filetype.dtd b/chrome/locale/lv-LV/pref-filetype.dtd
deleted file mode 100644
index 5c3b681..0000000
--- a/chrome/locale/lv-LV/pref-filetype.dtd
+++ /dev/null
@@ -1,5 +0,0 @@
-<!ENTITY filetype.options "Failu tipu redaktors">
-<!ENTITY filetype.add "Pievienot">
-<!ENTITY filetype.edit "Mainīt">
-<!ENTITY filetype.delete "Dzēst">
-<!ENTITY filetype.new "Jauns faila tips:">
diff --git a/chrome/locale/lv-LV/pref-tabmix.dtd b/chrome/locale/lv-LV/pref-tabmix.dtd
deleted file mode 100644
index c59c6c1..0000000
--- a/chrome/locale/lv-LV/pref-tabmix.dtd
+++ /dev/null
@@ -1,308 +0,0 @@
-<!ENTITY tab.links "Saites">
-<!ENTITY tab.events "Notikumi">
-<!ENTITY tab.mouse "Pele">
-<!ENTITY tab.appearance "Izskats">
-<!ENTITY tab.menu "Izvēlne">
-<!ENTITY tab.session "Sesija">
-<!ENTITY tab.incompatible "Kļūda">
-<!ENTITY apply.label "Pielietot">
-<!ENTITY settings.export "Eksportēt iestatījumus">
-<!ENTITY settings.import "Importēt iestatījumus">
-<!ENTITY settings.sync "Sinhronizēt iestatījumus">
-<!ENTITY settings.default "Atjaunot noklusējumus">
-<!ENTITY generalWindowOpen.label "Saites, kas atveras jaunā logā, atvērt:">
-<!ENTITY externalLink.useSeparate.label "Saitēm no citām lietotnēm izmantot atsevišķu iestatījumu">
-<!ENTITY externalLinkTarget.label "Saites no citām lietotnēm atvērt:">
-<!ENTITY linkTarget.tab "Jaunā cilnē">
-<!ENTITY linkTarget.window "Jaunā logā">
-<!ENTITY linkTarget.current "Pašreizējā cilnē">
-<!ENTITY linkTarget.accesskey "C">
-<!ENTITY divertedWindowOpen.label "JavaScript uzlecošie logi:">
-<!ENTITY divertedWindowOpen.all "Atvērt visus uzlecošos logus cilnēs">
-<!ENTITY divertedWindowOpen.some "Atļaut uzlecošos logus ar mainītu izmēru">
-<!ENTITY divertedWindowOpen.none "Atļaut visus uzlecošos logus">
-<!ENTITY linkTarget.label "Atvērt saites ar mērķa atribūtu pašreizējā cilnē">
-<!ENTITY download.label "Nepieļaut tukšas cilnes, lejupielādējot failus">
-<!ENTITY edit.label "Rediģēt">
-<!ENTITY speLink.label "Piespiest atvērt jaunā cilnē:">
-<!ENTITY speLink.none "Neko">
-<!ENTITY speLink.allLinks "Visas saites">
-<!ENTITY speLink.external "Saites uz citām vietnēm">
-<!ENTITY singleWindow.label "Ieslēgt viena loga režīmu">
-<!ENTITY newTabs.label "Jaunas cilnes">
-<!ENTITY tabOpen.label "Ciļņu atvēršana">
-<!ENTITY tabFocus.label "Ciļņu fokuss">
-<!ENTITY tabClose.label "Ciļņu aizvēršana">
-<!ENTITY tabMerge.label "Ciļņu apvienošana">
-<!ENTITY tabFeature.label "Ciļņu iespējas">
-<!ENTITY newtab.label "Jaunajās cilnēs ielādēt:">
-<!ENTITY replaceLastTabWith.label "Aizverot pēdējo cilni, aizvietot to ar">
-<!ENTITY newtab.blank "Tukšu lapu">
-<!ENTITY newtab.home "Mājas lapu">
-<!ENTITY newtab.current "Pašreizējo lapu">
-<!ENTITY newtab.duplicate "Dublikāta lapu">
-<!ENTITY newtab.location.1 "Jaunas cilnes lapa">
-<!ENTITY newtab.placeholder.label "Noklusētā jaunas cilnes lapa">
-<!ENTITY location.label.1 "Adrese">
-<!ENTITY focusContent.label "Ielādējot ne-tukšu lapu, fokusēties uz saturu">
-<!ENTITY openTabNext.label "Jaunas cilnes atvērt pēc pašreizējās">
-<!ENTITY openOtherTabNext.label "Citas cilnes atvērt pēc pašreizējās">
-<!ENTITY relatedAfterCurrent.label "Tikai, ja attiecas uz pašreizējo cilni">
-<!ENTITY openTabNext.tooltip1 "[a][b][c][1][2][3] -> [a][1][2][3][b][c]">
-<!ENTITY openDuplicateNext.label "Dublicētās cilnes atvērt blakus oriģinālajai">
-<!ENTITY openTabNext.tooltip "[a][b][c][1][2][3] -> [a][3][2][1][b][c]">
-<!ENTITY openTabNextInverse.label "Mainīt atvēršanas kārtību">
-<!ENTITY openTabNextInverse.tooltip "[a][3][2][1][b][c] -> [a][1][2][3][b][c]">
-<!ENTITY openTabNextInverse.tooltip1 "Jaunu cilni atvērt aiz cilnes, kas atvērta no pašreizējās cilnes (kopš tā pēdējo reizi tika izvēlēta)">
-<!ENTITY lockTabs.label "Noslēgt cilnes">
-<!ENTITY lockNewTabs.label "Noslēgt jaunās cilnes">
-<!ENTITY lockAppTabs.label "Noslēgt lietotņu cilnes">
-<!ENTITY updateLockState.label "Pielietot izmaiņas atvērtajām cilnēm">
-<!ENTITY openNewTab.label "Atvērt cilnes no:">
-<!ENTITY openBookmarks.label "Grāmatzīmes">
-<!ENTITY openBMKGroups.label "Grāmatzīmju grupas">
-<!ENTITY openBMKGroups.tooltip "Neaizstāt cilnes, kad tiek atvērta grāmatzīmju grupa">
-<!ENTITY openHistory.label "Vēsture">
-<!ENTITY openUrl.label "Adrešu josla">
-<!ENTITY openSearch.label "Meklēšanas josla">
-<!ENTITY middlecurrent1.label "Vidējais klikšķis vai Control-klikšķis atver vienumus pašreizējā cilnē">
-<!ENTITY middlecurrent.tooltip "Jaunā cilnē piespiedu kārtā atvērt tikai grāmatzīmes, vēsturi un saites">
-<!ENTITY tabFocus.caption "Fokusēt/Izvēlēties cilnes, kas atvērtas no:">
-<!ENTITY selectTab.label "Saitēm">
-<!ENTITY selectDivertedTab.label "Novirzīta loga">
-<!ENTITY selectTabFromExternal.label "Citām lietotnēm">
-<!ENTITY selectTabCommand.label "Jaunas cilnes komandām">
-<!ENTITY contextMenuSearch.label "Konteksta izvēles meklēšana">
-<!ENTITY selectTabBH.label "Grāmatzīmes/Vēsture">
-<!ENTITY duplicateTab.label "Dublicēt cilni">
-<!ENTITY inversefocus1.label "Apgriezt vidējā klikšķa vai Control-klikšķa fokusu:">
-<!ENTITY warning.caption.label "Brīdinājums">
-<!ENTITY warnOnCloseProtected.label "Brīdināt mani, kad tiek aizvērts logs ar aizsargātām cilnēm">
-<!ENTITY warnOnCloseWindow.label "Brīdināt mani, kad tiek aizvērts logs ar vairākām cilnēm">
-<!ENTITY lasttab.caption.label "Aizverot pēdējo cilni">
-<!ENTITY keepWindow.label.3.1 "Neaizvērt logu, kad tiek aizvērta pēdējā cilne">
-<!ENTITY keeptab.label "Novērst pēdējās cilnes aizvēršanu">
-<!ENTITY closeOnMerge.label "Aizvērt logus, tiklīdz tie tiek apvienoti">
-<!ENTITY warnOnMerge.label "Brīdināt, kad aizver cilnes, kuras netiek apvienotas">
-<!ENTITY currenttab.caption.label "Aizverot pašreizējo cilni">
-<!ENTITY focusTab.labelBegin "Aizverot pašreizējo cilni, fokusēties:">
-<!ENTITY focusTab.firstTab "Pirmo cilni">
-<!ENTITY focusTab.leftTab "Cilni pa kreisi">
-<!ENTITY focusTab.rightTab "Cilni pa labi">
-<!ENTITY focusTab.lastTab "Pēdējo cilni">
-<!ENTITY focusTab.lastSelectedTab "Pēdējo izvēlēto cilni">
-<!ENTITY focusTab.openerTab "Atvērēju/labo cilni">
-<!ENTITY focusTab.openerTab.rtl "Atvērēju/kreiso cilni">
-<!ENTITY focusTab.lastOpenedTab "Pēdējo atvērto cilni">
-<!ENTITY undoClose.label "Ieslēgt aizvērto ciļņu atsaukšanu">
-<!ENTITY undoCloseCache.label "Maksimālais skaits aizvērto ciļņu, ko atcerēties:">
-<!ENTITY undoClosepos.label "Atjaunot cilnes oriģinālo pozīciju">
-<!ENTITY menuonlybutton.label "Rīkjoslas pogā parāda tikai sarakstu">
-<!ENTITY ctrltab.label "Ctrl-Tab pārslēdz cilnes nesenās izmantošanas kārtībā">
-<!ENTITY cmdtab.label "Cmd-Tab pārslēdz cilnes nesenās izmantošanas kārtībā">
-<!ENTITY ctrltab.tabPreviews "Rādīt ciļņu priekšskatījumus">
-<!ENTITY ctrltab.popup "Ctrl-Tab parāda ciļņu saraksta uzlecošo izvēlni">
-<!ENTITY cmdtab.popup "Cmd-Tab parāda ciļņu saraksta uzlecošo izvēlni">
-<!ENTITY tabpopup.mouse "Ciļņu saraksts reaģē uz peli">
-<!ENTITY mergeNoTabSelection.label "Apvienot logus, kad nav izvēlēta neviena cilne">
-<!ENTITY mergeTabSelection.label "Apvienošana pēc ciļņu atlases">
-<!ENTITY mergeall.label "Apvienot visus logus vienā">
-<!ENTITY mergelastfocused.label "Apvienot tikai pašreizējo logu ar pēdējo fokusēto">
-<!ENTITY mergePopups.label "Paņemt arī uzlecošos logus">
-<!ENTITY popupNextToOpener.label "Novietot uzlecošos logus aiz to atvērējiem">
-<!ENTITY activateSlideshow.label "#1 nospiešana rotē cilnes katras">
-<!ENTITY toggleAnimation.label "Atslēgt atvēršanas/aizvēršanas animāciju">
-<!ENTITY reloadEvery.matchAddress.label "Pārlādēt cilni neatkarīgi no tās adreses">
-<!ENTITY reloadEvery.onReloadButton.label "Rādīt izvēlni 'Pārlādēt katras' uz pogas 'Pārlādēt'">
-<!ENTITY seconds.label "sekundes">
-<!ENTITY minutes.label "minūtes">
-<!ENTITY tabBarAppearance.label "Ciļņu josla">
-<!ENTITY tabAppearance.label "Cilne">
-<!ENTITY toolBarAppearance.label "Rīkjosla">
-<!ENTITY show.ontabbar.label "Rādīt uz ciļņu joslas">
-<!ENTITY show.ontab.label "Rādīt uz cilnes">
-<!ENTITY dragNewTabButton.tooltip "Lai ieslēgtu šo opciju, pārnesiet pogu 'Jauna cilne' uz ciļņu joslas.">
-<!ENTITY hideTabBarButton.label "Poga 'Aizvērt cilni'">
-<!ENTITY newTabButton.label "Poga 'Jauna cilne'">
-<!ENTITY newTabButton.posiotion.left.label "kreisajā pusē">
-<!ENTITY newTabButton.posiotion.right.label "labajā pusē">
-<!ENTITY newTabButton.posiotion.afterlast.label "Pēc pēdējās cilnes">
-<!ENTITY allTabsButton.label "Poga 'Visas cilnes'">
-<!ENTITY tabBarSpace.label "Papildu atstarpe abās pusēs">
-<!ENTITY tabBarSpace.tooltip "Klikšķināšanai un kaut kā nomešanai uz ciļņu joslas">
-<!ENTITY tabbar.label "Paslēpt ciļņu joslu, ja ir atvērta tikai viena cilne">
-<!ENTITY moveTabOnDragging.label "Pārnesot cilni, darīt to tieši">
-<!ENTITY dropIndicator.label "Nomešanas indikators">
-<!ENTITY dropIndicator-native.label "Natīvais stils">
-<!ENTITY dropIndicator-builtin.label "Iebūvētais stils">
-<!ENTITY verticalTabbar.description "Lietot treeStyleTab vai VerticalTab paplašinājumu, lai regulētu šos iestatījumus.">
-<!ENTITY tabBarPosition.label "Pozīcija:">
-<!ENTITY tabBarPosition.top.label "Augšā (virs satura)">
-<!ENTITY tabBarPosition.bottom.label "Apakšā (zem satura)">
-<!ENTITY tabScroll.label "Kad cilnes nesatilpst platumā:">
-<!ENTITY tabScroll.none "Ritināmas bez pogām">
-<!ENTITY tabScroll.leftRightButtons "Ritināmas ar pogām abās pusēs">
-<!ENTITY tabScroll.rightButtons "Ritināmas ar pogām labajā pusē">
-<!ENTITY tabScroll.rightButtons.rtl "Ritināmas ar pogām kreisajā pusē">
-<!ENTITY tabScroll.multibar "Vairākās rindās">
-<!ENTITY maxrow.label "Maksimālais rādāmo rindu skaits:">
-<!ENTITY offsetAmountToScroll.label "Ritinot rādīt daļu no nākamās neredzamās cilnes">
-<!ENTITY smoothScroll.label "Ieslēgt gludo ritināšanu">
-<!ENTITY scrolldelay.label "Ritināšanas aizture (laiks starp ritināšanas atkārtošanu)">
-<!ENTITY highlight.label "Izcelšana">
-<!ENTITY currenttab.style.label "Pašreizējā cilne">
-<!ENTITY unloadedtabs.style.label "Neielādētās cilnes">
-<!ENTITY unreadtabs.style.label "Nelasītās cilnes">
-<!ENTITY othertabs.style.label "Citas cilnes">
-<!ENTITY setstyles.label "Pielāgot stilus">
-<!ENTITY extraIcons.label1 "Ikonas priekš">
-<!ENTITY extraIcons.locked "Slēgts">
-<!ENTITY extraIcons.protected "Aizsargāts">
-<!ENTITY extraIcons.autoreload "Automātiski pārlādēt">
-<!ENTITY extraIcons.hideonpinned "Uz piespraustām cilnēm paslēpt">
-<!ENTITY progressMeter.label "Progresa josla uz cilnēm">
-<!ENTITY showTabX.labelBegin "Cilnes aizvēršanas poga">
-<!ENTITY showTabX.left "Novietot kreisajā pusē">
-<!ENTITY showTabX.rtl "Novietot labajā pusē">
-<!ENTITY milliseconds.label "msek.">
-<!-- LOCALIZATION NOTE          change this only if you need to change the width -->
-<!ENTITY showTabX.popup.width "13em">
-<!ENTITY showTabX.always "uz visām">
-<!ENTITY showTabX.current "uz pašreizējās">
-<!ENTITY showTabX.hover "zem kursora esošās">
-<!ENTITY showTabX.alwaysExeption "uz visām cilnēm, kas platākas nekā">
-<!ENTITY showTabX.currentHover "uz pašreizējās un zem kursora esošās">
-<!ENTITY minWidth.label "Cilnes platums:">
-<!ENTITY widthTo.label "līdz">
-<!ENTITY widthPixels.label "pikseļi">
-<!ENTITY flexTabs.label "Cilnes platums pielāgojas cilnes nosaukumam">
-<!ENTITY bookastitle.label "Lietot grāmatzīmju nosaukumu kā cilnes nosaukumu">
-<!-- LOCALIZATION NOTE:          change this only if you need to change the width -->
-<!ENTITY toolbar.description.width "21em">
-<!ENTITY toolbar.description "Varat izvēlēties, kuras Tab Mix Plus pogas rādīt savā rīkjoslā">
-<!ENTITY toolbar.button.label "Pielāgot">
-<!ENTITY toolbar.visible.caption "Redzamas pogas">
-<!ENTITY toolbar.novisible.label "Nav redzamu pogu">
-<!ENTITY toolbar.hidden.caption "Slēptās pogas">
-<!ENTITY toolbar.nohidden.label "Nav slēpto pogu">
-<!ENTITY mouseGesture.label "Peles žesti">
-<!ENTITY mouseClick.label "Peles klikšķināšana">
-<!ENTITY mouseHoverSelect.labelBegin "Izvēlēties zem kursora esošo cilni">
-<!ENTITY tabFlip.label "Pārslēgties uz pēdējo izvēlēto cilni, noklikšķinot uz pašreizējās">
-<!ENTITY tabFlip.delay "Lietot aizturi">
-<!ENTITY clickFocus.label "Peles klikšķis (nospiest un atlaist), lai izvēlētos cilni">
-<!ENTITY removeEntries.label "Izņemt Tab Mix Plus izvēlnes ierakstus, izmantojot vidējo klikšķi">
-<!ENTITY lockTabSizingOnClose.label "Aizverot cilni, citām cilnēm nemainīt izmēru līdz kursors neatstāj rīkjoslas apgabalu">
-<!ENTITY removeEntries.tooltip "Ieskaitot aizvērtās cilnes, aizvērtos logus un saglabātās sesijas">
-<!ENTITY tabbarscrolling.caption "Ritinot virs ciļņu joslas">
-<!ENTITY tabbarscrolling.holdShift.label "Ritinot turiet nospiestu Shift, lai pārslēgtos starp šīm opcijām">
-<!ENTITY tabbarscrolling.selectTab.label "Mainīt izvēlēto cilni">
-<!ENTITY tabbarscrolling.scrollAllTabs.label "Ritināt visas cilnes">
-<!ENTITY tabbarscrolling.inverse.label "Apgriezt ritināšanas virzienu">
-<!ENTITY double.label "Dubultklikšķis">
-<!ENTITY middle.label "Vidējais klikšķis">
-<!ENTITY ctrl.label "Ctrl-klikšķis">
-<!ENTITY cmd.label "Cmd-klikšķis">
-<!ENTITY shift.label "Shift-klikšķis">
-<!ENTITY alt.label "Alt-klikšķis">
-<!ENTITY ontab.label "uz cilnes:">
-<!ENTITY ontabbar.label "uz ciļņu joslas:">
-<!ENTITY clicktab.label "Izvēlieties komandu, ko izpildīt, noklikšķinot uz ciļņu joslas">
-<!ENTITY ontabbar.dblClick.label "Neļaut loga izmēra maiņu, kad tiek noklikšķināts uz ciļņu joslas.">
-<!ENTITY ontabbar.click.label "Novērst loga pārnešanu, noklikšķinot uz ciļņu joslas.">
-<!ENTITY clicktab.default "Firefox noklusētais vai cits paplašinājums">
-<!ENTITY clicktab.nothing "Nedara neko">
-<!ENTITY clicktab.addtab "Atvērt jaunu cilni">
-<!ENTITY clicktab.duplicatetab "Dublicē cilni">
-<!ENTITY clicktab.duplicatetabw "Dublicē cilni jaunā logā">
-<!ENTITY clicktab.detachtab "Pārvietot cilni uz jaunu logu">
-<!ENTITY clicktab.protecttab "Aizsargā cilni">
-<!ENTITY clicktab.locktab "Noslēdz cilni">
-<!ENTITY clicktab.freezetab "Aizsargā un noslēdz cilni">
-<!ENTITY clicktab.renametab "Pārdēvē cilni">
-<!ENTITY clicktab.copyTabUrl "Kopē cilnes URL uz starpliktuvi">
-<!ENTITY clicktab.copyUrlFromClipboard "Ielādēt URL no starpliktuves">
-<!ENTITY clicktab.selectMerge "Izvēlas cilni apvienošanai">
-<!ENTITY clicktab.mergeTabs "Apvieno logus">
-<!ENTITY clicktab.bookTab "Pievieno cilni grāmatzīmēm">
-<!ENTITY clicktab.bookTabs "Pievieno gŗāmatzīmēm visas cilnes">
-<!ENTITY clicktab.reloadtab "Pārlādē cilni">
-<!ENTITY clicktab.reloadtabs "Pārlādē visas cilnes">
-<!ENTITY clicktab.reloadothertabs "Pārlādē citas cilnes">
-<!ENTITY clicktab.reloadlefttabs "Pārlādē kreisās cilnes">
-<!ENTITY clicktab.reloadrighttabs "Pārlāde labās cilnes">
-<!ENTITY clicktab.autoReloadTab "Ieslēgt/Atslēgt ciļņu automātisko pārlādēšanu">
-<!ENTITY clicktab.removeall "Aizvērt visas cilnes">
-<!ENTITY clicktab.removeother "Aizvērt citas cilnes">
-<!ENTITY clicktab.removesimilar "Aizvērt cilnes no līdzīga domēna">
-<!ENTITY clicktab.removetoLeft "Aizvērt cilnes pa kreisi">
-<!ENTITY clicktab.removetoRight "Aizvērt cilnes pa labi">
-<!ENTITY clicktab.uctab "Atkārtoti atvērt pēdējo aizvērto cilni">
-<!ENTITY clicktab.ucatab "Atkārtoti atvērt visas aizvērtās cilnes">
-<!ENTITY clicktab.snapback "SnapBack cilne">
-<!ENTITY clicktab.ietab "Atver cilni pārlūkā IE">
-<!ENTITY contentLoad "Vidējais klikšķis ielādē cilni no starpliktuves">
-<!ENTITY context.tab "Cilnes konteksta izvēlne">
-<!ENTITY context.main "Galvenā konteksta izvēlne">
-<!ENTITY context.tools "Rīku izvēlne">
-<!ENTITY showtabBarContext.label "Rādīt cilnes konteksta izvēlnē">
-<!ENTITY showContentAreaContext.label "Rādīt galvenajā konteksta izvēlnē">
-<!ENTITY showToolsMenu.label "Rādīt rīku izvēlnē">
-<!ENTITY startupHomePage.label "Rādīt manu mājas lapu">
-<!ENTITY startupBlankPage.label "Rādīt tukšu lapu">
-<!ENTITY startupLastSession.label "Rādīt manus logus un cilnes no iepriekšējās reizes">
-<!ENTITY sm.extension.description1 "Tab Mix Plus konstatēja, ka ir instalēts paplašinājums Session Manager">
-<!ENTITY sm.extension.description2 "Tab Mix Plus sesiju pārvaldnieks tiks atslēgts">
-<!ENTITY sm.extension.description3 "Lai atvērtu Session Manager opciju logu, varat noklikšķināt uz pogas pa labi">
-<!ENTITY sm.extension.description4 "Pārveidot manu sesiju datus no Tab Mix Plus formāta uz Session Manager paplašinājuma formātu">
-<!ENTITY sm.extension.convert.label "Pārveidot">
-<!ENTITY sm.extension.chooseFile.label0 "Ļaut man izvēlēties, kuru datu failu pārveidot">
-<!ENTITY sm.extension.chooseFile.label1 "Pārveidot Tab Mix Plus sesijas no pašreizējā profila">
-<!ENTITY ss.enable.label "Lietot Firefox iebūvēto sesijas atjaunošanas iespēju">
-<!ENTITY ss.enable.tooltip "Neatzīmējiet, lai ļautu izmantot Tab Mix Plus sesiju pārvaldnieku">
-<!ENTITY ss.advanced_setting "Paplašinātie iestatījumi">
-<!ENTITY ss.advanced_setting.warning "Nemainiet šos, ja vien nezinat, ko darat">
-<!ENTITY ss.interval "Minimālais laika intervāls starp divām stāvokļa saglabāšanas reizēm">
-<!ENTITY ss.interval.seconds "(milisekundēs)">
-<!ENTITY ss.privacy_level "Saglabāt jutīgus datus (formu dati, POSTDATA un sīkdatnes)">
-<!ENTITY ss.privacy_level.allsites "Visām vietnēm">
-<!ENTITY ss.privacy_level.unencrypted "Tikai nešifrētām vietnēm">
-<!ENTITY ss.privacy_level.nosites "Nevienai vietnei">
-<!ENTITY ss.postdata.label1 "Maksimālais glabājamais POSTDATA datu apjoms">
-<!ENTITY ss.postdata.label2 "(baitos, -1=visi)">
-<!ENTITY sessionManger.enable "Ieslēgt sesiju pārvaldnieku">
-<!ENTITY crashRecovery.enable "Ieslēgt pēcavārijas atkopšanu">
-<!ENTITY sm.StartExit "Palaist/Iziet">
-<!ENTITY sm.restore "Atjaunot">
-<!ENTITY sm.preserve "Saglabāt">
-<!ENTITY sm.start "Kad tiek palaists pārlūks:">
-<!ENTITY sm.start.restore "Atjaunot">
-<!ENTITY sm.start.ask "Jautāt pirms atjaunošanas">
-<!ENTITY sm.start.nothing "Neatjaunot">
-<!ENTITY sm.exit "Kad pārlūks tiek aizvērts">
-<!ENTITY sm.exit.save "Saglabāt sesiju">
-<!ENTITY sm.exit.ask "Jautāt pirms saglabāšanas">
-<!ENTITY sm.exit.nothing "Nesaglabāt">
-<!ENTITY sm.startup "Palaižamā sesija:">
-<!ENTITY sm.lastsession "Pēdējā sesija">
-<!ENTITY sm.previouslast "Priekšpēdējā">
-<!ENTITY sm.chooseifempty "Izvēlēties citu, jau tukša">
-<!ENTITY sm.restore.options "Atjaunojot sesijas:">
-<!ENTITY sm.restore.overwrite "Pārrakstīt esošos logus">
-<!ENTITY sm.restore.overwriteTabs "Un cilnes">
-<!ENTITY sm.restore.closedWinList "Saglabāt logus aizvērto logu sarakstā">
-<!ENTITY sm.restore.merge "Apvienot vairākus logus vienā">
-<!ENTITY sm.restore.bypassCache "Atjaunojot apiet kešatmiņu">
-<!ENTITY sm.notrestore.label "Kad neatjauno palaižot">
-<!ENTITY sm.restorePinned.label "Restore my pinned tabs from last time">
-<!ENTITY sm.preserve.options "Saglabāt ciļņu:">
-<!ENTITY sm.preserve.history "Vēsturi">
-<!ENTITY sm.preserve.protect "Aizsargāšanas statusu">
-<!ENTITY sm.preserve.locked "Noslēgšanas statusu">
-<!ENTITY sm.preserve.permission "Atļaujas">
-<!ENTITY sm.preserve.scroll1 "Ritināšanas pozīciju">
-<!ENTITY sm.restore.winOptions "Saglabāt logu:">
-<!ENTITY sm.restore.selectedTab "Izvēlēto cilni">
-<!ENTITY sm.restore.closedTabs "Aizvērto ciļņu sarakstu">
-<!ENTITY incompatible.extensions "Daži no jūsu paplašinājumiem nav savietojami ar Tab Mix Plus, vēlams šos paplašinājumus atslēgt vai atinstalēt.">
-<!ENTITY incompatible.button.label "Rādīt sarakstu">
diff --git a/chrome/locale/lv-LV/session-manager.properties b/chrome/locale/lv-LV/session-manager.properties
deleted file mode 100644
index 9957e99..0000000
--- a/chrome/locale/lv-LV/session-manager.properties
+++ /dev/null
@@ -1,107 +0,0 @@
-sm.saveClosedTab.chkbox.label=Saglabāt aizvērto ciļņu sarakstu ar šo sesiju
-sm.button.continue.label=Turpināt
-sm.button.continue.accesskey=C
-sm.askBeforSave.title=Sesiju pārvaldnieks – saglabāt sesiju
-sm.askBeforSave.msg0=Vai vēlaties saglabāt savu sesiju?
-sm.askBeforSave.msg2=Uz diska tiks saglabāti tikai ne-privātie logi
-sm.askBeforSave.msg1=Ja nesaglabāsiet, nākamreiz, palaižot pārlūku, \'Pēdējā sesija\' būs tukšs.
-sm.askBeforSave.button0.label=Saglabāt sesiju
-sm.askBeforSave.button0.accesskey=S
-sm.askBeforSave.button1.label=Nesaglabāt
-sm.askBeforSave.button1.accesskey=N
-sm.corrupted.title=Sesiju pārvaldnieks – bojāta datubāze
-sm.corrupted.msg0=Sesiju pārvaldnieks nevar ielādēt tā datubāzi no bojātā faila sesion.rdf.
-sm.corrupted.msg1=Fails session.rdf tiks dzēsts, kopija ir atrodama failā session.old jūsu profila mapē. Sesiju rezerves kopijas ir mapē <profils>/sessionbackups
-sm.areYouSure.msg=Vai tiešām vēlaties turpināt?
-sm.canChooseStartup.msg=Sarakstā varat izvēlēties sesiju, kura būt jūsu jaunā sākuma sesija:
-sm.addtoStartup.title=Sesiju pārvaldnieks – pievienot sākuma sesijai
-sm.addtoStartup.msg.windows=Jūs gatavojaties pievienot logu(s) savai sākuma sesijai:
-sm.addtoStartup.msg.tabs=Jūs gatavojaties pievienot cilni(es) savai sākuma sesijai:
-sm.addtoStartup.button0.label=Pievienot sesijai
-sm.addtoStartup.button0.accesskey=P
-sm.addtoStartup.button1.label=Nepievienot
-sm.addtoStartup.button1.accesskey=N
-sm.replaceStartup.title=Sesiju pārvaldnieks – aizstāt sākuma sesiju
-sm.replaceStartup.msg=Jūs gatavojaties aizvietot savu sākuma sesiju:
-sm.replaceStartup.button0.label=Aizvietot sesiju
-sm.replaceStartup.button0.accesskey=A
-sm.replaceStartup.button1.label=Neaizvietot
-sm.replaceStartup.button1.accesskey=V
-sm.removeStartup.title=Sesiju pārvaldnieks – dzēst sākuma sesiju
-sm.removeStartup.msg0=Jūs gatavojaties dzēst savu sākuma sesiju:
-sm.removeStartup.msg1=Izvēlieties savu jauno sākuma sesiju no saraksta:
-sm.removeStartup.button0.label=Dzēst
-sm.removeStartup.button0.accesskey=D
-sm.removeStartup.button1.label=Nedzēst
-sm.removeStartup.button1.accesskey=N
-sm.title=Sesiju pārvaldnieks
-sm.dontSaveBlank.msg=Sesiju pārvadnieks nesaglabā tukšus logus
-sm.sessoinSave.error=Kļūda sesiju pārvadniekā, sesija netika saglabāta
-sm.sessionName.title.rename=Sesiju pārvadnieks – pārdēvēt sesiju
-sm.sessionName.title.saveprevious=Sesiju pārvadnieks – saglabāt sesiju
-sm.sessionName.title.savethiswindow=Sesiju pārvadnieks – saglabāt šo logu
-sm.sessionName.title.saveallwindows=Sesiju pārvadnieks – saglabāt visus logus
-sm.sessionName.msg0=Ievadiet sesijas nosaukumu:
-sm.sessionName.msg1=Nosaukumā jābūt vismaz vienam burtam vai ciparam.
-sm.sessionName.msg2=Šis nosaukums jau tiek izmantots!
-sm.sessionName.msg3=Vai tiešām vēlaties aizvietot šo sesiju?
-sm.sessionName.button0.label=Pārdēvēt sesiju
-sm.sessionName.button0.accesskey=P
-sm.sessionName.button1.label=Nepārdēvēt
-sm.sessionName.button1.accesskey=D
-sm.session.empty=tukšs
-sm.session.tabs=C
-sm.session.windows=L
-sm.removeAll.title.session=Sesiju pārvaldnieks - dzēst visas saglabātās sesijas
-sm.removeAll.title.closedwindow=Sesiju pārvaldnieks - dzēst visus aizvērtos logus
-sm.removeAll.msg0=Vai tiešām vēlaties dzēst visas jūsu saglabātās sesijas?
-sm.removeAll.msg1=Ja izvēlēsieties \'Dzēst\', jūsu palaišanas sesija būs \'Pēdējā sesija\'.
-sm.removeAll.msg2=Vai tiešām vēlaties dzēst visus jūsu aizvērtos logus?
-sm.sessionMenu.last=Pēdējā sesija
-sm.sessionMenu.lastDefault=Pēdējā sesija - noklusējums
-sm.sessionMenu.lastgood=Pēdējā labā sesija
-sm.sessionMenu.previous=Priekšpēdējā
-sm.sessionMenu.crashed=Avarējusī sesija
-sm.afterCrash.title=Sesiju pārvaldnieks - atjaunot pēc avārijas
-sm.afterCrash.chkbox.label=Ieslēgt sesiju pārvaldnieku
-sm.afterCrash.msg0=Jūsu pēdējā sesija avarēja!
-sm.afterCrash.msg0.again=Jūsu pēdējā avarējusī sesija atkal avarēja!
-sm.afterCrash.msg1=Izvēlieties atjaunojamo sesiju no saraksta:
-sm.afterCrash.msg2=Izvēlieties, kā turpināt
-sm.afterCrash.msg3=Sesiju pārvaldnieks pašreiz ir atslēgts, ja to ieslēgsiet, sesiju pārvaldnieka izvēlnē varēsiet atjaunot avarējušas sesijas, aizvērtas sesijas, saglabātas sesijas, kā arī aizvērtus logus.
-sm.afterCrash.msg4=Avarējušo sesiju varat arī atjaunot vēlāk no sesiju pārvaldnieka izvēlnes.
-sm.afterCrash.msg5=bet nekas netika saglabāts.
-sm.afterCrash.msg6=bet jūsu avarējušajā sesijā nav atvērtu logu
-sm.afterCrash.msg7=No aizvērto logu saraksta izvēlieties logu, ko atjaunot
-sm.afterCrash.msg8=(aizvērtos logus varat atjaunot arī vēlāk no aizvērto logu izvēlnes)
-sm.afterCrash.msg9=Jūsu avarējusī sesija ir tukša!
-sm.afterCrash.msg10=Sesiju pārvaldnieks neatrada sesijas, no kurām atjaunot.
-sm.afterCrash.button0.label=Atjaunot sesiju
-sm.afterCrash.button0.accesskey=A
-sm.afterCrash.button0.crashed.label=Atjaunot avarējušo sesiju
-sm.afterCrash.button0.crashed.accesskey=A
-sm.afterCrash.button1.label=Neajaunot
-sm.afterCrash.button1.accesskey=N
-sm.start.title=Sesiju pārvaldnieks - atjaunot sesiju
-sm.start.chkbox.label=Ieslēgt pēcavārijas atjaunošanu
-sm.start.msg0=Jūsu palaišanas sesija ir tukša!
-sm.start.msg1=Pēcavārijas apkope pašreiz ir atslēgta; ja to ieslēgsiet, varēsiet atjaunot avarējušas sesijas.
-sm.start.msg2=Kļūda meklējot jūsu palaišanas sesiju, jūsu saglabātā palaišanas sesija neeksistē.
-sm.restoreError.msg0=Kļūda sesiju pārvaldnieka failā!
-sm.restoreError.msg1=Dzēst sesiju, ko mēģinājāt atjaunot
-sm.disable.msg=Firefox ir iebūvētā sesiju atjaunošanas iespēja.
-sm.disable.msg1=Vai vēlaties ieslēgt iebūvēto sesiju atjaunošanu un atslēgt Tab Mix Plus sesiju pārvaldnieku?
-sm.disable.msg2=Vai vēlaties ieslēgt Tab Mix Plus sesiju pārvaldnieku un atslēgt iebūvēto sesiju atjaunošanu?
-sm.extension.convert.msg1=Vai vēlaties pārveidot savu sesiju datus no Tab Mix Plus formātu uz Session Manager paplašinājuma formātu?
-sm.extension.convert.msg2=Varat izdarīt to vēlāk no Tab Mix Plus sesiju opciju loga.
-sm.extension.convert.nosessions=Šajā failā nav sesiju.
-sm.extension.convert.alreadyconverted=Šis sesiju fails jau ir pārveidots Session Manager paplašinājuma formātā.
-sm.extension.convert.doitagain=Vai vēlaties to pārveidot vēlreiz?
-sm.extension.convert.unable=Neizdevās pārveidot no session.rdf
-sm.extension.convert.many=sesijas pārveidotas, vai kādu no tām vēlaties dzēst?
-sm.extension.convert.one=viena sesija pārveidota, vai vēlaties to dzēst?
-sm.extension.convert.rename=Sesijas varēsiet pārdēvēt vēlāk no sesiju pārvaldnieka izvēlnes
-sm.extension.convert.selectfile=Izvēlieties pārveidojamo session.rdf failu
-sm.extension.convert.rdffiles=RDF faili
-sm.extension.convert.sessionfiles=Sesiju faili
-sm.tabview.hiddengroups=Vairāk ciļņu atjaunots slēptajās grupās.
diff --git a/chrome/locale/lv-LV/tabmix.dtd b/chrome/locale/lv-LV/tabmix.dtd
deleted file mode 100644
index da2deab..0000000
--- a/chrome/locale/lv-LV/tabmix.dtd
+++ /dev/null
@@ -1,131 +0,0 @@
-<!ENTITY closedtabsbtn.label "Aizvērtās cilnes">
-<!ENTITY closedtabsbtn.tooltip "Parādīt aizvērto ciļņu sarakstu">
-<!ENTITY sessionbtn.tooltip "Parādīt un pārvaldīt jūsu sesijas">
-<!ENTITY tabslistbtn.label "Atvērtās cilnes">
-<!ENTITY tabslistbtn.tooltip "Parādīt atvērto ciļņu sarakstu">
-<!ENTITY closedwindowsbtn.label "Aizvērtie logi">
-<!ENTITY closedwindowsbtn.tooltip "Parādīt aizvērto logu sarakstu">
-<!ENTITY page.header.title "Tab Mix Plus opcijas">
-<!ENTITY options.main.sessionbutton.label "Tab Mix Plus sesiju pārvaldnieks">
-<!ENTITY session.Tools "Sesiju pārvaldnieks">
-<!ENTITY closedWin.label "Aizvērto logu saraksts">
-<!ENTITY duplicateTabMenu.label "Dublicēt cilni">
-<!ENTITY duplicateTabMenu.accesskey "D">
-<!ENTITY duplicateinWin.label "Dublicēt uz jaunu logu">
-<!ENTITY duplicateinWin.accesskey "L">
-<!ENTITY detachTab.label "Pārvietot uz jaunu logu">
-<!ENTITY detachTab.accesskey "P">
-<!ENTITY mergeContext.label "Apvienot logus">
-<!ENTITY mergeContext.accesskey "A">
-<!ENTITY renametab.label "Pārdēvēt cilni">
-<!ENTITY renametab.accesskey "C">
-<!ENTITY copytaburl.label "Kopēt cilnes URL">
-<!ENTITY copytaburl.accesskey "O">
-<!ENTITY reloadother.label "Pārlādēt citas cilnes">
-<!ENTITY reloadother.accesskey "R">
-<!ENTITY reloadleft.label "Pārlādēt kreisās cilnes">
-<!ENTITY reloadleft.accesskey "K">
-<!ENTITY reloadright.label "Pārlādēt labās cilnes">
-<!ENTITY reloadright.accesskey "L">
-<!ENTITY autoReloadTab.label "Pārlādēt cilni katras">
-<!ENTITY autoReloadTab.accesskey "P">
-<!ENTITY autoReloadSite.label "Pārlādēt šo vietni katras">
-<!ENTITY autoReloadSite.accesskey "V">
-<!ENTITY afterthis.label "Pēc šīs cilnes">
-<!ENTITY bookmarktab.label "Pievienot šo cilni grāmatzīmēm">
-<!ENTITY undoCloseListMenu.label "Aizvērto ciļņu saraksts">
-<!ENTITY undoCloseListMenu.accesskey "S">
-<!ENTITY closeAllTabsMenu.label "Aizvērt visas cilnes">
-<!ENTITY closeall.accesskey "Z">
-<!ENTITY closeSimilarTab.label "Aizvērt līdzīgās cilnes">
-<!ENTITY closeSimilarTab.accesskey "L">
-<!ENTITY closeTabsToLeft.label "Aizvērt cilnes pa kreisi">
-<!ENTITY closeleft.accesskey "K">
-<!ENTITY closeTabstoRight.label "Aizvērt cilnes pa labi">
-<!ENTITY closeright.accesskey "L">
-<!ENTITY docShellMenu.label "Atļaujas">
-<!ENTITY docShellMenu.accesskey "J">
-<!ENTITY freezeTabMenu.label "Sasaldēt cilni">
-<!ENTITY freezeTabMenu.accesskey "S">
-<!ENTITY protectTabMenu.label "Aizsargāt cilni">
-<!ENTITY protectTabMenu.tooltip "Aizsargāt cilnes no aizvēršanas">
-<!ENTITY protectTabMenu.accesskey "Z">
-<!ENTITY lockTabMenu.label "Noslēgt cilni">
-<!ENTITY lockTabMenu.tooltip "Visas saites atvērt jaunā cilnē">
-<!ENTITY lockTabMenu.accesskey "K">
-<!ENTITY bookmarktabs.label "Pievienot grāmatzīmēm visas cilnes">
-<!ENTITY linkhere.label "Atvērt saiti šajā cilnē">
-<!ENTITY linkhere.accesskey "T">
-<!ENTITY linkBackgroundTab.label "Atvērt saiti fona cilnē">
-<!ENTITY linkForegroundTab.label "Atvērt saiti priekšplāna cilnē">
-<!ENTITY linkBackgroundTab.accesskey "F">
-<!ENTITY linkForegroundTab.accesskey "P">
-<!ENTITY openalllinks.label "Atvērt saites jaunās cilnēs">
-<!ENTITY openalllinks.accesskey "J">
-<!ENTITY linkwithhistory.label "Atvērt saiti dublicētā cilnē">
-<!ENTITY linkwithhistory.accesskey "D">
-<!ENTITY tabsList.label "Atvērto ciļņu saraksts">
-<!ENTITY tabsList.accesskey "K">
-<!ENTITY allowImage.label "Attēls">
-<!ENTITY allowJavascript.label "JavaScript">
-<!ENTITY allowRedirect.label "Pārvirzīt">
-<!ENTITY allowPlugin.label "Spraudnis">
-<!ENTITY allowFrame.label "Rāmis">
-<!ENTITY restoreincurrent.label "Atjaunot uz pašreizējo cilni">
-<!ENTITY restoreincurrent.accesskey "T">
-<!ENTITY restoreinwin.label "Atjaunot uz jaunu logu">
-<!ENTITY restoreinwin.accesskey "L">
-<!ENTITY restoreintab.label "Atjaunot uz jaunu cilni">
-<!ENTITY restoreintab.accesskey "U">
-<!ENTITY restoretab.label "Atjaunot cilni">
-<!ENTITY restoretab.accesskey "N">
-<!ENTITY bookmark.label "Pievienot grāmatzīmēm šo saiti">
-<!ENTITY bookmark.accesskey "G">
-<!ENTITY deletelist.label "Dzēst no saraksta">
-<!ENTITY deletelist.accesskey "D">
-<!ENTITY settings.label "Iestatījumi">
-<!ENTITY saveWindow.label "Saglabāt šo logu">
-<!ENTITY saveAllWindows.label "Saglabāt visus logus">
-<!ENTITY sm.context.overwrite "Atjaunot, pārrakstīt esošos logus">
-<!ENTITY sm.context.overwrite.key "P">
-<!ENTITY sm.context.restore.new "Atjaunot uz jaunu logu">
-<!ENTITY sm.context.restore.newkey "J">
-<!ENTITY sm.context.replacethis "Aizvietot ar šo logu">
-<!ENTITY sm.context.replacethis.key "A">
-<!ENTITY sm.context.replaceall "Aizvietot ar visiem logiem">
-<!ENTITY sm.context.replaceall.key "V">
-<!ENTITY sm.context.add "Pievienot šo logu">
-<!ENTITY sm.context.add.key "L">
-<!ENTITY sm.context.addall "Pievienot visus logus">
-<!ENTITY sm.context.addall.key "I">
-<!ENTITY sm.context.save "Saglabāt">
-<!ENTITY sm.context.save.key "S">
-<!ENTITY sm.context.rename "Pārdēvēt">
-<!ENTITY sm.context.rename.key "P">
-<!ENTITY sm.context.delete "Dzēst">
-<!ENTITY sm.context.delete.key "D">
-<!ENTITY sm.context.deleteall "Dzēst visu">
-<!ENTITY sm.context.deleteall.key "V">
-<!ENTITY sm.context.startup "Iestatīt kā palaišanas sesiju">
-<!ENTITY sm.context.startup.key "P">
-<!ENTITY sm.context.details "Rādīt skaitītājus, datumu un laiku sesiju izvēlnē">
-<!ENTITY sm.context.details.key "S">
-<!ENTITY tab.key "C">
-<!ENTITY window.key "L">
-<!ENTITY merge.key "A">
-<!ENTITY sortedTabs.label "Sakārtotās cilnes">
-<!ENTITY sortedTabs.tooltip "Atzīmējiet, lai sarakstu rādītu alfabētiski sakārtotu">
-<!ENTITY enable.label "Ieslēgt">
-<!ENTITY custom.label "Pielāgots">
-<!ENTITY enableTabs.label "Ieslēgt visas cilnes">
-<!ENTITY disableTabs.label "Atslēgt visas cilnes">
-<!ENTITY seconds.label "sekundes">
-<!ENTITY minutes.label "minūtes">
-<!ENTITY minute.label "minūte">
-<!ENTITY hideTabBar.label "Paslēpt ciļņu joslu">
-<!ENTITY hideTabBar.never.label "Nekad">
-<!ENTITY hideTabBar.never.key "N">
-<!ENTITY hideTabBar.onOneTab.label "Kad atvērta tikai viena cilne">
-<!ENTITY hideTabBar.onOneTab.key "E">
-<!ENTITY hideTabBar.always.label "Vienmēr">
-<!ENTITY hideTabBar.always.key "V">
diff --git a/chrome/locale/lv-LV/tabmix.properties b/chrome/locale/lv-LV/tabmix.properties
deleted file mode 100644
index 20ecf61..0000000
--- a/chrome/locale/lv-LV/tabmix.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-extensions.{dc572301-7619-498c-a57d-39143191b318}.description=Uzlabota pārlūkošana ar cilnēm
-tmp.merge.warning.title=Aizver logus ar neapvienotajām cilnēm
-tmp.merge.warning.message=Izvēlētās cilnes tiks apvienotas ar citu logu, bet citas cilnes tagad tiks aizvērtas līdz ar pašreizējo logu.
-tmp.merge.warning.checkboxLabel=Vienmēr brīdināt mani, kad aizver logu ar cilnēm, kas netiek apvienotas.
-tmp.merge.error=Jābūt atvērtiem vismaz diviem logiem, pirms varat tos apvienot
-tmp.merge.private=Jūs nevarat apvienot privāto ar ne-privāto logu.
-tmp.importPref.error1=Nevar importēt, jo tas nav derīgs fails.
-tmp.importPref.error2=Iestatījumus neizdevās importēt.
-tmp.sessionempty=Nākamreiz, kad palaidīsiet pārlūku, \'Iepriekšējā sesija\' būs tukša.
-droptoclose.label=Nometiet cilni, lai to aizvērtu
-droplink.label=Nometiet centrā, lai cilni aizvietotu, vai sānos, lai izveidotu jaunu cilni
-flstOn.label=Cilnes fokuss uz pēdējo izvēlēto - nospiediet F9, lai apmainītu iestatījumu
-flstOff.label=Cilnes fokuss pa labi - nospiediet F9, lai apmainītu iestatījumu
-slideshowOn.label=Ciļņu rotācija ir ieslēgta - nospiediet F8, lai izslēgtu
-slideshowOff.label=Ciļņu rotācija ir izslēgta - nospiediet F8, lai ieslēgtu
-undoclosetab.clear.label=Notīrīt aizvērto ciļņu sarakstu
-undoclosetab.clear.accesskey=C
-undoClosedWindows.clear.label=Notīrīt aizvērto logu sarakstu
-undoClosedWindows.clear.accesskey=C
-protectedtabs.closeWarning.1=Jūs gatavojaties aizvērt %S aizsargātu cilni. Vai tiešām vēlaties turpināt?
-protectedtabs.closeWarning.2=Jūs gatavojaties aizvērt %S aizsargātas cilnes. Vai tiešām vēlaties turpināt?
-protectedtabs.closeWarning.3=Jūs gatavojaties aizvērt %S cilnes, %S no tām aizsargātas. Vai tiešām vēlaties turpināt?
-protectedtabs.closeWarning.4=Brīdināt mani, kad mēģinu aizvērtu logu ar aizsargātām cilnēm
-window.closeWarning.1=Brīdināt mani, kad mēģinu aizvērtu logu ar vairākām cilnēm
-closeWindow.label=Aizvērt logu
-confirm_autoreloadPostData_title=Brīdinājums!
-confirm_autoreloadPostData=Vietne, kurā mēģinājāt ieslēgt automātisko pārlādēšanu, satur POSTDATA.\nJa ieslēgsiet automātisko pārlādēšanu, jebkāda darbība, ko ievades forma izpilda (piem., tiešsaistes pirkums), tiks atkārtota.\n\nVai tiešām vēlaties ieslēgt automātisko pārlādēšanu?
-incompatible.title=Tab Mix Plus
-incompatible.msg0=Sekojošie paplašinājumu ir iekļauti Tab Mix Plus vai nav ar to saderīgi.
-incompatible.msg1=Vai vēlaties atslēgt šos paplašinājumus?
-incompatible.msg2=Nesaderīgie paplašinājumi tiks atslēgti pēc tam, kad pārstartēsiet savu pārlūku.
-incompatible.button0.label=Atslēgt
-incompatible.button0.accesskey=A
-incompatible.button1.label=Neatslēgt
-incompatible.button1.accesskey=N
-incompatible.button2.label=Atslēgt un pārstartēt
-incompatible.button2.accesskey=T
-incompatible.chkbox.label=Parādīt šo brīdinājumu, palaižot pārlūku
-tabmixoption.error.title=Tab Mix Plus kļūda
-tabmixoption.error.msg=Lai lietotu Tab Mix Plus opcijas, jābūt vienam pārlūka logam
diff --git a/install.rdf b/install.rdf
index 2d6255b..6346dc7 100644
--- a/install.rdf
+++ b/install.rdf
@@ -5,8 +5,8 @@
   <RDF:Description RDF:about="urn:mozilla:install-manifest"
                    NS1:id="{dc572301-7619-498c-a57d-39143191b318}"
                    NS1:name="Tab Mix Plus"
-                   NS1:version="0.4.1.6pre.141229a1"
-                   NS1:type="2"
+                   NS1:version="0.4.1.6"
+                   NS1:type="2"
                    NS1:multiprocessCompatible="true"
                    NS1:description="Tab browsing with an added boost."
                    NS1:iconURL="chrome://tabmixplus/skin/tmp.png"
@@ -15,15 +15,15 @@
                    NS1:aboutURL="chrome://tabmixplus/content/about.xul"
                    NS1:creator="ONEMEN (tabmix.onemen at gmail.com)"
                    NS1:developer="ONEMEN">
-    <NS1:targetApplication RDF:resource="rdf:#$n83In3"/>
-    <NS1:targetApplication RDF:resource="rdf:#$n74Pm2"/>
-  </RDF:Description>
-  <RDF:Description RDF:about="rdf:#$n83In3"
-                   NS1:id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
-                   NS1:minVersion="17.0"
-                   NS1:maxVersion="37.0a1" />
-  <RDF:Description RDF:about="rdf:#$n74Pm2"
-                   NS1:id="{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}"
-                   NS1:minVersion="25.0"
-                   NS1:maxVersion="25.*" />
-</RDF:RDF>
+    <NS1:targetApplication RDF:resource="rdf:#$n83In3"/>
+    <NS1:targetApplication RDF:resource="rdf:#$n74Pm2"/>
+  </RDF:Description>
+  <RDF:Description RDF:about="rdf:#$n83In3"
+                   NS1:id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
+                   NS1:minVersion="17.0"
+                   NS1:maxVersion="35.*" />
+  <RDF:Description RDF:about="rdf:#$n74Pm2"
+                   NS1:id="{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}"
+                   NS1:minVersion="25.0"
+                   NS1:maxVersion="25.*" />
+</RDF:RDF>
diff --git a/test.manifest b/test.manifest
deleted file mode 100644
index e69de29..0000000

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/tabmixplus.git



More information about the Pkg-mozext-commits mailing list