[Pkg-mozext-commits] [personasplus] 50/76: Localisation Support

David Prévot taffit at moszumanska.debian.org
Fri Aug 4 21:45:07 UTC 2017


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

taffit pushed a commit to branch master
in repository personasplus.

commit 7f8c9ad9c75d53d0354f92f4b4888f37c28105b8
Author: Baris Derin <baris at barisderin.com>
Date:   Thu Sep 22 09:39:44 2016 +0300

    Localisation Support
    
    This adds localisation strings for background image size restriction
    warning prompt and shutdown theme removal warning prompt.
---
 extension/bootstrap.js                         | 3 ++-
 extension/content/customPersonaEditor.js       | 4 +++-
 extension/locale/ar/personas.properties        | 6 ++++++
 extension/locale/ast-ES/personas.properties    | 6 ++++++
 extension/locale/bg-BG/personas.properties     | 6 ++++++
 extension/locale/cs-CZ/personas.properties     | 6 ++++++
 extension/locale/da/personas.properties        | 6 ++++++
 extension/locale/de-DE/personas.properties     | 6 ++++++
 extension/locale/de/personas.properties        | 6 ++++++
 extension/locale/el-GR/personas.properties     | 6 ++++++
 extension/locale/el/personas.properties        | 6 ++++++
 extension/locale/en-US/personas.properties     | 6 ++++++
 extension/locale/es-AR/personas.properties     | 6 ++++++
 extension/locale/es-CL/personas.properties     | 6 ++++++
 extension/locale/es-ES/personas.properties     | 6 ++++++
 extension/locale/es-MX/personas.properties     | 6 ++++++
 extension/locale/eu-ES/personas.properties     | 6 ++++++
 extension/locale/eu/personas.properties        | 6 ++++++
 extension/locale/fi-FI/personas.properties     | 6 ++++++
 extension/locale/fi/personas.properties        | 6 ++++++
 extension/locale/fr/personas.properties        | 6 ++++++
 extension/locale/fy-NL/personas.properties     | 6 ++++++
 extension/locale/ga-IE/personas.properties     | 6 ++++++
 extension/locale/gl-ES/personas.properties     | 6 ++++++
 extension/locale/he-IL/personas.properties     | 6 ++++++
 extension/locale/hu-HU/personas.properties     | 6 ++++++
 extension/locale/it/personas.properties        | 6 ++++++
 extension/locale/ja-JP-mac/personas.properties | 6 ++++++
 extension/locale/ja-JP/personas.properties     | 6 ++++++
 extension/locale/ja/personas.properties        | 6 ++++++
 extension/locale/ko-KR/personas.properties     | 6 ++++++
 extension/locale/lt-LT/personas.properties     | 6 ++++++
 extension/locale/lt/personas.properties        | 6 ++++++
 extension/locale/mk-MK/personas.properties     | 6 ++++++
 extension/locale/nl/personas.properties        | 6 ++++++
 extension/locale/pl-PL/personas.properties     | 6 ++++++
 extension/locale/pl/personas.properties        | 6 ++++++
 extension/locale/pt-BR/personas.properties     | 6 ++++++
 extension/locale/pt-PT/personas.properties     | 6 ++++++
 extension/locale/ro/personas.properties        | 6 ++++++
 extension/locale/ru-RU/personas.properties     | 6 ++++++
 extension/locale/si-LK/personas.properties     | 6 ++++++
 extension/locale/sk-SK/personas.properties     | 6 ++++++
 extension/locale/sl-SI/personas.properties     | 6 ++++++
 extension/locale/sr-RS/personas.properties     | 6 ++++++
 extension/locale/sr/personas.properties        | 6 ++++++
 extension/locale/sv-SE/personas.properties     | 6 ++++++
 extension/locale/tr/personas.properties        | 6 ++++++
 extension/locale/uk-UA/personas.properties     | 6 ++++++
 extension/locale/vi-VN/personas.properties     | 6 ++++++
 extension/locale/vi/personas.properties        | 6 ++++++
 extension/locale/zh-CN/personas.properties     | 6 ++++++
 extension/locale/zh-TW/personas.properties     | 6 ++++++
 53 files changed, 311 insertions(+), 2 deletions(-)

