mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
parent
4e159b25fb
commit
ccd867d388
2 changed files with 44 additions and 0 deletions
11
README.md
vendored
11
README.md
vendored
|
@ -165,6 +165,17 @@ If you'd like to add translations, take a look a look at the [english translatio
|
|||
|
||||
- Languages supported: English (`en`), Chinese (`zh`), French (`fr`), Spanish (`es`), Swedish (`sv`), German (`de`), Russian (`ru`).
|
||||
|
||||
### Report
|
||||
|
||||
lang | missing | percent
|
||||
--- | --- | ---
|
||||
es | cross_posts,cross_post,by,to,transfer_community,transfer_site | 96%
|
||||
de | cross_posts,cross_post,users,settings,subscribed,expires,nsfw,show_nsfw,crypto,monero,joined,by,to,transfer_community,transfer_site | 91%
|
||||
zh | cross_posts,cross_post,users,settings,nsfw,show_nsfw,monero,by,to,transfer_community,transfer_site | 93%
|
||||
fr | cross_posts,cross_post,users,settings,nsfw,show_nsfw,monero,by,to,transfer_community,transfer_site | 93%
|
||||
sv | cross_posts,cross_post,settings,nsfw,show_nsfw,monero,by,to,transfer_community,transfer_site | 94%
|
||||
ru | cross_posts,cross_post,monero,by,to,transfer_community,transfer_site | 96%
|
||||
|
||||
## Credits
|
||||
|
||||
Icon made by Andy Cuccaro (@andycuccaro).
|
||||
|
|
33
ui/translation_report.ts
vendored
Normal file
33
ui/translation_report.ts
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
import { en } from './src/translations/en';
|
||||
import { es } from './src/translations/es';
|
||||
import { de } from './src/translations/de';
|
||||
import { zh } from './src/translations/zh';
|
||||
import { fr } from './src/translations/fr';
|
||||
import { sv } from './src/translations/sv';
|
||||
import { ru } from './src/translations/ru';
|
||||
|
||||
let files = [
|
||||
{t: es, n: 'es'},
|
||||
{t: de, n: 'de'},
|
||||
{t: zh, n: 'zh'},
|
||||
{t: fr, n: 'fr'},
|
||||
{t: sv, n: 'sv'},
|
||||
{t: ru, n: 'ru'},
|
||||
];
|
||||
let masterKeys = Object.keys(en.translation);
|
||||
|
||||
let report = 'lang | missing | percent\n';
|
||||
report += '--- | --- | ---\n';
|
||||
|
||||
for (let file of files) {
|
||||
let keys = Object.keys(file.t.translation);
|
||||
let pct: number = (keys.length / masterKeys.length * 100);
|
||||
let missing = difference(masterKeys, keys);
|
||||
report += `${file.n} | ${missing} | ${pct.toFixed(0)}%\n`;
|
||||
}
|
||||
|
||||
console.log(report);
|
||||
|
||||
function difference(a: Array<string>, b: Array<string>): Array<string> {
|
||||
return a.filter(x => !b.includes(x));
|
||||
}
|
Loading…
Reference in a new issue