mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-04-22 22:14:45 +00:00
#206: added a tooltip explaining fuzzy entries
This commit is contained in:
parent
d4ee6ca736
commit
a5c5203e09
5 changed files with 21 additions and 4 deletions
6
CHANGES
6
CHANGES
|
|
@ -1,6 +1,12 @@
|
|||
Version History
|
||||
===============
|
||||
|
||||
|
||||
Version 0.9.3 (unreleased)
|
||||
--------------------------
|
||||
* Added a tooltip to explain fuzzy entries (#206)
|
||||
|
||||
|
||||
Version 0.9.2
|
||||
-------------
|
||||
* Cleanup of imports, and use relative imports. Hopefully fixes #209.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
VERSION = (0, 9, 2)
|
||||
VERSION = (0, 9, 3)
|
||||
default_app_config = "rosetta.apps.RosettaAppConfig"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -35,3 +35,14 @@ div.module {margin-bottom: 20px;}
|
|||
#toolbar #translate-all { float:right}
|
||||
#toolbar form { float:left; }
|
||||
#changelist table thead th { padding: 2px 5px; }
|
||||
|
||||
|
||||
.info-tip::after {
|
||||
content: '?';
|
||||
color: white;
|
||||
background-color: #bbb;
|
||||
margin-left: 5px;
|
||||
padding: 1px 5px;
|
||||
border-radius: 10px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "rosetta/base.html" %}
|
||||
{% load i18n %}
|
||||
{% load i18n static %}
|
||||
|
||||
{% block pagetitle %}{{block.super}} - {% trans "Language selection" %}{% endblock %}
|
||||
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
<th class="r">{% trans "Progress"%}</th>
|
||||
<th class="r">{% trans "Messages" %}</th>
|
||||
<th class="r">{% trans "Translated" %}</th>
|
||||
<th class="r">{% trans "Fuzzy"%}</th>
|
||||
<th class="info-tip r" title="{% trans "Fuzzy entries call for revision by the translator." %}" class="r">{% trans "Fuzzy"%}</th>
|
||||
<th class="r">{% trans "Obsolete"%}</th>
|
||||
<th>{% trans "File" %}</th>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@
|
|||
<th><div class="text">{% trans "Original" %}</div></th>
|
||||
{% if main_language %}<th>{{ main_language }}</th>{% endif %}
|
||||
<th>{{ rosetta_i18n_lang_name }}</th>
|
||||
<th class="c"><input style="display: inline;" id="action-toggle" type="checkbox"> {% trans "Fuzzy" %}</th>
|
||||
<th class="info-tip c" title="{% trans "Fuzzy entries call for revision by the translator." %}"><input style="display: inline;" id="action-toggle" type="checkbox"> {% trans "Fuzzy" %}</th>
|
||||
<th>{% trans "Occurrences(s)" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
|
|||
Loading…
Reference in a new issue