diff --git a/extension/bootstrap.js b/extension/bootstrap.js
index fefa5bf..8d194a4 100644
--- a/extension/bootstrap.js
+++ b/extension/bootstrap.js
@@ -66,6 +66,7 @@ var PersonasPlusBootstrapAddon = {
         // When the application is shutting down we normally don't have to clean
         // up any UI changes made
         if (reason == APP_SHUTDOWN) return;
+        var shutdownPromptSentence = this.STRINGS["personas.properties"].GetStringFromName("shutdownPromptSentence");
         this.removeDefaultLocalizations();
         this.tearBrowserUI();
         this.removeWindowListener();
@@ -78,7 +79,7 @@ var PersonasPlusBootstrapAddon = {
             if (LightweightThemeManager.currentTheme) {
                 if (LightweightThemeManager.currentTheme.id != "15131") {
                     var prompt = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService);
-                    if (prompt.confirm(null, "Personas Plus", "Would you like to remove the current theme?")) {
+                    if (prompt.confirm(null, "Personas Plus", shutdownPromptSentence)) {
                         try {
                             LightweightThemeManager.forgetUsedTheme(LightweightThemeManager.currentTheme.id);
                         } catch (e) {
diff --git a/extension/content/customPersonaEditor.js b/extension/content/customPersonaEditor.js
index 2a02ae6..74e8ec3 100644
--- a/extension/content/customPersonaEditor.js
+++ b/extension/content/customPersonaEditor.js
@@ -211,6 +211,8 @@ var CustomPersonaEditor = {
     let button = event.target;
     let control = button.previousSibling;
     let property = control.id;
+    let restrictionPromptFirstSentence = this._strings.get("restrictionPromptFirstSentence");
+    let restrictionPromptSecondSentence = this._strings.get("restrictionPromptSecondSentence");    
 
     let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);
     fp.appendFilter("Images", "*.png; *.jpg; *.jpeg");
@@ -225,7 +227,7 @@ var CustomPersonaEditor = {
       img.onload = function() {
           if (img.naturalWidth !== 3000 || img.naturalHeight !== 200) {
               var prompt = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService);
-              if (prompt.confirm(null, "Personas Plus", "Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.\n\nWould you like to read more about how to create your own background theme?")) {
+              if (prompt.confirm(null, "Personas Plus", restrictionPromptFirstSentence + "\n\n" + restrictionPromptSecondSentence)) {
                   window.open("https://developer.mozilla.org/en-US/Add-ons/Themes/Background", '_blank');
               }
           } else {
diff --git a/extension/locale/ar/personas.properties b/extension/locale/ar/personas.properties
index 880a9ec..ea5ef11 100644
--- a/extension/locale/ar/personas.properties
+++ b/extension/locale/ar/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ast-ES/personas.properties b/extension/locale/ast-ES/personas.properties
index 2c379c1..1fd9e52 100644
--- a/extension/locale/ast-ES/personas.properties
+++ b/extension/locale/ast-ES/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/bg-BG/personas.properties b/extension/locale/bg-BG/personas.properties
index 38ff649..7d80a4a 100644
--- a/extension/locale/bg-BG/personas.properties
+++ b/extension/locale/bg-BG/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/cs-CZ/personas.properties b/extension/locale/cs-CZ/personas.properties
index 674ee41..bc8c4ff 100644
--- a/extension/locale/cs-CZ/personas.properties
+++ b/extension/locale/cs-CZ/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/da/personas.properties b/extension/locale/da/personas.properties
index cf486e0..c788aea 100644
--- a/extension/locale/da/personas.properties
+++ b/extension/locale/da/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Baggrundstemaer understøttes i øjeblikket ikke i private browsing-
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/de-DE/personas.properties b/extension/locale/de-DE/personas.properties
index f21502b..445d8a1 100644
--- a/extension/locale/de-DE/personas.properties
+++ b/extension/locale/de-DE/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/de/personas.properties b/extension/locale/de/personas.properties
index f788d34..f3ed368 100644
--- a/extension/locale/de/personas.properties
+++ b/extension/locale/de/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/el-GR/personas.properties b/extension/locale/el-GR/personas.properties
index 8204c5f..bce4fda 100644
--- a/extension/locale/el-GR/personas.properties
+++ b/extension/locale/el-GR/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/el/personas.properties b/extension/locale/el/personas.properties
index 2f2c6c6..78e19ae 100644
--- a/extension/locale/el/personas.properties
+++ b/extension/locale/el/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/en-US/personas.properties b/extension/locale/en-US/personas.properties
index 2c379c1..1fd9e52 100644
--- a/extension/locale/en-US/personas.properties
+++ b/extension/locale/en-US/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/es-AR/personas.properties b/extension/locale/es-AR/personas.properties
index f3de633..87fff1b 100644
--- a/extension/locale/es-AR/personas.properties
+++ b/extension/locale/es-AR/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Los temas de fondo no funcionan en ventanas de navegación privada
 pbm.button.label=Aceptar
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=A
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/es-CL/personas.properties b/extension/locale/es-CL/personas.properties
index 8010649..2c7873c 100644
--- a/extension/locale/es-CL/personas.properties
+++ b/extension/locale/es-CL/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/es-ES/personas.properties b/extension/locale/es-ES/personas.properties
index cbf655e..88abe79 100644
--- a/extension/locale/es-ES/personas.properties
+++ b/extension/locale/es-ES/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Los temas de fondo no están soportados las ventanas de navegación
 pbm.button.label=Aceptar
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=Aceptar
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/es-MX/personas.properties b/extension/locale/es-MX/personas.properties
index 3acb36e..5ec4541 100644
--- a/extension/locale/es-MX/personas.properties
+++ b/extension/locale/es-MX/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Los temas de fondo no se admiten actualmente en las ventanas de nave
 pbm.button.label=Aceptar
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=A
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/eu-ES/personas.properties b/extension/locale/eu-ES/personas.properties
index d35750b..612fa8b 100644
--- a/extension/locale/eu-ES/personas.properties
+++ b/extension/locale/eu-ES/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/eu/personas.properties b/extension/locale/eu/personas.properties
index a56062b..c4c9587 100644
--- a/extension/locale/eu/personas.properties
+++ b/extension/locale/eu/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/fi-FI/personas.properties b/extension/locale/fi-FI/personas.properties
index 634f0f7..aa5d9f4 100644
--- a/extension/locale/fi-FI/personas.properties
+++ b/extension/locale/fi-FI/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/fi/personas.properties b/extension/locale/fi/personas.properties
index 03da007..630c76b 100644
--- a/extension/locale/fi/personas.properties
+++ b/extension/locale/fi/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/fr/personas.properties b/extension/locale/fr/personas.properties
index 41d837d..3741f0c 100644
--- a/extension/locale/fr/personas.properties
+++ b/extension/locale/fr/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Les thèmes d'arrière-plan ne sont actuellement pas pris en charge
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=O
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/fy-NL/personas.properties b/extension/locale/fy-NL/personas.properties
index f2b3df3..64eeb83 100644
--- a/extension/locale/fy-NL/personas.properties
+++ b/extension/locale/fy-NL/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ga-IE/personas.properties b/extension/locale/ga-IE/personas.properties
index 6677c7c..a11ac85 100644
--- a/extension/locale/ga-IE/personas.properties
+++ b/extension/locale/ga-IE/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/gl-ES/personas.properties b/extension/locale/gl-ES/personas.properties
index 474f14f..1062f93 100644
--- a/extension/locale/gl-ES/personas.properties
+++ b/extension/locale/gl-ES/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Os temas de fondo non son compatibles actualmente coas xanelas de na
 pbm.button.label=Aceptar
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=Aceptar
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/he-IL/personas.properties b/extension/locale/he-IL/personas.properties
index 41424db..1ad6317 100644
--- a/extension/locale/he-IL/personas.properties
+++ b/extension/locale/he-IL/personas.properties
@@ -74,3 +74,9 @@ pbm.message=ערכות נושא הרקע אינן נתמכות כרגע בחלו
 pbm.button.label=אישור
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=אישור
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/hu-HU/personas.properties b/extension/locale/hu-HU/personas.properties
index b0a7308..7591a9f 100644
--- a/extension/locale/hu-HU/personas.properties
+++ b/extension/locale/hu-HU/personas.properties
@@ -74,3 +74,9 @@ pbm.message=A háttértémák jelenleg nincsenek támogatva privátböngésző a
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/it/personas.properties b/extension/locale/it/personas.properties
index bc444b6..b5af666 100644
--- a/extension/locale/it/personas.properties
+++ b/extension/locale/it/personas.properties
@@ -74,3 +74,9 @@ pbm.message=L'utilizzo dei temi durante la Navigazione anonima non è supportato
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=O
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ja-JP-mac/personas.properties b/extension/locale/ja-JP-mac/personas.properties
index 5d32c50..ac838b8 100644
--- a/extension/locale/ja-JP-mac/personas.properties
+++ b/extension/locale/ja-JP-mac/personas.properties
@@ -74,3 +74,9 @@ pbm.message=プライベートブラウジングウインドウでは背景テ
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=K
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ja-JP/personas.properties b/extension/locale/ja-JP/personas.properties
index bacd039..a35c5b3 100644
--- a/extension/locale/ja-JP/personas.properties
+++ b/extension/locale/ja-JP/personas.properties
@@ -74,3 +74,9 @@ pbm.message=背景のテーマはプライベートウィンドウではサポ
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ja/personas.properties b/extension/locale/ja/personas.properties
index d0d87be..dbc922f 100644
--- a/extension/locale/ja/personas.properties
+++ b/extension/locale/ja/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ko-KR/personas.properties b/extension/locale/ko-KR/personas.properties
index 6b5980d..604cc54 100644
--- a/extension/locale/ko-KR/personas.properties
+++ b/extension/locale/ko-KR/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/lt-LT/personas.properties b/extension/locale/lt-LT/personas.properties
index ccac62c..362ac7f 100644
--- a/extension/locale/lt-LT/personas.properties
+++ b/extension/locale/lt-LT/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/lt/personas.properties b/extension/locale/lt/personas.properties
index ab16499..6437fde 100644
--- a/extension/locale/lt/personas.properties
+++ b/extension/locale/lt/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/mk-MK/personas.properties b/extension/locale/mk-MK/personas.properties
index b561444..2e40725 100644
--- a/extension/locale/mk-MK/personas.properties
+++ b/extension/locale/mk-MK/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/nl/personas.properties b/extension/locale/nl/personas.properties
index 91060cd..b8d7583 100644
--- a/extension/locale/nl/personas.properties
+++ b/extension/locale/nl/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Achtergrondthema’s in privénavigatievensters worden momenteel ni
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/pl-PL/personas.properties b/extension/locale/pl-PL/personas.properties
index 8e5986c..6ec91d7 100644
--- a/extension/locale/pl-PL/personas.properties
+++ b/extension/locale/pl-PL/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/pl/personas.properties b/extension/locale/pl/personas.properties
index b744e46..1bb591d 100644
--- a/extension/locale/pl/personas.properties
+++ b/extension/locale/pl/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Minimotywy nie działają w oknach trybu prywatnego
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/pt-BR/personas.properties b/extension/locale/pt-BR/personas.properties
index e37bf20..259e034 100644
--- a/extension/locale/pt-BR/personas.properties
+++ b/extension/locale/pt-BR/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Temas de fundo não são suportados em janelas de navegação privat
 pbm.button.label=OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/pt-PT/personas.properties b/extension/locale/pt-PT/personas.properties
index 4afd60d..9814dc1 100644
--- a/extension/locale/pt-PT/personas.properties
+++ b/extension/locale/pt-PT/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ro/personas.properties b/extension/locale/ro/personas.properties
index 1f39fbd..c0df98a 100644
--- a/extension/locale/ro/personas.properties
+++ b/extension/locale/ro/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Temele de fundal nu sunt acceptate în prezent în modul de navigare
 pbm.button.label=Accept
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=A
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/ru-RU/personas.properties b/extension/locale/ru-RU/personas.properties
index 7be6c58..5a3791b 100644
--- a/extension/locale/ru-RU/personas.properties
+++ b/extension/locale/ru-RU/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/si-LK/personas.properties b/extension/locale/si-LK/personas.properties
index e287ef7..e81f543 100644
--- a/extension/locale/si-LK/personas.properties
+++ b/extension/locale/si-LK/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/sk-SK/personas.properties b/extension/locale/sk-SK/personas.properties
index a2d9f74..c8f99f6 100644
--- a/extension/locale/sk-SK/personas.properties
+++ b/extension/locale/sk-SK/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/sl-SI/personas.properties b/extension/locale/sl-SI/personas.properties
index 711d5b2..d4de44e 100644
--- a/extension/locale/sl-SI/personas.properties
+++ b/extension/locale/sl-SI/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Teme v ozadju trenutno niso podprte v oknih zasebnega brskanja
 pbm.button.label=V redu
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=V redu
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/sr-RS/personas.properties b/extension/locale/sr-RS/personas.properties
index 6a7daa2..aa44c99 100644
--- a/extension/locale/sr-RS/personas.properties
+++ b/extension/locale/sr-RS/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/sr/personas.properties b/extension/locale/sr/personas.properties
index 4405183..b15fc61 100644
--- a/extension/locale/sr/personas.properties
+++ b/extension/locale/sr/personas.properties
@@ -74,3 +74,9 @@ pbm.message=Теме у позадини тренутно нису подржа
 pbm.button.label=У реду
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=У реду
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/sv-SE/personas.properties b/extension/locale/sv-SE/personas.properties
index 6bf7dbd..7e6cbc1 100644
--- a/extension/locale/sv-SE/personas.properties
+++ b/extension/locale/sv-SE/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/tr/personas.properties b/extension/locale/tr/personas.properties
index 784215c..6dbec06 100644
--- a/extension/locale/tr/personas.properties
+++ b/extension/locale/tr/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/uk-UA/personas.properties b/extension/locale/uk-UA/personas.properties
index fd62b34..015724e 100644
--- a/extension/locale/uk-UA/personas.properties
+++ b/extension/locale/uk-UA/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/vi-VN/personas.properties b/extension/locale/vi-VN/personas.properties
index 8df2160..e4c276e 100644
--- a/extension/locale/vi-VN/personas.properties
+++ b/extension/locale/vi-VN/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/vi/personas.properties b/extension/locale/vi/personas.properties
index adc0314..bbf5a34 100644
--- a/extension/locale/vi/personas.properties
+++ b/extension/locale/vi/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/zh-CN/personas.properties b/extension/locale/zh-CN/personas.properties
index d0e15fc..272d1c4 100644
--- a/extension/locale/zh-CN/personas.properties
+++ b/extension/locale/zh-CN/personas.properties
@@ -74,3 +74,9 @@ pbm.message=隐私浏览器窗口目前不支持背景主题
 pbm.button.label=确定
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey=确定
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?
diff --git a/extension/locale/zh-TW/personas.properties b/extension/locale/zh-TW/personas.properties
index 53c329b..cbb3981 100644
--- a/extension/locale/zh-TW/personas.properties
+++ b/extension/locale/zh-TW/personas.properties
@@ -74,3 +74,9 @@ pbm.message= Background themes are not currently supported in private browsing w
 pbm.button.label= OK
 # The accept button's access key for the private browsing notification
 pbm.button.accesskey= OK
+# Custom theme image size restriction prompt dialog first sentence
+restrictionPromptFirstSentence= Image must be 3000 pixels wide and 200 pixels tall. This image does not meet required specifications.
+# Custom theme image size restriction prompt dialog second sentence
+restrictionPromptSecondSentence= Would you like to read more about how to create your own background theme?
+# Shutdown theme removal prompt dialog sentence
+shutdownPromptSentence= Would you like to remove the current theme?

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



More information about the Pkg-mozext-commits mailing list