To show the enable/disable links in administer views area for all languages i patched modules/contrib/views/views_ui.module like this:

Index: modules/contrib/views/views_ui.module
===================================================================
--- modules/contrib/views/views_ui.module       (Revision 239)
+++ modules/contrib/views/views_ui.module       (Arbeitskopie)
@@ -268,10 +268,10 @@
     }

     $links = array(l(t('add'), "admin/views/add/$view->name"));
-    if ($status == 'Enabled') {
+    if ($status == t('Enabled')) {
       $links[] = l(t('disable'), "admin/views/disable/$view->name");
     }
-    else if ($status == 'Disabled') {
+    else if ($status == t('Disabled')) {
       $links[] = l(t('enable'), "admin/views/enable/$view->name");
     }

Comments

anarcat’s picture

Status: Needs review » Reviewed & tested by the community

sounds fine here, although copy-pasting the patch doesn't work here. but in principle, it's good and it works, i just tested it on the CVS.

ricmadeira’s picture

Priority: Normal » Critical

I tested the patch with Views CVS and it works!

I am updating the priority to critical because people like me, who by default use an interface in another language, are not even aware of these functions otherwise.

merlinofchaos’s picture

Status: Reviewed & tested by the community » Fixed

Checked in a fix for this. Thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)