What is 30832 number of meaning?

What is 30832 number of meaning?

by Uyanga Tuvshinsanaa -
အကြောင်းပြန်မှု အရေအတွက်: 5


1. What is 30832 number of meaning? 

2. I downloaded last version of English language pack (.zip file) from lang.moodle.org. Then I unzipped file there was 2775 files (.php) and 159311 strings on each file. I can't find this 30832 number. How does it count?








Uyanga Tuvshinsanaa ထံသို့ အကြောင်းပြန်ရာတွင်

Re: What is 30832 number of meaning?

by Mitja Podreka -
Language pack maintainers ၏ ရုပ်ပုံ
Mitja Podreka ထံသို့ အကြောင်းပြန်ရာတွင်

Re: What is 30832 number of meaning?

by Uyanga Tuvshinsanaa -
Uyanga Tuvshinsanaa ထံသို့ အကြောင်းပြန်ရာတွင်

Re: What is 30832 number of meaning?

by Mitja Podreka -
Language pack maintainers ၏ ရုပ်ပုံ
Mitja Podreka ထံသို့ အကြောင်းပြန်ရာတွင်

Re: What is 30832 number of meaning?

by koen roggemans -
Language pack maintainers ၏ ရုပ်ပုံ
If you open the translator https://lang.moodle.org/local/amos/view.php en choose "standard" in the components list, then all the selected components add up to that number (which is 30839 by now)
Uyanga Tuvshinsanaa ထံသို့ အကြောင်းပြန်ရာတွင်

Re: What is 30832 number of meaning?

by Mitsuhiro Yoshida -
Language pack maintainers ၏ ရုပ်ပုံ

If you only need a list of core en language files, I think you can use the following shell script to obtain it.

#!/bin/sh

MDLHOME=/var/www/html/moodle

cd $MDLHOME
DIRLIST=`find -depth -type d -iname "en"|sed 's/\.\///g'`
for dirname in $DIRLIST
do
  ls $dirname/*
done
If you need a copy of all core en language directories and files, you can use the following shell script.

#!/bin/sh

MDLHOME=/var/www/html/moodle
LANGWORK=/home/lang_work

cd $MDLHOME
DIRLIST=`find -depth -type d -iname "en"|sed 's/\.\///g'`
cd $LANGWORK
for dirname in $DIRLIST
do
  mkdir -p $dirname
  \cp -frp $MDLHOME/$dirname/* ./$dirname/
done