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
I like your "fuzzy time" Pebble watchface very much. Is it possible to add Dutch to the list of languages? I would love to contribute and provide the exact wording for the various times to you.
I've pasted proposed strings-nl.c file for the Dutch language:
--Ivo
const char* const HOURS_NL[] = {
// AM hours
"twaalf",
"een",
"twee",
"drie",
"vier",
"vijf",
"zes",
"zeven",
"acht",
"negen",
"tien",
"elf",
// PM hours
"twaalf",
"een",
"twee",
"drie",
"vier",
"vijf",
"zes",
"zeven",
"acht",
"negen",
"tien",
"elf"
};
/**
* 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_NL[] = {
"*$1 uur",
"vijf over *$1",
"tien over *$1",
"kwart over *$1",
"tien voor half *$2",
"vijf voor half *$2",
"half *$2",
"vijf over half *$2",
"tien over half *$2",
"kwart voor *$2",
"tien voor *$2",
"vijf voor *$2"
};
The text was updated successfully, but these errors were encountered:
Hi Jesse,
I like your "fuzzy time" Pebble watchface very much. Is it possible to add Dutch to the list of languages? I would love to contribute and provide the exact wording for the various times to you.
I've pasted proposed strings-nl.c file for the Dutch language:
--Ivo
The text was updated successfully, but these errors were encountered: