]> git.mxchange.org Git - friendica.git/commitdiff
Improved handling for undeterminded languages
authorMichael <heluecht@pirati.ca>
Sun, 7 Jan 2024 10:11:52 +0000 (10:11 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 28 Jan 2024 15:37:07 +0000 (16:37 +0100)
src/Core/L10n.php
src/Model/Item.php
src/Module/Conversation/Timeline.php
view/lang/C/messages.po

index 900bfa5e9e1db2d9428623213df4301a65b40a1b..d00cd0df5ce018e87363e3445d4bdbe6791a8828 100644 (file)
@@ -436,7 +436,9 @@ class L10n
        {
                $iso639 = new \Matriphe\ISO639\ISO639;
 
-               $languages = ['un' => $this->t('Undeteced Language')];
+               // In ISO 639-2 undetermined languages have got the code "und".
+               // There is no official code for ISO 639-1, but "un" is not assigned to any language.   
+               $languages = ['un' => $this->t('Undetermined')];
 
                foreach ($this->getDetectableLanguages() as $code) {
                        $code     = $this->toISO6391($code);
index cd6e32fcbb7a97dc34d086bbd66e0407ced53298..a672f5b174791aa7af0d61f6446bd45eb4188812 100644 (file)
@@ -2107,7 +2107,7 @@ class Item
                }
 
                if (empty($searchtext)) {
-                       return [];
+                       return ['un' => 1];
                }
 
                $ld = new Language(DI::l10n()->getDetectableLanguages());
@@ -2130,6 +2130,10 @@ class Item
                        }
                }
 
+               if (empty($result)) {
+                       return ['un' => 1];
+               }
+
                $result = self::compactLanguages($result);
 
                arsort($result);
