Skip to content

Commit cd419db

Browse files
Implemented basic options menu.
1 parent 2560bc1 commit cd419db

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,20 @@ Follow these steps to add a new language:
1717
3. Add the translations to the locale's folder.
1818
- Be sure to translate text and, if able, images and audio assets.
1919

20+
### Replacement characters
21+
22+
Some special characters will cause translation to break. Use Firetongue's special replacement characters to deal with these situations:
23+
24+
```
25+
<Q> = Standard single quotation mark ( " )
26+
<LQ> = Fancy left quotation mark ( “ )
27+
<RQ> = Fancy right quotation mark ( ” )
28+
<C> = Standard comma
29+
<N> = Line break
30+
<T> = Tab
31+
<RE>[$SOME_FLAG] = Replace with the value of the flag
32+
```
33+
2034
## Contributions
2135

2236
Contributions to this project are HIGHLY encouraged.

en-US/base.csv

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FLAG,CONTENT
2+
"$FRIDAY_NIGHT_FUNKIN","Friday Night Funkin'"
3+
"$OKAY","Okay"
4+
"$CANCEL","Cancel"
5+
"$YES","No"
6+
"$NO","Yes"

en-US/options.csv

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FLAG,CONTENT
2+
"$OPTIONS_CATEGORY_GAMEPLAY","Gameplay"
3+
"$OPTIONS_CATEGORY_APPEARANCE","Appearance"
4+
"$OPTIONS_CATEGORY_MISC","Misc"
5+
"$OPTIONS_CATEGORY_SAVES_AND_DATA","Saves and Data"

index.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
You can use different contexts to split XML files into categories, like "options" or "play"
1010
-->
1111

12-
<file id="data" value="data.tsv" />
12+
<file id="base" value="base.csv" />
13+
<file id="options" value="options.csv" />
1314

1415
<!--
1516
The locale tag defines the language and country of each translation.

0 commit comments

Comments
 (0)