Index: trunk/extensions/WikiBhasha/src/lang/en/strings.js |
— | — | @@ -96,7 +96,7 @@ |
97 | 97 | " for content contribution." + |
98 | 98 | "<br><br>" + |
99 | 99 | "Current WikiBhasha beta version: 1.0.0<br><br>" + |
100 | | - "<a href=\"mailto:wikibfb@microsoft.com?subject=WikiBhasha Feedback\">Feedback to WikiBhasha team</a> welcome.", |
| 100 | + "<a href=\"mailto:wikibfb@microsoft.com?subject=WikiBhasha beta Feedback\">Feedback to WikiBhasha team</a> welcome.", |
101 | 101 | "<b>Supported Platforms: </b><P><P>\tIE 7/8 on Windows XP/Vista/Win7 and " + |
102 | 102 | "Firefox 3.5 or above on Linux Fedora 11/12. " + |
103 | 103 | "<b><P><P> Supported Languages: </b><P><P>\t" + |
Index: trunk/extensions/WikiBhasha/src/lang/de/strings.js |
— | — | @@ -95,7 +95,7 @@ |
96 | 96 | " for content contribution." + |
97 | 97 | "<br><br>" + |
98 | 98 | "Current WikiBhasha beta version: 1.0.0<br><br>" + |
99 | | - "<a href=\"mailto:wikibfb@microsoft.com?subject=WikiBhasha Feedback\">Feedback to WikiBhasha team</a> welcome.", |
| 99 | + "<a href=\"mailto:wikibfb@microsoft.com?subject=WikiBhasha beta Feedback\">Feedback to WikiBhasha team</a> welcome.", |
100 | 100 | "<b>Supported Platforms: </b><P><P>\tIE 7/8 on Windows XP/Vista/Win7 and " + |
101 | 101 | "Firefox 3.5 or above on Linux Fedora 11/12. " + |
102 | 102 | "<b><P><P> Supported Languages: </b><P><P>\t" + |
Index: trunk/extensions/WikiBhasha/src/js/core/feedbackWindow.js |
— | — | @@ -97,7 +97,7 @@ |
98 | 98 | |
99 | 99 | $("#feedBackMessageDiv").html(wbLocal.feedbackThankYouMessage); |
100 | 100 | |
101 | | - $("#wbFeedbackEmail").attr("href", "mailto:" + wbGlobalSettings.feedbackEmail + "?subject=WikiBhasha Feedback"); |
| 101 | + $("#wbFeedbackEmail").attr("href", "mailto:" + wbGlobalSettings.feedbackEmail + "?subject=WikiBhasha beta Feedback"); |
102 | 102 | } |
103 | 103 | else { |
104 | 104 | //always show the feedback form area and hide the thank you message. |
— | — | @@ -193,7 +193,7 @@ |
194 | 194 | responseSmile=" (+): "; |
195 | 195 | } |
196 | 196 | |
197 | | - document.location.href=wbUtil.stringFormat("mailto:{0}?subject=WikiBhasha feedback{1}&body={2}",wbGlobalSettings.feedbackEmail, responseSmile, $feedbackTextValue); |
| 197 | + document.location=wbUtil.stringFormat("mailto:{0}?subject=WikiBhasha beta feedback{1}&body={2}",wbGlobalSettings.feedbackEmail, responseSmile, $feedbackTextValue); |
198 | 198 | |
199 | 199 | wbFeedback.isInvokedOnMainWindowExit = false; |
200 | 200 | $("#" + wbFeedback.windowId).hide(); |
Index: trunk/extensions/WikiBhasha/src/js/core/globalSettings.js |
— | — | @@ -141,6 +141,7 @@ |
142 | 142 | ['French', 'fr', 'Français'], |
143 | 143 | ['Korean', 'ko', '한국어'], |
144 | 144 | ['Hindi', 'hi', 'हिन्दी'], |
| 145 | + ['Indonesian', 'id', 'Bahasa Indonesia'], |
145 | 146 | ['Italian', 'it', 'italiano'], |
146 | 147 | ['Hebrew', 'he', 'עברית'], |
147 | 148 | ['HaitianCreole', 'ht', 'Kreyòlayisyen'], |
— | — | @@ -160,6 +161,8 @@ |
161 | 162 | ['Swedish', 'sv', 'Svenska'], |
162 | 163 | ['Thai', 'th', 'ภาษาไทย'], |
163 | 164 | ['Turkish', 'tr', 'Türkç'], |
| 165 | + ['Ukrainian', 'uk', 'Українська'], |
| 166 | + ['Vietnamese', 'vi', 'Tiếng Việt'], |
164 | 167 | ['ChineseSimplified', 'zh-CHS', '简体中文'], |
165 | 168 | ['ChineseTraditional', 'zh-CHT', '繁體中文'] |
166 | 169 | ], |
Index: trunk/extensions/WikiBhasha/src/js/core/languageSelectionWindow.js |
— | — | @@ -151,7 +151,7 @@ |
152 | 152 | wbWikiSite.getTargetLanguageTitle(wbGlobalSettings.sourceLanguageCode, wbGlobalSettings.targetLanguageCode, wbGlobalSettings.sourceLanguageArticleTitle, function(data) { |
153 | 153 | var isTitleBeingTranslated = false; |
154 | 154 | //if article exists |
155 | | - if (data.length > 0) { |
| 155 | + if (data && data.length > 0) { |
156 | 156 | wbGlobalSettings.targetLanguageArticleTitle = decodeURIComponent(($.trim(data))); |
157 | 157 | $("#wbArticleTitleInput").hide(); |
158 | 158 | $("#wbArticleTitleLabel").hide(); |