commit b1cec43982ce40a6ee7478d5ad07433ca4c8b9b6
parent 5e8c9669ea1a577632d6e0e1cde89089fc7fcd4b
Author: Simon Kornblith <simon@simonster.com>
Date: Mon, 11 Jul 2011 17:25:31 +0000
Closes #1620, Replace lowercase Transform Text option with sentence case
Diffstat:
2 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/chrome/content/zotero/bindings/itembox.xml b/chrome/content/zotero/bindings/itembox.xml
@@ -1819,9 +1819,6 @@
<![CDATA[
var val = this._getFieldValue(label);
switch (mode) {
- case 'lower':
- var newVal = val.toLowerCase();
- break;
case 'title':
var newVal = Zotero.Utilities.capitalizeTitle(val.toLowerCase(), true);
break;
@@ -2271,8 +2268,6 @@
oncommand="document.getBindingParent(this).textTransform(document.popupNode, 'title')"/>
<menuitem label="&zotero.item.textTransform.sentencecase;" class="menuitem-non-iconic"
oncommand="document.getBindingParent(this).textTransform(document.popupNode, 'sentence')"/>
- <menuitem label="&zotero.item.textTransform.lowercase;" class="menuitem-non-iconic"
- oncommand="document.getBindingParent(this).textTransform(document.popupNode, 'lower')"/>
</menupopup>
</menu>
</menupopup>
diff --git a/chrome/locale/en-US/zotero/zotero.dtd b/chrome/locale/en-US/zotero/zotero.dtd
@@ -97,7 +97,6 @@
<!ENTITY zotero.item.add "Add">
<!ENTITY zotero.item.attachment.file.show "Show File">
<!ENTITY zotero.item.textTransform "Transform Text">
-<!ENTITY zotero.item.textTransform.lowercase "lower case">
<!ENTITY zotero.item.textTransform.titlecase "Title Case">
<!ENTITY zotero.item.textTransform.sentencecase "Sentence case">