found the reason
the following line worked
Shell.util_format_date("%a %l:%M %p", new Date().getTime());
but the following gave null
Shell.util_format_date(_("%a %l:%M %p"), new Date().getTime());
all _("...") worked except this above line
the reason behind this was
_("%a %l:%M %p")
evaluates to
%A %Ol:%OM %p
while
_("%a %b %e, %l:%M %p")
evaluates to
%A %e %B, %l:%M %p
so we just need to fix po/ar.po in gnome-shell
mean while is there any way to fix the null case so that it won't crash
the following line worked
Shell.util_format_date("%a %l:%M %p", new Date().getTime());
but the following gave null
Shell.util_format_date(_("%a %l:%M %p"), new Date().getTime());
all _("...") worked except this above line
the reason behind this was
_("%a %l:%M %p")
evaluates to
%A %Ol:%OM %p
while
_("%a %b %e, %l:%M %p")
evaluates to
%A %e %B, %l:%M %p
so we just need to fix po/ar.po in gnome-shell
mean while is there any way to fix the null case so that it won't crash
-- devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/devel