diff --git a/kitsune/sumo/jinja2/includes/common_macros.html b/kitsune/sumo/jinja2/includes/common_macros.html
index 7076b8faf..d98594d38 100644
--- a/kitsune/sumo/jinja2/includes/common_macros.html
+++ b/kitsune/sumo/jinja2/includes/common_macros.html
@@ -178,7 +178,7 @@
{% endif %}
{% endmacro %}
diff --git a/kitsune/users/models.py b/kitsune/users/models.py
index 15086d95d..b0a41bf82 100644
--- a/kitsune/users/models.py
+++ b/kitsune/users/models.py
@@ -27,7 +27,7 @@ class ContributionAreas(models.TextChoices):
L10N = "l10n-contributors", _lazy("L10n Contributors")
FORUM = "forum-contributors", _lazy("Forum Contributors")
SOCIAL = "social-contributors", _lazy("Social media Contributors")
- PLAYSTORE = "playstore-contributors", _lazy("Google Playstore Contributors")
+ MOBILE = "mobile-contributors", _lazy("Mobile support Contributors")
@classmethod
def has_value(cls, value):
diff --git a/svelte/contribute/Contribute.svelte b/svelte/contribute/Contribute.svelte
index edc76e734..1e36d0318 100644
--- a/svelte/contribute/Contribute.svelte
+++ b/svelte/contribute/Contribute.svelte
@@ -68,7 +68,7 @@
SUMO_URL +
"/kb/mozilla-support-rules-guidelines",
text: gettext(
- "Learn about basic contribution guidelines."
+ "Learn about basic contribution guidelines"
),
},
],
@@ -84,7 +84,9 @@
Linkable,
{
link: SUMO_URL + "/kb/how-contribute-support-forum",
- text: gettext("Learn about forum contribution"),
+ text: gettext(
+ "Learn more about forum contribution"
+ ),
},
],
],
@@ -125,7 +127,7 @@
SUMO_URL +
"/kb/mozilla-support-rules-guidelines",
text: gettext(
- "Learn about basic contribution guidelines."
+ "Learn about basic contribution guidelines"
),
},
],
@@ -164,7 +166,7 @@
},
}}
>
- {gettext("Help us write help articles")}
+ {gettext("Help us write support articles")}
{gettext("Share your wisdom with the world!")}
{gettext(
@@ -187,7 +189,7 @@
SUMO_URL +
"/kb/mozilla-support-rules-guidelines",
text: gettext(
- "Learn about basic contribution guidelines."
+ "Learn about basic contribution guidelines"
),
},
],
@@ -227,7 +229,7 @@
},
}}
>
-
{gettext("Translate help articles")}
+ {gettext("Help us localize support articles")}
{gettext("Let’s make Mozilla Support speak your language!")}
@@ -250,7 +252,7 @@
{
link: SUMO_URL + "/kb/social-support-guidelines",
text: gettext(
- "Learn about basic contribution guidelines."
+ "Learn about basic contribution guidelines"
),
},
],
@@ -266,7 +268,7 @@
{
link: "",
text: gettext(
- "Start tweeting from @FirefoxSupport!"
+ "Start replying from @FirefoxSupport!"
),
},
],
@@ -300,9 +302,9 @@
-
+
- {gettext("Support Firefox users on mobile")}
+ {gettext("Support Firefox users on mobile store")}
{gettext(
- "Help us respond to Play Store reviews for Firefox for Android!"
+ "Help us respond to app reviews for our mobile products!"
)}
{gettext(
- "Smartphones are taking over the world. We have many users leaving reviews while also asking for support on Play Store. By joining Play Store Support, you can help them by reply to their reviews from the comfort of your desk. Pretty simple, right?"
+ "Smartphones are taking over the world. Nowdays, many people prefer to app reviews instead of going to the support forum. By joining, you can help them by replying to their reviews from the comfort of your desk. Pretty simple, right?"
)}
diff --git a/svelte/contribute/Picker.svelte b/svelte/contribute/Picker.svelte
index 036cb6fa2..442c4b8f0 100644
--- a/svelte/contribute/Picker.svelte
+++ b/svelte/contribute/Picker.svelte
@@ -41,9 +41,9 @@
{gettext("Social support")}
{/if}
- {#if location?.pathname != "/playstore"}
-
- {gettext("Play Store support")}
+ {#if location?.pathname != "/mobile"}
+
+ {gettext("Mobile Store support")}
{/if}
diff --git a/webpack.pre-render.js b/webpack.pre-render.js
index f1162690c..bc0664277 100644
--- a/webpack.pre-render.js
+++ b/webpack.pre-render.js
@@ -25,7 +25,7 @@ module.exports = mergeWithRules({
"/contribute/kb",
"/contribute/social",
"/contribute/l10n",
- "/contribute/playstore",
+ "/contribute/mobile",
],
}),
],