Repository: couchdb-fauxton Updated Branches: refs/heads/master e1df89f19 -> c90f22baa
Minor text changes This PR contains a few small text changes to make upper/lowercase a little more consistent. From @justin-mcdavid-ibm. Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/c90f22ba Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/c90f22ba Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/c90f22ba Branch: refs/heads/master Commit: c90f22baafeddd2956c6e9724b424ed03d16b38e Parents: e1df89f Author: Ben Keen <[email protected]> Authored: Mon Oct 26 13:29:13 2015 -0700 Committer: Ben Keen <[email protected]> Committed: Wed Nov 4 15:15:04 2015 -0800 ---------------------------------------------------------------------- app/addons/activetasks/components.react.jsx | 4 ++-- app/addons/activetasks/routes.js | 2 +- app/addons/databases/components.react.jsx | 6 +++--- app/addons/documents/index-editor/components.react.jsx | 4 ++-- app/addons/documents/resources.js | 2 +- app/addons/documents/routes-index-editor.js | 2 +- app/addons/documents/sidebar/sidebar.react.jsx | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c90f22ba/app/addons/activetasks/components.react.jsx ---------------------------------------------------------------------- diff --git a/app/addons/activetasks/components.react.jsx b/app/addons/activetasks/components.react.jsx index 40ce138..7e65399 100644 --- a/app/addons/activetasks/components.react.jsx +++ b/app/addons/activetasks/components.react.jsx @@ -209,8 +209,8 @@ define([ headerNames : [ ['type', 'Type'], ['database', 'Database'], - ['started-on', 'Started On'], - ['updated-on', 'Updated On'], + ['started-on', 'Started on'], + ['updated-on', 'Updated on'], ['pid', 'PID'], ['progress', 'Status'] ] http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c90f22ba/app/addons/activetasks/routes.js ---------------------------------------------------------------------- diff --git a/app/addons/activetasks/routes.js b/app/addons/activetasks/routes.js index 7352c72..3811a5f 100644 --- a/app/addons/activetasks/routes.js +++ b/app/addons/activetasks/routes.js @@ -29,7 +29,7 @@ function (app, FauxtonAPI, ActiveTasksResources, ActiveTasksComponents, Actions) 'activetasks': 'showActiveTasks' }, crumbs: [ - {'name': 'Active tasks', 'link': 'activetasks'} + {'name': 'Active Tasks', 'link': 'activetasks'} ], apiUrl: function () { var apiurl = window.location.origin + '/_active_tasks'; http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c90f22ba/app/addons/databases/components.react.jsx ---------------------------------------------------------------------- diff --git a/app/addons/databases/components.react.jsx b/app/addons/databases/components.react.jsx index 20110ef..98e85be 100644 --- a/app/addons/databases/components.react.jsx +++ b/app/addons/databases/components.react.jsx @@ -235,11 +235,11 @@ define([ selected={this.state.isPromptVisible} toggleCallback={this.onTrayToggle} containerClasses={headerButtonContainerClasses} - title="Add New Database" + title="Create Database" fonticon="fonticon-new-database" - text="Add New Database" /> + text="Create Database" /> <ComponentsReact.Tray ref="newDbTray" className="new-database-tray"> - <span className="add-on">Add New Database</span> + <span className="add-on">Create Database</span> <input id="js-new-database-name" type="text" onKeyUp={this.onKeyUpInInput} ref="newDbName" className="input-xxlarge" placeholder="Name of database" /> <a className="btn" id="js-create-database" onClick={this.onAddDatabase}>Create</a> </ComponentsReact.Tray> http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c90f22ba/app/addons/documents/index-editor/components.react.jsx ---------------------------------------------------------------------- diff --git a/app/addons/documents/index-editor/components.react.jsx b/app/addons/documents/index-editor/components.react.jsx index 62e52aa..28f0787 100644 --- a/app/addons/documents/index-editor/components.react.jsx +++ b/app/addons/documents/index-editor/components.react.jsx @@ -47,7 +47,7 @@ function (app, FauxtonAPI, React, Stores, Actions, Components, ReactComponents) return ( <div className="new-ddoc-section"> <div className="new-ddoc-input"> - <input value={this.state.designDoc} type="text" id="new-ddoc" onChange={this.onDesignDocChange} placeholder="Enter a Design Doc name" /> + <input value={this.state.designDoc} type="text" id="new-ddoc" onChange={this.onDesignDocChange} placeholder="Name" /> </div> </div> ); @@ -420,7 +420,7 @@ function (app, FauxtonAPI, React, Stores, Actions, Components, ReactComponents) </PaddedBorderedBox> <div className="padded-box"> <div className="control-group"> - <ConfirmButton id="save-view" text="Save & Build Index" /> + <ConfirmButton id="save-view" text="Save Document and Build Index" /> <DeleteView /> {this.getCompactButton()} </div> http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c90f22ba/app/addons/documents/resources.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/resources.js b/app/addons/documents/resources.js index e8d291c..ed7f811 100644 --- a/app/addons/documents/resources.js +++ b/app/addons/documents/resources.js @@ -594,7 +594,7 @@ function (app, FauxtonAPI, Documents, PagingCollection) { }]; defaultMenuLinks.push({ - title: 'Add new', + title: 'Add New', links: Documents.getExtensionLinks(database) }); http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c90f22ba/app/addons/documents/routes-index-editor.js ---------------------------------------------------------------------- diff --git a/app/addons/documents/routes-index-editor.js b/app/addons/documents/routes-index-editor.js index b156d1f..f614bd9 100644 --- a/app/addons/documents/routes-index-editor.js +++ b/app/addons/documents/routes-index-editor.js @@ -136,7 +136,7 @@ function (app, FauxtonAPI, Helpers, BaseRoute, Documents, IndexEditorComponents, toggleDisabled: true, crumbs: [ { type: 'back', link: Helpers.getPreviousPage(this.database) }, - { name: 'Create new index', link: url } + { name: 'Create Index', link: url } ] })); http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c90f22ba/app/addons/documents/sidebar/sidebar.react.jsx ---------------------------------------------------------------------- diff --git a/app/addons/documents/sidebar/sidebar.react.jsx b/app/addons/documents/sidebar/sidebar.react.jsx index 6a52217..fba0acd 100644 --- a/app/addons/documents/sidebar/sidebar.react.jsx +++ b/app/addons/documents/sidebar/sidebar.react.jsx @@ -53,7 +53,7 @@ function (app, FauxtonAPI, React, Stores, Actions, Components, DocumentViews) { }, this.getMangoLink()]); return [{ - title: 'Add new', + title: 'Add New', links: addNewLinks }]; }, @@ -257,7 +257,7 @@ function (app, FauxtonAPI, React, Stores, Actions, Components, DocumentViews) { }]); return [{ - title: 'Add new', + title: 'Add New', links: addNewLinks }]; },
