Difference between revisions of "Template talk:Gramps translations"

From Gramps
m (Questions about this page.)
m
Line 3: Line 3:
  
 
1. en_AU English (Australian)
 
1. en_AU English (Australian)
 +
 
it's real language in Gramps?
 
it's real language in Gramps?
 +
 
I not see it in /po/ dirs.
 
I not see it in /po/ dirs.
 +
 
Can I delete this language from list?
 
Can I delete this language from list?
  
 
2. I can't run this:
 
2. I can't run this:
 +
 
# check localisation percentage
 
# check localisation percentage
 
for file in *.po; do echo -n "${file} "; ./check_po -s ${file} | grep "Localized at"; done
 
for file in *.po; do echo -n "${file} "; ./check_po -s ${file} | grep "Localized at"; done
 +
 
But nice work this:
 
But nice work this:
 +
 
# check localisation percentage
 
# check localisation percentage
 
for file in *.po; do echo -n "${file} "; python3 ./check_po -s ${file} | grep "Localized at"; done
 
for file in *.po; do echo -n "${file} "; python3 ./check_po -s ${file} | grep "Localized at"; done
 +
 
What must be?
 
What must be?
 +
 
And file 'check_po' must be 'check_po' or 'check_po.py'?
 
And file 'check_po' must be 'check_po' or 'check_po.py'?

Revision as of 16:41, 29 July 2020

Good day, Say me please:

1. en_AU English (Australian)

it's real language in Gramps?

I not see it in /po/ dirs.

Can I delete this language from list?

2. I can't run this:

  1. check localisation percentage

for file in *.po; do echo -n "${file} "; ./check_po -s ${file} | grep "Localized at"; done

But nice work this:

  1. check localisation percentage

for file in *.po; do echo -n "${file} "; python3 ./check_po -s ${file} | grep "Localized at"; done

What must be?

And file 'check_po' must be 'check_po' or 'check_po.py'?