mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-03-16 21:30:24 +00:00
wish: un-tick 'fuzzy' when a translation is changed #16
This commit is contained in:
parent
9af2fd17a1
commit
734426e688
3 changed files with 44 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -14,6 +14,7 @@ testproject/htmlcov/
|
||||||
testproject/rosetta.db
|
testproject/rosetta.db
|
||||||
testproject/src/
|
testproject/src/
|
||||||
testproject/.coverage
|
testproject/.coverage
|
||||||
|
/env
|
||||||
.tox
|
.tox
|
||||||
.eggs
|
.eggs
|
||||||
.idea
|
.idea
|
||||||
|
|
|
||||||
|
|
@ -122,6 +122,14 @@ google.setOnLoadCallback(function() {
|
||||||
$(e).removeAttr('checked');
|
$(e).removeAttr('checked');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
$('tbody .translation textarea').change(function () {
|
||||||
|
var fuzzy = $(this).closest('tr').find('input[type="checkbox"]');
|
||||||
|
if(fuzzy[0].checked){
|
||||||
|
fuzzy[0].checked = false;
|
||||||
|
fuzzy.removeAttr( 'checked')
|
||||||
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -32,3 +32,38 @@ msgid_plural ""
|
||||||
"%(num_bottles)s bottles of beer on the wall\n"
|
"%(num_bottles)s bottles of beer on the wall\n"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:3573
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Old password does not match"
|
||||||
|
msgstr "Die beiden Passwortfelder stimmen nicht überein"
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:3693
|
||||||
|
#, fuzzy, python-format
|
||||||
|
msgid "First time topup minimum %10.2f!"
|
||||||
|
msgstr "Shop kann max. %10.2f aufladen!"
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:3767
|
||||||
|
msgid "Card already activated!"
|
||||||
|
msgstr "Kundenkarte bereits aktiviert!"
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:3775
|
||||||
|
msgid "Authorization failed!"
|
||||||
|
msgstr "Authentifizierung fehlgeschlagen!"
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:3777
|
||||||
|
msgid "User locked with an other card!"
|
||||||
|
msgstr "Benutzer hat bereits eine andere Kundenkarte!"
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:3836
|
||||||
|
msgid "Password less withdraw active"
|
||||||
|
msgstr "Passwort erfolgreich geändert"
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:3971
|
||||||
|
msgid "Insufficient balance to create voucher."
|
||||||
|
msgstr "Ungenügend Guthaben zur erstellung des Gutscheins."
|
||||||
|
|
||||||
|
#: apps/services/comet/backend/so/cashbox.py:4194
|
||||||
|
msgid "match not found"
|
||||||
|
msgstr "Spiel nicht gefunden"
|
||||||
Loading…
Reference in a new issue