fix fatal error in italian hstrings.php

This commit is contained in:
Mario
2026-03-14 10:29:48 +00:00
parent f63ba541d7
commit ce24b86841
2 changed files with 3 additions and 2 deletions

View File

@@ -1256,6 +1256,7 @@ class App {
self::$meta->set('generator', Zotlabs\Lib\System::get_platform_name());
self::$meta->set('theme-color', $theme_color);
self::$meta->set('accent-color', $theme_color);
head_add_link(['rel' => 'shortcut icon', 'href' => static::head_get_icon()]);
head_add_link(['rel' => 'apple-touch-icon', 'href' => '/images/app/hz-192.png']);

View File

@@ -2,10 +2,10 @@
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return $n == 1 ? 0 : $n != 0 && $n % 1000000 == 0 ? 1 : 2;
return (($n == 1) ? 0 : (($n != 0 && $n % 1000000 == 0) ? 1 : 2));
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2";
App::$strings["plural_function_code"] = "((n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2))";
App::$strings["Source channel not found."] = "Origine del canale non trovata";
App::$strings["Default"] = "Predefinito";
App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)";