Skip to content

Commit

Permalink
24.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
syno-community committed May 1, 2024
1 parent d53c74a commit 0dd3b67
Show file tree
Hide file tree
Showing 80 changed files with 9,265 additions and 7,223 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ For the packag of has been initialized and build image, please go to [RR-CUSTOM]
# If you have to replace certain language string of the project, please suggest and modify translation changes within each correlated PO file
mkdir -p lang/zh_CN/LC_MESSAGES
msginit -i lang/rr.pot -l zh_CN.UTF-8 -o lang/zh_CN/LC_MESSAGES/rr.po
# Update translation files
for I in $(find lang -path *rr.po); do msgmerge --width=256 -U ${I} lang/rr.pot; done
# This formatting process will be automatically conducted during packaging.
msgfmt lang/zh_CN/LC_MESSAGES/rr.po -o lang/zh_CN/LC_MESSAGES/rr.mo
for I in $(find lang -path *rr.po); do msgfmt ${I} -o ${I/.po/.mo}; done
```

- PRs of new language translations towards the project is welcomed with appreciation.
Expand All @@ -69,6 +71,7 @@ For the packag of has been initialized and build image, please go to [RR-CUSTOM]
- `ja_JP`: `@andatoshiki` & `@toshikidev`
- `ko_KR`: `@EXP` : jeong1986
- `ru_RU`: `@Alex`: TG
- `tr_TR`: `@miraç bahadır öztürk`: miracozturk
- `vi_VN`: `@Ngọc Anh Trần`: mr.ngocanhtran
- `zh_CN`: `@rrorg`
- `zh_HK`: `@rrorg`
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.4.7
24.4.8
90 changes: 77 additions & 13 deletions docs/addons.json

Large diffs are not rendered by default.

Binary file modified docs/addons.xlsx
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/issues.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
$("#model").on("change", changeModel);
$("#version").on("change", changeVersion);
$("#language").on("change", changeVersion);
$('#addons').val("acpid,mountloader,reboottoloader");
setModels();
});
});
Expand Down Expand Up @@ -241,13 +242,16 @@
<div class="form-group-body">
<select class="form-select form-control select-sm input-contrast" id="language" name="inputs[language]"
value="">
<option value="ar_SA">ar_SA</option>
<option value="de_DE">de_DE</option>
<option selected="selected" value="en_US">en_US</option>
<option value="es_ES">es_ES</option>
<option value="fr_FR">fr_FR</option>
<option value="ja_JP">ja_JP</option>
<option value="ko_KR">ko_KR</option>
<option value="ru_RU">ru_RU</option>
<option value="th_TH">th_TH</option>
<option value="tr_TR">tr_TR</option>
<option value="uk_UA">uk_UA</option>
<option value="vi_VN">vi_VN</option>
<option value="zh_CN">zh_CN</option>
Expand Down
Binary file modified docs/models.xlsx
Binary file not shown.
Loading

0 comments on commit 0dd3b67

Please sign in to comment.