svn: /web/doc-editor/trunk/js/ui/component/ VCSLogGrid.js
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Sun, 22 Nov 2009 22:09:47 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=291156
Log:
Fix i18n string
Changed paths:
U web/doc-editor/trunk/js/ui/component/VCSLogGrid.js
Modified: web/doc-editor/trunk/js/ui/component/VCSLogGrid.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/VCSLogGrid.js 2009-11-22 22:05:59 UTC (rev 291155)
+++ web/doc-editor/trunk/js/ui/component/VCSLogGrid.js 2009-11-22 22:09:47 UTC (rev 291156)
@@ -77,22 +77,22 @@
ui.component._VCSLogGrid.columns = [
{
id : 'id',
- header : "Rev.",
+ header : _('Rev.'),
width : 40,
sortable : false,
dataIndex : 'revision'
}, {
- header : "Content",
+ header : _('Content'),
width : 130,
sortable : true,
dataIndex : 'content'
}, {
- header : "By",
+ header : _('By'),
width : 50,
sortable : true,
dataIndex : 'author'
}, {
- header : "Date",
+ header : _('Date'),
width : 85,
sortable : true,
dataIndex : 'date',
@@ -145,7 +145,7 @@
tbar : [{
scope : this,
id : this.prefix + '-PANEL-btn-log-' + this.fid,
- tooltip : '<b>View</b> the diff',
+ tooltip : _('<b>View</b> the diff'),
iconCls : 'iconViewDiff',
disabled : true,
handler : function()
@@ -196,7 +196,7 @@
}, {
scope : this,
id : this.prefix + '-PANEL-btn-refreshlog-' + this.fid,
- tooltip : '<b>Load/Refresh</b> revisions',
+ tooltip : _('<b>Load/Refresh</b> revisions'),
iconCls : 'refresh',
handler : function()
{