accerciser r422 - in trunk: . debian plugindata/validate
- From: eitani svn gnome org
- To: svn-commits-list gnome org
- Subject: accerciser r422 - in trunk: . debian plugindata/validate
- Date: Mon, 14 Jan 2008 20:28:43 +0000 (GMT)
Author: eitani
Date: Mon Jan 14 20:28:43 2008
New Revision: 422
URL: http://svn.gnome.org/viewvc/accerciser?rev=422&view=rev
Log:
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.5.
* plugindata/validate/basic.py: Added translator comments.
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/README
trunk/configure.in
trunk/debian/changelog
trunk/plugindata/validate/basic.py
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Mon Jan 14 20:28:43 2008
@@ -1,4 +1,23 @@
==============
+Version 1.1.5
+==============
+
+What's new
+==========
+- A new validation plugin that follows a test schema to produce an
+interactive report with potential a11y issues (bug #438495).
+- A new global hotkey that starts and stops the event monitor.
+
+New And Updated Translations
+============================
+- Jorge GonzÃlez (es)
+- Espen A. Stefansen (nb)
+- Yannig Marchegay (Kokoyaya) (oc)
+- Og Maciel (pt_BR)
+- Matej UrbanÄiÄ (sl)
+- Clytie Siddall (vi)
+
+==============
Version 1.1.3
==============
Modified: trunk/README
==============================================================================
--- trunk/README (original)
+++ trunk/README Mon Jan 14 20:28:43 2008
@@ -1,4 +1,4 @@
-Accerciser 1.1.3
+Accerciser 1.1.5
Just 15 minutes a day for better accessibility!
Description
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Mon Jan 14 20:28:43 2008
@@ -1,4 +1,4 @@
-AC_INIT(Accerciser, 1.1.3, eitan ascender com, accerciser)
+AC_INIT(Accerciser, 1.1.5, eitan ascender com, accerciser)
AC_CONFIG_SRCDIR(src/accerciser.in)
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
Modified: trunk/debian/changelog
==============================================================================
--- trunk/debian/changelog (original)
+++ trunk/debian/changelog Mon Jan 14 20:28:43 2008
@@ -1,3 +1,9 @@
+accerciser (1.1.5) gutsy; urgency=low
+
+ * New dev release.
+
+ -- Eitan Isaacson <eitan ascender com> Mon, 14 Jan 2008 12:14:01 -0800
+
accerciser (1.1.3) gutsy; urgency=low
* New dev release.
Modified: trunk/plugindata/validate/basic.py
==============================================================================
--- trunk/plugindata/validate/basic.py (original)
+++ trunk/plugindata/validate/basic.py Mon Jan 14 20:28:43 2008
@@ -74,6 +74,9 @@
pi = acc.getIndexInParent()
child = acc.parent.getChildAtIndex(pi)
if acc != child:
+ # Translators: The first variable is the role name of the object that has an
+ # index mismatch.
+ #
view.error(_('%s index in parent does not match child index') %
acc.getLocalizedRoleName(), acc)
@@ -157,6 +160,9 @@
target = rel.getTarget(i)
if self._checkForReadable(target):
return
+ # Translators: The first variable is the role name of the object that is missing
+ # the name or label.
+ #
view.error(_('%s missing name or label') % acc.getLocalizedRoleName(), acc,
self.URL)
@@ -206,6 +212,9 @@
for rel in rels:
if rel.getRelationType() == RELATION_MEMBER_OF:
return
+ # Translators: The radio button does not belong to a set, thus it is useless.
+ # The first variable is the object's role name.
+ #
view.error(_('%s does not belong to a set') % acc.getLocalizedRoleName(),
acc)
@@ -231,6 +240,11 @@
ir = t.getRowAtIndex(i)
ic = t.getColumnAtIndex(i)
if r != ir or c != ic:
+ # Translators: The row or column number retrieved from a table child's object
+ # at a certain index is wrong.
+ # The first variable is the role name of the object, the second is the
+ # given index.
+ #
view.error(_('%s index %d does not match row and column') %
(acc.getLocalizedRoleName(), i), acc)
return
@@ -251,6 +265,12 @@
ip = child.getIndexInParent()
i = t.getIndexAt(r, c)
if i != ip:
+ # Translators: The "parent index" is the order of the child in the parent.
+ # the "row and column index" should be the same value retrieved by the
+ # object's location in the table.
+ # The first variable is the object's role name, the second and third variables
+ # are index numbers.
+ #
view.error(_('%s parent index %d does not match row and column index %d') %
(acc.getLocalizedRoleName(), ip, i), acc)
return
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]