- 24 Jan, 2021 2 commits
- 25 Dec, 2020 1 commit
-
-
emmapeel authored
Currently translated at 5.4% (4 of 74 strings)
-
- 24 Dec, 2020 2 commits
- 10 Nov, 2020 1 commit
-
-
drebs authored
Currently translated at 24.6% (18 of 73 strings)
-
- 06 Nov, 2020 1 commit
-
-
drebs authored
Currently translated at 20.5% (15 of 73 strings)
-
- 03 Nov, 2020 7 commits
-
-
drebs authored
Currently translated at 100.0% (4 of 4 strings)
-
drebs authored
Currently translated at 19.2% (14 of 73 strings)
-
julho authored
Currently translated at 19.2% (14 of 73 strings)
-
drebs authored
Currently translated at 19.2% (14 of 73 strings)
-
violeta authored
Currently translated at 17.8% (13 of 73 strings)
-
drebs authored
Currently translated at 17.8% (13 of 73 strings)
-
violeta authored
Currently translated at 15.1% (11 of 73 strings)
-
- 29 Oct, 2020 1 commit
-
-
cbrownstein authored
-
- 23 Sep, 2020 1 commit
-
-
ignifugo authored
Currently translated at 93.2% (68 of 73 strings)
-
- 05 Sep, 2020 1 commit
-
-
emmapeel authored
Currently translated at 13.7% (10 of 73 strings)
-
- 22 Aug, 2020 1 commit
-
-
xin authored
Currently translated at 100.0% (4 of 4 strings)
-
- 19 Aug, 2020 1 commit
-
-
emmapeel authored
Currently translated at 12.3% (9 of 73 strings)
-
- 17 Aug, 2020 1 commit
-
-
Joaquín Serna authored
Currently translated at 100.0% (4 of 4 strings)
-
- 14 Aug, 2020 5 commits
-
-
emmapeel authored
Currently translated at 95.9% (70 of 73 strings)
-
emmapeel authored
Currently translated at 9.5% (7 of 74 strings)
-
emmapeel authored
Currently translated at 93.2% (68 of 73 strings)
-
emmapeel authored
Currently translated at 47.9% (35 of 73 strings)
-
emmapeel authored
Currently translated at 100.0% (73 of 73 strings)
-
- 23 Jul, 2020 2 commits
-
-
sajolida authored
-
sajolida authored
- /index and /about were serious mistakes! - /{install,upgrade}/*/*-overview.mdwn should be indexed for people searching for "install Tails from Windows" for example. - /install/download can be indexed as it provide links to the different installation and upgrade scenarios. - /install/download-iso shouldn't rather not be indexed as we don't want most people to use it without understanding that it's only for DVDs and VMs.
-
- 02 Jul, 2020 2 commits
-
-
cbrownstein authored
-
cbrownstein authored
-
- 23 Apr, 2020 1 commit
-
-
emmapeel authored
Currently translated at 50.6% (39 of 77 strings)
-
- 22 Apr, 2020 1 commit
-
-
emmapeel authored
Currently translated at 6.5% (5 of 77 strings)
-
- 15 Apr, 2020 1 commit
-
-
anonym authored
I used this hacky approach: git diff 6b9e13f1^..origin/master -- *.po > lots-of-fuzzy.patch patch -R -p1 < lots-of-fuzzy.patch git commit So I undid all the PO changes of #17005. The idea is to unfuzzy lots-of-fuzzy.patch and then apply this patch instead, and then squash those changes into the "revert" commit we made above, turning it into the commit I'm writing right now. The fuzzy cases I care aboute looke like this: -#, no-wrap -msgid "Online anonymity and censorship circumvention\n" +#, fuzzy, no-wrap +#| msgid "Online anonymity and censorship circumvention\n" +msgid "Online anonymity and censorship circumvention" msgstr "Onlineanonymität und Zensurumgehung\n" and should be transformed into this: #, no-wrap -msgid "Online anonymity and censorship circumvention\n" +msgid "Online anonymity and censorship circumvention" -msgstr "Onlineanonymität und Zensurumgehung\n" +msgstr "Onlineanonymität und Zensurumgehung" Behold this ugly state machine (my favored way of solving these kind of problems in small steps without having to think much about the whole problem): out = open('unfuzzy.patch', 'w') state = 0 fuzzy_buf = '' unfuzzy_buf = '' File.read('lots-of-fuzzy.patch').each_line do |line| line = line.chomp fuzzy_buf += line + "\n" if state == 0 && line == '-#, no-wrap' state = 1 unfuzzy_buf += " #, no-wrap\n" elsif state == 1 && /^-msgid ".*\\n"/.match(line) state = 2 unfuzzy_buf += line + "\n" elsif state == 1 && line == '-msgstr ""' ; elsif state == 2 && line == '+#, fuzzy, no-wrap' state = 3 elsif state == 3 && /^\+#| msgid ".*\\n"/.match(line) state = 4 elsif state == 4 && /^\+msgid ".*"/.match(line) state = 5 unfuzzy_buf += line + "\n" elsif state == 5 && /^ msgstr ".*\\n"/.match(line) state = 6 unfuzzy_buf += "-" + line[1..] + "\n" unfuzzy_buf += "+" + line[1..-4] + '"' + "\n" elsif state == 6 && /^\s*$/.match(line) state = 0 # Eh, so in total the above transformations mean that our hunk # results in one less line, so the diff offset is off by one => # bad patch! So we just add a line that we easily can remove # later. :) unfuzzy_buf += "+########sdf9s7d87fyusdf98sd7f098sd7f09sduf09uj######\n" unfuzzy_buf += line + "\n" out.write(unfuzzy_buf) fuzzy_buf = '' unfuzzy_buf = '' else state = 0 out.write(fuzzy_buf) fuzzy_buf = '' unfuzzy_buf = '' end end Then I applied unfuzzy.patch and used sed to kill the weird lines I had to introduce (see above): pattern="########sdf9s7d87fyusdf98sd7f098sd7f09sduf09uj######" for f in $(git grep -l ${pattern}); do sed -i "/${pattern}/d" ${f} done and squashed, and now we have 1386 fewer fuzzy strings, yay! And po_lint does not complain, which seems like a good sign. :)
-
- 12 Apr, 2020 1 commit
-
-
intrigeri authored
-
- 30 Mar, 2020 1 commit
-
-
gallium69 authored
Currently translated at 93.5% (72 of 77 strings)
-
- 29 Mar, 2020 6 commits
-
-
emmapeel authored
Currently translated at 96.1% (74 of 77 strings)
-
emmapeel authored
Currently translated at 3.9% (3 of 77 strings)
-
emmapeel authored
Currently translated at 7.8% (6 of 77 strings)
-
emmapeel authored
Currently translated at 13.0% (10 of 77 strings)
-
emmapeel authored
Currently translated at 11.7% (9 of 77 strings)
-
emmapeel authored
Currently translated at 13.0% (10 of 77 strings)
-