diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/CustomListsScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/CustomListsScreen.kt
index 0f8c31fbf..b5739ef97 100644
--- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/CustomListsScreen.kt
+++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/CustomListsScreen.kt
@@ -252,7 +252,7 @@ private fun FollowSetFabsAndMenu(
ExtendedFloatingActionButton(
text = {
- Text(text = "New")
+ Text(text = stringRes(R.string.follow_set_create_btn_label))
},
icon = {
Icon(
diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt
index ffaa9367f..58da75b8a 100644
--- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt
+++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt
@@ -77,6 +77,7 @@ import com.vitorpamplona.amethyst.ui.note.VerticalDotsIcon
import com.vitorpamplona.amethyst.ui.screen.loggedIn.AccountViewModel
import com.vitorpamplona.amethyst.ui.screen.loggedIn.lists.FollowSetFeedViewModel
import com.vitorpamplona.amethyst.ui.screen.loggedIn.qrcode.BackButton
+import com.vitorpamplona.amethyst.ui.stringRes
import com.vitorpamplona.amethyst.ui.theme.ButtonBorder
import com.vitorpamplona.amethyst.ui.theme.FeedPadding
import com.vitorpamplona.amethyst.ui.theme.HalfPadding
@@ -277,7 +278,7 @@ private fun FollowSetListView(
modifier = VertPadding,
) {
Text(
- text = "Public Profiles",
+ text = stringRes(R.string.follow_set_public_members_header_label),
fontSize = 18.sp,
fontWeight = FontWeight.Bold,
)
@@ -304,7 +305,7 @@ private fun FollowSetListView(
if (privateMemberList.isNotEmpty()) {
stickyHeader {
Text(
- text = "Private Profiles",
+ text = stringRes(R.string.follow_set_private_members_header_label),
fontSize = 18.sp,
fontWeight = FontWeight.Bold,
)
diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt
index bd7dc24d8..4ae55ff43 100644
--- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt
+++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt
@@ -346,7 +346,7 @@ fun FollowSetItem(
Spacer(modifier = StdHorzSpacer)
Icon(
painter = painterResource(R.drawable.format_list_bulleted_type),
- contentDescription = stringRes(R.string.follow_set_type_description),
+ contentDescription = stringRes(R.string.follow_set_icon_description),
)
}
@@ -455,7 +455,7 @@ private fun UserAdditionOptionsMenu(
) {
DropdownMenuItem(
text = {
- Text(text = "Add as public member")
+ Text(text = stringRes(R.string.follow_set_public_member_add_label))
},
onClick = {
onUserAdd(false)
@@ -464,7 +464,7 @@ private fun UserAdditionOptionsMenu(
)
DropdownMenuItem(
text = {
- Text(text = "Add as private member")
+ Text(text = stringRes(R.string.follow_set_private_member_add_label))
},
onClick = {
onUserAdd(true)
diff --git a/amethyst/src/main/res/values-cs-rCZ/strings.xml b/amethyst/src/main/res/values-cs-rCZ/strings.xml
index a8c63c16b..7f78eb705 100644
--- a/amethyst/src/main/res/values-cs-rCZ/strings.xml
+++ b/amethyst/src/main/res/values-cs-rCZ/strings.xml
@@ -453,8 +453,7 @@
Zdá se, že zatím nemáte žádné sady sledování.\nKlepněte níže pro obnovení nebo použijte tlačítko přidat k vytvoření nové.
Přidat autora do sady sledování
Přidat nebo odebrat uživatele ze seznamů, nebo vytvořit nový seznam s tímto uživatelem.
- Ikona pro seznam %1$s
- "%1$s je v tomto seznamu"
+ Ikona pro seznam %1$s
"%1$s není v tomto seznamu"
Vaše sady sledování
Nebyly nalezeny žádné sady sledování, nebo žádné nemáte. Klepněte níže pro obnovení nebo použijte menu pro vytvoření nové.
diff --git a/amethyst/src/main/res/values-cs/strings.xml b/amethyst/src/main/res/values-cs/strings.xml
index 1d68921db..fc5948211 100644
--- a/amethyst/src/main/res/values-cs/strings.xml
+++ b/amethyst/src/main/res/values-cs/strings.xml
@@ -961,8 +961,7 @@
Zdá se, že zatím nemáte žádné sady sledování.\nKlepněte níže pro obnovení nebo použijte tlačítko přidat k vytvoření nové.
Přidat autora do sady sledování
Přidat nebo odebrat uživatele ze seznamů, nebo vytvořit nový seznam s tímto uživatelem.
- Ikona pro seznam %1$s
- %1$s je v tomto seznamu
+ Ikona pro seznam %1$s
%1$s není v tomto seznamu
Vaše sady sledování
Nebyly nalezeny žádné sady sledování, nebo žádné nemáte. Klepněte níže pro obnovení nebo použijte menu pro vytvoření nové.
diff --git a/amethyst/src/main/res/values-de-rDE/strings.xml b/amethyst/src/main/res/values-de-rDE/strings.xml
index 3aee42a42..08a8ba61b 100644
--- a/amethyst/src/main/res/values-de-rDE/strings.xml
+++ b/amethyst/src/main/res/values-de-rDE/strings.xml
@@ -459,8 +459,7 @@ anz der Bedingungen ist erforderlich
Es scheint, dass du noch keine Folge-Sets hast.\nTippe unten zum Aktualisieren oder verwende die Plus-Taste, um ein neues zu erstellen.
Autor zum Folge-Set hinzufügen
Benutzer zu Listen hinzufügen oder entfernen, oder eine neue Liste mit diesem Benutzer erstellen.
- Symbol für %1$s-Liste
- "%1$s ist in dieser Liste"
+ Symbol für %1$s-Liste
"%1$s ist nicht in dieser Liste"
Deine Folge-Sets
Keine Folge-Sets gefunden oder du hast keine. Tippe unten zum Aktualisieren oder verwende das Menü, um eines zu erstellen.
diff --git a/amethyst/src/main/res/values-de/strings.xml b/amethyst/src/main/res/values-de/strings.xml
index 4d90c98c9..fd7c5ffa8 100644
--- a/amethyst/src/main/res/values-de/strings.xml
+++ b/amethyst/src/main/res/values-de/strings.xml
@@ -1001,8 +1001,7 @@ anz der Bedingungen ist erforderlich
Es scheint, dass du noch keine Folge-Sets hast.\nTippe unten zum Aktualisieren oder verwende die Plus-Taste, um ein neues zu erstellen.
Autor zum Folge-Set hinzufügen
Benutzer zu Listen hinzufügen oder entfernen, oder eine neue Liste mit diesem Benutzer erstellen.
- Symbol für %1$s-Liste
- %1$s ist in dieser Liste
+ Symbol für %1$s-Liste
%1$s ist nicht in dieser Liste
Deine Folge-Sets
Keine Folge-Sets gefunden oder du hast keine. Tippe unten zum Aktualisieren oder verwende das Menü, um eines zu erstellen.
diff --git a/amethyst/src/main/res/values-hi-rIN/strings.xml b/amethyst/src/main/res/values-hi-rIN/strings.xml
index e1db6d5b0..cf5278fda 100644
--- a/amethyst/src/main/res/values-hi-rIN/strings.xml
+++ b/amethyst/src/main/res/values-hi-rIN/strings.xml
@@ -457,8 +457,7 @@
लेखक जोडें अनुगम्य सूची में
प्रयोक्ता को सूचियों में जोडें अथवा हटाएँ अथवा इस प्रयोक्ता के साथ नई सूची बनाएँ।
- सूची %1$s के लिए चिह्न
- "%1$s इस सूची में है"
+ सूची %1$s के लिए चिह्न
"%1$s इस सूची में नहीं है"
आपके अनुगम्य सूचियाँ
कोई अनुगम्य सूचियाँ प्राप्त नहीं। अथवा आपका कोई अनुगम्य सूचियाँ हैं नहीं। नवीकरण के लिए नीचे दबाएँ अथवा विकल्पसूची द्वारा एक नया बनाएँ।
diff --git a/amethyst/src/main/res/values-hu-rHU/strings.xml b/amethyst/src/main/res/values-hu-rHU/strings.xml
index 790806e5d..81e96f8cd 100644
--- a/amethyst/src/main/res/values-hu-rHU/strings.xml
+++ b/amethyst/src/main/res/values-hu-rHU/strings.xml
@@ -457,8 +457,7 @@
Szerző hozzáadása a követési gyűjteményhez
Felhasználó hozzáadása vagy eltávolítása a listákból, vagy új lista létrehozása ezzel a felhasználóval.
- Ikon a(z) %1$s nevű listához
- "A(z) %1$s már a létezik a listában"
+ Ikon a(z) %1$s nevű listához
"A(z) %1$s nincs a listában"
Saját követési gyüjtemények
Nem találhatók követési gyüjtemények, vagy nincs követési gyüjteménye. Érintse meg az alábbi gombot a frissítéshez vagy használja a menüt egy gyüjtemény létrehozásához.
diff --git a/amethyst/src/main/res/values-lv-rLV/strings.xml b/amethyst/src/main/res/values-lv-rLV/strings.xml
index 9ecf8d4b7..6044600cf 100644
--- a/amethyst/src/main/res/values-lv-rLV/strings.xml
+++ b/amethyst/src/main/res/values-lv-rLV/strings.xml
@@ -114,7 +114,7 @@
Jā
Nē
Sekot saraksts
- Ikona %1$s sarakstam
+ Ikona %1$s sarakstam
Izveidot jaunu sarakstu
Jaunais %1$s saraksts
Kolekcijas nosaukums
diff --git a/amethyst/src/main/res/values-pl-rPL/strings.xml b/amethyst/src/main/res/values-pl-rPL/strings.xml
index ede2780e0..c11590812 100644
--- a/amethyst/src/main/res/values-pl-rPL/strings.xml
+++ b/amethyst/src/main/res/values-pl-rPL/strings.xml
@@ -454,8 +454,7 @@
Dodaj autora do zbioru obserwowanych
Dodaj lub usuń użytkownika z list, lub utwórz nową listę z tym użytkownikiem.
- Ikona dla listy %1$s
- "%1$s jest obecny na liście"
+ Ikona dla listy %1$s
"%1$s nie jest na liście"
Twój zbiór obserwowanych
Nie znaleziono zbiorów obserwowanych lub nie masz żadnych zbiorów obserwowanych. Dotknij poniżej, aby odświeżyć lub użyj menu, aby go utworzyć.
diff --git a/amethyst/src/main/res/values-pt-rBR/strings.xml b/amethyst/src/main/res/values-pt-rBR/strings.xml
index 439c76e55..2c0879035 100644
--- a/amethyst/src/main/res/values-pt-rBR/strings.xml
+++ b/amethyst/src/main/res/values-pt-rBR/strings.xml
@@ -453,8 +453,7 @@
Parece que você ainda não tem conjuntos de seguimento.\nToque abaixo para atualizar ou use o botão de adicionar para criar um novo.
Adicionar autor ao conjunto de seguimento
Adicionar ou remover usuário de listas, ou criar uma nova lista com este usuário.
- Ícone da lista %1$s
- "%1$s está presente nesta lista"
+ Ícone da lista %1$s
"%1$s não está nesta lista"
Seus conjuntos de seguimento
Nenhum conjunto de seguimento foi encontrado ou você não possui nenhum. Toque abaixo para atualizar ou use o menu para criar um.
diff --git a/amethyst/src/main/res/values-sv-rSE/strings.xml b/amethyst/src/main/res/values-sv-rSE/strings.xml
index 4eb00d879..32e93ab55 100644
--- a/amethyst/src/main/res/values-sv-rSE/strings.xml
+++ b/amethyst/src/main/res/values-sv-rSE/strings.xml
@@ -453,8 +453,7 @@
Det verkar som att du inte har några följ-set ännu.\nTryck nedan för att uppdatera eller använd plusknappen för att skapa ett nytt.
Lägg till författare i följ-set
Lägg till eller ta bort användare från listor, eller skapa en ny lista med denna användare.
- Ikon för %1$s-lista
- "%1$s finns i denna lista"
+ Ikon för %1$s-lista
"%1$s finns inte i denna lista"
Dina följ-set
Inga följ-set hittades, eller så har du inga. Tryck nedan för att uppdatera eller använd menyn för att skapa ett.
diff --git a/amethyst/src/main/res/values-zh-rCN/strings.xml b/amethyst/src/main/res/values-zh-rCN/strings.xml
index c08294305..6cbb7f36c 100644
--- a/amethyst/src/main/res/values-zh-rCN/strings.xml
+++ b/amethyst/src/main/res/values-zh-rCN/strings.xml
@@ -457,8 +457,7 @@
添加作者到关注集
从列表中添加或删除用户,或用此用户创建一个新列表。
- %1$s 列表的图标
- "此列表中有 %1$s"
+ %1$s 列表的图标
"此列表中没有 %1$s"
您的关注集
未找到关注集,或者你还没有任何关注集。轻按下方刷新,或使用按钮新建。
diff --git a/amethyst/src/main/res/values/strings.xml b/amethyst/src/main/res/values/strings.xml
index a0d1ef928..81fec61e1 100644
--- a/amethyst/src/main/res/values/strings.xml
+++ b/amethyst/src/main/res/values/strings.xml
@@ -519,11 +519,16 @@
It seems you do not have any follow sets yet.
\nTap below to refresh, or tap the add buttons to create a new one.
+ New
Add author to follow set
Add or remove user from lists, or create a new list with this user.
- Icon for %1$s List
+ Icon for follow set
%1$s is a public member
%1$s is a private member
+ Add as public member
+ Add as private member
+ Public Profiles
+ Private Profiles
member
members
No members