forked from Sarastro72/Fuzzy-Text-Watch-Plus
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#include "strings-en.h" | ||
|
||
const char* const HOURS_ES[] = { | ||
// AM hours | ||
"doce", | ||
"una", | ||
"dos", | ||
"tres", | ||
"cuatro", | ||
"cinco", | ||
"seis", | ||
"siete", | ||
"ocho", | ||
"nueve", | ||
"diez", | ||
"once", | ||
|
||
// PM hours | ||
"doce", | ||
"una", | ||
"dos", | ||
"tres", | ||
"cuatro", | ||
"cinco", | ||
"seis", | ||
"siete", | ||
"ocho", | ||
"nueve", | ||
"diez", | ||
"once" | ||
}; | ||
|
||
/** | ||
* 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_ES[] = { | ||
"$1", | ||
"*$1 y cinco", | ||
"*$1 y diez", | ||
"*$1 y cuarto", | ||
"*$1 y veinte", | ||
"*$1 y veinte- cinco", | ||
"*$1 y media", | ||
"*$2 menos veinte- cinco", | ||
"*$2 menos veinte", | ||
"*$2 menos cuarto", | ||
"*$2 menos diez", | ||
"*$2 menos cinco" | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#pragma once | ||
|
||
const char* const HOURS_ES[24]; | ||
const char* const RELS_ES[12]; | ||
|