@@ -2240,8 +2244,13 @@ class Item
                foreach (json_decode($item['language'], true) as $language => $reliability) {
                        $code = DI::l10n()->toISO6391($language);
 
-                       $native   = $iso639->nativeByCode1($code);
-                       $language = $iso639->languageByCode1($code);
+                       if ($code == 'un') {
+                               $native = $language = DI::l10n()->t('Undetermined');
+                       } else {
+                               $native   = $iso639->nativeByCode1($code);
+                               $language = $iso639->languageByCode1($code);
+                       }
+
                        if ($native != $language) {
                                $used_languages .= DI::l10n()->t('%s (%s - %s): %s', $native, $language, $code, number_format($reliability, 5)) . '\n';
                        } else {
index c351553e40f249188896a9299912f16ffe2b4955..dd8e885e7c2469d8c5ad518a1ec319508bfcb779 100644 (file)
@@ -432,12 +432,8 @@ class Timeline extends BaseModule
                $conditions = [];
                $languages  = $languages ?: User::getWantedLanguages($uid);
                foreach ($languages as $language) {
-                       if ($language == 'un') {
-                               $conditions[] = "`language` IS NULL";
-                       } else {
-                               $conditions[] = "JSON_EXTRACT(JSON_KEYS(language), '$[0]') = ?";
-                               $condition[]  = $language;
-                       }
+                       $conditions[] = "JSON_EXTRACT(JSON_KEYS(language), '$[0]') = ?";
+                       $condition[]  = $language;
                }
                if (!empty($conditions)) {
                        $condition[0] .= " AND (" . implode(' OR ', $conditions) . ")";
index dc981765bf22788b989be3c778b2b976bbcec82b..8b172b8ce33d3662a3b2a15e5d456958bed6a7aa 100644 (file)
@@ -1770,7 +1770,7 @@ msgstr ""
 msgid "Create new group"
 msgstr ""
 
-#: src/Content/Item.php:332 src/Model/Item.php:3195
+#: src/Content/Item.php:332 src/Model/Item.php:3204
 msgid "event"
 msgstr ""
 
@@ -1778,7 +1778,7 @@ msgstr ""
 msgid "status"
 msgstr ""
 
-#: src/Content/Item.php:341 src/Model/Item.php:3197
+#: src/Content/Item.php:341 src/Model/Item.php:3206
 #: src/Module/Post/Tag/Add.php:123
 msgid "photo"
 msgstr ""
@@ -2191,8 +2191,8 @@ msgid ""
 "<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3928
-#: src/Model/Item.php:3934 src/Model/Item.php:3935
+#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3937
+#: src/Model/Item.php:3943 src/Model/Item.php:3944
 msgid "Link to source"
 msgstr ""
 
@@ -2855,167 +2855,167 @@ msgstr ""
 msgid "Could not connect to database."
 msgstr ""
 
-#: src/Core/L10n.php:439
-msgid "Undeteced Language"
+#: src/Core/L10n.php:441 src/Model/Item.php:2248
+msgid "Undetermined"
 msgstr ""
 
-#: src/Core/L10n.php:446
+#: src/Core/L10n.php:448
 #, php-format
 msgid "%s (%s)"
 msgstr ""
 
-#: src/Core/L10n.php:494 src/Model/Event.php:430
+#: src/Core/L10n.php:496 src/Model/Event.php:430
 #: src/Module/Settings/Display.php:284
 msgid "Monday"
 msgstr ""
 
-#: src/Core/L10n.php:494 src/Model/Event.php:431
+#: src/Core/L10n.php:496 src/Model/Event.php:431
 #: src/Module/Settings/Display.php:285
 msgid "Tuesday"
 msgstr ""
 
-#: src/Core/L10n.php:494 src/Model/Event.php:432
+#: src/Core/L10n.php:496 src/Model/Event.php:432
 #: src/Module/Settings/Display.php:286
 msgid "Wednesday"
 msgstr ""
 
-#: src/Core/L10n.php:494 src/Model/Event.php:433
+#: src/Core/L10n.php:496 src/Model/Event.php:433
 #: src/Module/Settings/Display.php:287
 msgid "Thursday"
 msgstr ""
 
-#: src/Core/L10n.php:494 src/Model/Event.php:434
+#: src/Core/L10n.php:496 src/Model/Event.php:434
 #: src/Module/Settings/Display.php:288
 msgid "Friday"
 msgstr ""
 
-#: src/Core/L10n.php:494 src/Model/Event.php:435
+#: src/Core/L10n.php:496 src/Model/Event.php:435
 #: src/Module/Settings/Display.php:289
 msgid "Saturday"
 msgstr ""
 
-#: src/Core/L10n.php:494 src/Model/Event.php:429
+#: src/Core/L10n.php:496 src/Model/Event.php:429
 #: src/Module/Settings/Display.php:283
 msgid "Sunday"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:450
+#: src/Core/L10n.php:500 src/Model/Event.php:450
 msgid "January"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:451
+#: src/Core/L10n.php:500 src/Model/Event.php:451
 msgid "February"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:452
+#: src/Core/L10n.php:500 src/Model/Event.php:452
 msgid "March"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:453
+#: src/Core/L10n.php:500 src/Model/Event.php:453
 msgid "April"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Core/L10n.php:517 src/Model/Event.php:441
+#: src/Core/L10n.php:500 src/Core/L10n.php:519 src/Model/Event.php:441
 msgid "May"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:454
+#: src/Core/L10n.php:500 src/Model/Event.php:454
 msgid "June"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:455
+#: src/Core/L10n.php:500 src/Model/Event.php:455
 msgid "July"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:456
+#: src/Core/L10n.php:500 src/Model/Event.php:456
 msgid "August"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:457
+#: src/Core/L10n.php:500 src/Model/Event.php:457
 msgid "September"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:458
+#: src/Core/L10n.php:500 src/Model/Event.php:458
 msgid "October"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:459
+#: src/Core/L10n.php:500 src/Model/Event.php:459
 msgid "November"
 msgstr ""
 
-#: src/Core/L10n.php:498 src/Model/Event.php:460
+#: src/Core/L10n.php:500 src/Model/Event.php:460
 msgid "December"
 msgstr ""
 
-#: src/Core/L10n.php:513 src/Model/Event.php:422
+#: src/Core/L10n.php:515 src/Model/Event.php:422
 msgid "Mon"
 msgstr ""
 
-#: src/Core/L10n.php:513 src/Model/Event.php:423
+#: src/Core/L10n.php:515 src/Model/Event.php:423
 msgid "Tue"
 msgstr ""
 
-#: src/Core/L10n.php:513 src/Model/Event.php:424
+#: src/Core/L10n.php:515 src/Model/Event.php:424
 msgid "Wed"
 msgstr ""
 
-#: src/Core/L10n.php:513 src/Model/Event.php:425
+#: src/Core/L10n.php:515 src/Model/Event.php:425
 msgid "Thu"
 msgstr ""
 
-#: src/Core/L10n.php:513 src/Model/Event.php:426
+#: src/Core/L10n.php:515 src/Model/Event.php:426
 msgid "Fri"
 msgstr ""
 
-#: src/Core/L10n.php:513 src/Model/Event.php:427
+#: src/Core/L10n.php:515 src/Model/Event.php:427
 msgid "Sat"
 msgstr ""
 
-#: src/Core/L10n.php:513 src/Model/Event.php:421
+#: src/Core/L10n.php:515 src/Model/Event.php:421
 msgid "Sun"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:437
+#: src/Core/L10n.php:519 src/Model/Event.php:437
 msgid "Jan"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:438
+#: src/Core/L10n.php:519 src/Model/Event.php:438
 msgid "Feb"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:439
+#: src/Core/L10n.php:519 src/Model/Event.php:439
 msgid "Mar"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:440
+#: src/Core/L10n.php:519 src/Model/Event.php:440
 msgid "Apr"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:442
+#: src/Core/L10n.php:519 src/Model/Event.php:442
 msgid "Jun"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:443
+#: src/Core/L10n.php:519 src/Model/Event.php:443
 msgid "Jul"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:444
+#: src/Core/L10n.php:519 src/Model/Event.php:444
 msgid "Aug"
 msgstr ""
 
-#: src/Core/L10n.php:517
+#: src/Core/L10n.php:519
 msgid "Sep"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:446
+#: src/Core/L10n.php:519 src/Model/Event.php:446
 msgid "Oct"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:447
+#: src/Core/L10n.php:519 src/Model/Event.php:447
 msgid "Nov"
 msgstr ""
 
-#: src/Core/L10n.php:517 src/Model/Event.php:448
+#: src/Core/L10n.php:519 src/Model/Event.php:448
 msgid "Dec"
 msgstr ""
 
@@ -3413,91 +3413,91 @@ msgstr ""
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: src/Model/Item.php:2246
+#: src/Model/Item.php:2255
 #, php-format
 msgid "%s (%s - %s): %s"
 msgstr ""
 
-#: src/Model/Item.php:2248
+#: src/Model/Item.php:2257
 #, php-format
 msgid "%s (%s): %s"
 msgstr ""
 
-#: src/Model/Item.php:2251
+#: src/Model/Item.php:2260
 #, php-format
 msgid "Detected languages in this post:\\n%s"
 msgstr ""
 
-#: src/Model/Item.php:3199
+#: src/Model/Item.php:3208
 msgid "activity"
 msgstr ""
 
-#: src/Model/Item.php:3201
+#: src/Model/Item.php:3210
 msgid "comment"
 msgstr ""
 
-#: src/Model/Item.php:3204 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3213 src/Module/Post/Tag/Add.php:123
 msgid "post"
 msgstr ""
 
-#: src/Model/Item.php:3374
+#: src/Model/Item.php:3383
 #, php-format
 msgid "%s is blocked"
 msgstr ""
 
-#: src/Model/Item.php:3376
+#: src/Model/Item.php:3385
 #, php-format
 msgid "%s is ignored"
 msgstr ""
 
-#: src/Model/Item.php:3378
+#: src/Model/Item.php:3387
 #, php-format
 msgid "Content from %s is collapsed"
 msgstr ""
 
-#: src/Model/Item.php:3382
+#: src/Model/Item.php:3391
 #, php-format
 msgid "Content warning: %s"
 msgstr ""
 
-#: src/Model/Item.php:3835
+#: src/Model/Item.php:3844
 msgid "bytes"
 msgstr ""
 
-#: src/Model/Item.php:3866
+#: src/Model/Item.php:3875
 #, php-format
 msgid "%2$s (%3$d%%, %1$d vote)"
 msgid_plural "%2$s (%3$d%%, %1$d votes)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3868
+#: src/Model/Item.php:3877
 #, php-format
 msgid "%2$s (%1$d vote)"
 msgid_plural "%2$s (%1$d votes)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3873
+#: src/Model/Item.php:3882
 #, php-format
 msgid "%d voter. Poll end: %s"
 msgid_plural "%d voters. Poll end: %s"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3875
+#: src/Model/Item.php:3884
 #, php-format
 msgid "%d voter."
 msgid_plural "%d voters."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3877
+#: src/Model/Item.php:3886
 #, php-format
 msgid "Poll end: %s"
 msgstr ""
 
-#: src/Model/Item.php:3911 src/Model/Item.php:3912
+#: src/Model/Item.php:3920 src/Model/Item.php:3921
 msgid "View on separate page"
 msgstr ""