You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The string "$1" will be replaced with the current hour (e.g., "three"
at 3:45). The string "$2" will be replaced with the next hour
(e.g., "four" at 3:45).
*
A "" character before a word makes that word bold.
*/
const char const RELS_IT[] = {
"$1 in punto",
"$1 e cinque",
"$1 e dieci",
"$1 e un quarto",
"$1 e venti",
"$1 e venticinque",
"$1 e mezza",
"$1 e trentacinque",
"$2 meno venti",
"$2 meno un quarto",
"$2 meno dieci",
"$2 meno cinque"
};
The text was updated successfully, but these errors were encountered:
Hi!
Here's the strings-it.c with an Italian translation! Thanks for the attention, bye!
include "strings-it.h"
const char* const HOURS_IT[] = {
// AM hours
"mezzogiorno",
"una",
"due",
"tre",
"quattro",
"cinque",
"sei",
"sette",
"otto",
"nove",
"dieci",
"undici",
// PM hours
"mezzanotte",
"una",
"due",
"tre",
"quattro",
"cinque",
"sei",
"sette",
"otto",
"nove",
"dieci",
"undici"
};
/**
*
*/
const char const RELS_IT[] = {
"$1 in punto",
"$1 e cinque",
"$1 e dieci",
"$1 e un quarto",
"$1 e venti",
"$1 e venticinque",
"$1 e mezza",
"$1 e trentacinque",
"$2 meno venti",
"$2 meno un quarto",
"$2 meno dieci",
"$2 meno cinque"
};
The text was updated successfully, but these errors were encountered: