Skip to content

Commit bf25009

Browse files
Merge release/26.3 into trunk (#24849)
* Disable NSAssert statements in WordPressKit targets release builds * Update app translations – `Localizable.strings` * Update WordPress metadata translations * Update Jetpack metadata translations * Bump version number --------- Co-authored-by: Tony Li <[email protected]>
1 parent 91c8c2d commit bf25009

File tree

11 files changed

+77
-6
lines changed

11 files changed

+77
-6
lines changed

Modules/Package.swift

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,12 @@ let package = Package(
173173
resources: [.process("Resources")],
174174
swiftSettings: [.swiftLanguageMode(.v5)]
175175
),
176-
.target(name: "WordPressKitObjCUtils"),
176+
.target(
177+
name: "WordPressKitObjCUtils",
178+
cSettings: [
179+
.define("NS_BLOCK_ASSERTIONS", to: "1", .when(configuration: .release))
180+
]
181+
),
177182
.target(
178183
name: "WordPressKitModels",
179184
dependencies: [
@@ -189,7 +194,10 @@ let package = Package(
189194
"WordPressKitModels",
190195
"WordPressKitObjCUtils",
191196
],
192-
publicHeadersPath: "include"
197+
publicHeadersPath: "include",
198+
cSettings: [
199+
.define("NS_BLOCK_ASSERTIONS", to: "1", .when(configuration: .release))
200+
],
193201
),
194202
.target(
195203
name: "WordPressKit",

WordPress/Resources/ar.lproj/Localizable.strings

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Translation-Revision-Date: 2025-09-01 13:54:09+0000 */
1+
/* Translation-Revision-Date: 2025-09-15 14:54:07+0000 */
22
/* Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5)))); */
33
/* Generator: GlotPress/4.0.1 */
44
/* Language: ar */
@@ -7386,6 +7386,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */
73867386
/* Description for the prompt to upgrade to Application Passwords. The first argument is the name of the feature that requires Application Passwords. */
73877387
"applicationPasswordRequired.description" = "كلمات مرور التطبيقات هي طريقة أكثر أمانًا للاتصال بموقعك المستضاف ذاتيًا، وتمكين الدعم لميزات، مثل: %@.";
73887388

7389+
/* Feature name for the block editor in application password required prompt */
7390+
"applicationPasswordRequired.feature.blockEditor" = "محرِّر المكوِّنات";
7391+
73897392
/* Feature name for managing plugins in the app */
73907393
"applicationPasswordRequired.feature.plugins" = "إدارة الإضافة";
73917394

@@ -9197,6 +9200,9 @@ Example: Reply to Pamela Nguyen */
91979200
/* The name of the media filter */
91989201
"mediaLibrary.filterAudio" = "الصوت";
91999202

9203+
/* The name of the media filter */
9204+
"mediaLibrary.filterDefault" = "افتراضي (الكل)";
9205+
92009206
/* The name of the media filter */
92019207
"mediaLibrary.filterDocuments" = "الوثائق";
92029208

@@ -10089,6 +10095,9 @@ Example: Reply to Pamela Nguyen */
1008910095
/* Label for the visibility field in Post Settings */
1009010096
"postSettings.visibility.label" = "إمكانية الرؤية";
1009110097

10098+
/* Navigation bar title of the Post Stats screen */
10099+
"postStats.title" = "إحصاءات التدوينات";
10100+
1009210101
/* Button cancel */
1009310102
"postVisibilityPicker.cancel" = "إلغاء";
1009410103

WordPress/Resources/fr.lproj/Localizable.strings

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Translation-Revision-Date: 2025-08-12 13:54:09+0000 */
1+
/* Translation-Revision-Date: 2025-09-15 19:54:09+0000 */
22
/* Plural-Forms: nplurals=2; plural=n > 1; */
33
/* Generator: GlotPress/4.0.1 */
44
/* Language: fr */
@@ -7362,6 +7362,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */
73627362
/* Description for the prompt to upgrade to Application Passwords. The first argument is the name of the feature that requires Application Passwords. */
73637363
"applicationPasswordRequired.description" = "Les mots de passe d’application sont un moyen plus sûr de vous connecter à votre site auto-hébergé et activer des fonctionnalités telles que %@.";
73647364

7365+
/* Feature name for the block editor in application password required prompt */
7366+
"applicationPasswordRequired.feature.blockEditor" = "Éditeur de blocs";
7367+
73657368
/* Feature name for managing plugins in the app */
73667369
"applicationPasswordRequired.feature.plugins" = "Gestion des extensions";
73677370

@@ -9140,6 +9143,9 @@ Example: Reply to Pamela Nguyen */
91409143
/* The name of the media filter */
91419144
"mediaLibrary.filterAudio" = "Audio";
91429145

9146+
/* The name of the media filter */
9147+
"mediaLibrary.filterDefault" = "Par défaut (tout)";
9148+
91439149
/* The name of the media filter */
91449150
"mediaLibrary.filterDocuments" = "Documents";
91459151

@@ -10020,6 +10026,9 @@ Example: Reply to Pamela Nguyen */
1002010026
/* Label for the visibility field in Post Settings */
1002110027
"postSettings.visibility.label" = "Visibilité";
1002210028

10029+
/* Navigation bar title of the Post Stats screen */
10030+
"postStats.title" = "Statistiques de l’article";
10031+
1002310032
/* Button cancel */
1002410033
"postVisibilityPicker.cancel" = "Annuler";
1002510034

WordPress/Resources/sv.lproj/Localizable.strings

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Translation-Revision-Date: 2025-09-02 14:54:10+0000 */
1+
/* Translation-Revision-Date: 2025-09-15 14:54:08+0000 */
22
/* Plural-Forms: nplurals=2; plural=n != 1; */
33
/* Generator: GlotPress/4.0.1 */
44
/* Language: sv_SE */
@@ -7386,6 +7386,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */
73867386
/* Description for the prompt to upgrade to Application Passwords. The first argument is the name of the feature that requires Application Passwords. */
73877387
"applicationPasswordRequired.description" = "Applikationslösenord är ett säkrare sätt att ansluta till din webbplats som drivs på egen server och möjliggör stöd för funktioner som %@.";
73887388

7389+
/* Feature name for the block editor in application password required prompt */
7390+
"applicationPasswordRequired.feature.blockEditor" = "Blockredigerare";
7391+
73897392
/* Feature name for managing plugins in the app */
73907393
"applicationPasswordRequired.feature.plugins" = "Hantering av tillägg";
73917394

@@ -9215,6 +9218,9 @@ Example: Reply to Pamela Nguyen */
92159218
/* The name of the media filter */
92169219
"mediaLibrary.filterAudio" = "Ljud";
92179220

9221+
/* The name of the media filter */
9222+
"mediaLibrary.filterDefault" = "Standard (Alla)";
9223+
92189224
/* The name of the media filter */
92199225
"mediaLibrary.filterDocuments" = "Dokument";
92209226

@@ -10116,6 +10122,9 @@ Example: Reply to Pamela Nguyen */
1011610122
/* Label for the visibility field in Post Settings */
1011710123
"postSettings.visibility.label" = "Synlighet";
1011810124

10125+
/* Navigation bar title of the Post Stats screen */
10126+
"postStats.title" = "Inläggsstatistik";
10127+
1011910128
/* Button cancel */
1012010129
"postVisibilityPicker.cancel" = "Avbryt";
1012110130

config/Version.public.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION_LONG = 26.3.0.6
1+
VERSION_LONG = 26.3.0.7
22
VERSION_SHORT = 26.3
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
أجرينا بعض التحسينات الدقيقة لجعل تجربة Jetpack الخاصة بك أكثر سلاسة.
2+
3+
أضفنا دعما لنظام التشغيل iOS 26، لذا يمكنك الاستفادة من جميع الميزات الأحدث التي يجب على جهازك توفيرها. يبدو كل شيء على ما يرام.
4+
5+
نال القارئ بعض الحب مع التحديثات المرئية على شاشة المقالة، ما يجعل الأمر أسهل على العين عندما تتابع المحتوى المفضل لديك.
6+
7+
كما أجرينا بعض التحسينات من خلف الكواليس على الأزرار والتنقل في جميع أنحاء التطبيق. ستلاحظ أن الأشياء تبدو أكثر صقلا واتساقا، وخاصة في شاشات المحرر والإعدادات والإحصاءات.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Fizemos algumas melhorias ponderadas para tornar sua experiência com o Jetpack ainda mais tranquila.
2+
3+
Adicionamos suporte para iOS 26, para que você possa aproveitar todas as funcionalidades mais recentes que seu dispositivo tem a oferecer. Tudo parece e se sente perfeito.
4+
5+
O Leitor tem algum amor com atualizações visuais na tela do artigo, tornando-o mais fácil para os olhos quando você está alcançando seu conteúdo favorito.
6+
7+
Também fizemos algumas melhorias nos bastidores para botões e navegação em todo o aplicativo. Você notará que as coisas estão mais polidas e consistentes, especialmente nas telas Editor, Configurações e Estatísticas.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Vi har gjort några genomtänkta förbättringar för att göra din Jetpack-upplevelse ännu smidigare.
2+
3+
Vi har lagt till stöd för iOS 26, så att du kan dra nytta av alla de senaste funktionerna som din enhet har att erbjuda. Allt ser ut och känns helt rätt.
4+
5+
Vi har lagt lite tid på läsaren, med visuella uppdateringar av artikelskärmen, vilket har gjort den mer bekväm för ögonen när du tar del av ditt favoritinnehåll.
6+
7+
Vi har också gjort några förbättringar bakom kulisserna av knapparna och navigeringen i appen. Du kommer att märka att saker och ting känns mer polerade och konsekventa, särskilt på skärmarna Redigerare, Inställningar och Statistik.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
أجرينا بعض التحسينات الدقيقة لجعل تجربة ووردبريس الخاصة بك أكثر سلاسة.
2+
3+
أضفنا دعمًا لنظام التشغيل iOS 26، حتى تتمكن من الاستفادة من جميع أحدث الميزات التي يقدّمها جهازك. أصبح كل شيء يبدو ويُشعِر بأنه على ما يرام.
4+
5+
أجرينا أيضًا بعض التحسينات على الأزرار والتنقل في جميع أنحاء التطبيق. ستلاحظ أن الأمور أصبحت أكثر صقلًا وتناسقًا، لا سيّما في شاشات المحرّر، والإعدادات، والإحصائيات.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
We hebben een paar doordachte verbeteringen doorgevoerd om je WordPress ervaring nog soepeler te maken.
2+
3+
We hebben ondersteuning toegevoegd voor iOS 26, zodat je kunt profiteren van alle nieuwste functies die je apparaat te bieden heeft. Alles ziet er precies goed uit en voelt ook zo.
4+
5+
We hebben ook wat verbeteringen achter de schermen gedaan aan knoppen en navigatie in de hele app. Je merkt dat alles netter en consistenter aanvoelt, vooral in de Editor, Settings en Stats schermen.

0 commit comments

Comments
 (0)