Repository: couchdb-fauxton Updated Branches: refs/heads/master 0e34b78c4 -> ae2225e9d
mango: text adjustments PR: #427 PR-URL: https://github.com/apache/couchdb-fauxton/pull/427 Reviewed-By: garren smith <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/330e1e37 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/330e1e37 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/330e1e37 Branch: refs/heads/master Commit: 330e1e3777b0a219043f6cfdc2d455dedb4eb719 Parents: 0e34b78 Author: Robert Kowalski <[email protected]> Authored: Wed May 20 11:59:20 2015 +0200 Committer: Robert Kowalski <[email protected]> Committed: Wed May 27 14:09:38 2015 +0200 ---------------------------------------------------------------------- app/addons/documents/routes-mango.js | 2 +- i18n.json.default | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/330e1e37/app/addons/documents/routes-mango.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/routes-mango.js b/app/addons/documents/routes-mango.js index 2bad50a..6e3e990 100644 --- a/app/addons/documents/routes-mango.js +++ b/app/addons/documents/routes-mango.js @@ -146,7 +146,7 @@ function (app, FauxtonAPI, Helpers, BaseRoute, Databases, toggleDisabled: true, crumbs: [ {'type': 'back', 'link': Databases.databaseUrl(this.database)}, - {'name': 'Create new index', 'link': Databases.databaseUrl(this.database) } + {'name': app.i18n.en_US['mango-indexeditor-title'], 'link': Databases.databaseUrl(this.database) } ] })); http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/330e1e37/i18n.json.default ---------------------------------------------------------------------- diff --git a/i18n.json.default b/i18n.json.default index 69f0d0b..7e478dc 100644 --- a/i18n.json.default +++ b/i18n.json.default @@ -1,11 +1,12 @@ { "en_US": { "mango-descripton": "Mango is an easy way to find documents on predefined indexes.", - "new-mango-index": "New Mango Index", + "new-mango-index": "Mango Indexes", "mango-help-title": "Mango", "run-query-with-mango": "Run A Query with Mango", "mango-title-editor": "Mango Query", "mango-descripton-index-editor": "Mango is an easy way to find documents on predefined indexes. <br/><br/>Create an Index to query it afterwards. The example in the editor shows how to create an index for the field '_id'. <br/><br/>The Indexes that you already created are listed on the right.", - "mango-additional-indexes-heading": "Your additional Indexes:" + "mango-additional-indexes-heading": "Your additional Indexes:", + "mango-indexeditor-title": "Mango" } }
