Skip to content

Commit

Permalink
Add Japanese initial files
Browse files Browse the repository at this point in the history
  • Loading branch information
HelioGuilherme66 committed Jun 5, 2024
1 parent c16db14 commit c9db796
Show file tree
Hide file tree
Showing 10 changed files with 2,769 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni

=== Added

- Added UI localization and support for Japanese configured test suites, valid for Robot Framework version 7.0.1 or higher.
- Added to Grid Editor, changing Zoom In/Out with ``Ctrl-Mouse Wheel`` and setting at Preferences.
- Added actions on columns of Grid Editor: Double-Click or Right Mouse Click, allows to edit the column name for Data
Driven or Templated; Left Mouse Click, selects the column cells.
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Likewise, the current version of wxPython, is 4.2.1, but RIDE is known to work w

`pip install -U robotframework-ride`

(3.8 < python &lt;= 3.12) Install current development version (**2.1dev45**) with:
(3.8 < python &lt;= 3.12) Install current development version (**2.1dev46**) with:

`pip install -U https://github.com/robotframework/RIDE/archive/master.zip`

Expand Down
4 changes: 2 additions & 2 deletions src/robotide/application/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def SetGlobalColour(self, message):
# print(f"DEBUG Application General : Enter SetGlobalColour message= {message.keys[0]}")
app = wx.App.Get()
_root = app.GetTopWindow()
theme = self.settings.get('General', None)
theme = self.settings.get_without_default('General')
font_size = theme[FONT_SIZE]
font_face = theme[FONT_FACE]
font = _root.GetFont()
Expand Down Expand Up @@ -307,7 +307,7 @@ def change_locale(self, message):
names = [n for n in Languages.names]
else:
names = [('English', 'en', wx.LANGUAGE_ENGLISH)]
general = self.settings.get('General', None)
general = self.settings.get_without_default('General')
language = general.get('ui language', 'English')
try:
idx = [lang[0] for lang in names].index(language)
Expand Down
5 changes: 3 additions & 2 deletions src/robotide/application/releasenotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def set_content(self, html_win, content):
<p><a class="reference external" href="https://github.com/robotframework/RIDE/">RIDE (Robot Framework IDE)</a>
{VERSION} is a new release with important enhancements and bug fixes. The reference for valid arguments is
<a class="reference external" href="https://robotframework.org/">Robot Framework</a> installed version, which is at this
moment 7.0. However, internal library code is originally based on version 3.1.2, but adapted for new versions.</p>
moment 7.0.1rc1. However, internal library code is originally based on version 3.1.2, but adapted for new versions.</p>
<p></p>
<ul class="simple">
<li>This version supports Python 3.8 up to 3.12.</li>
Expand Down Expand Up @@ -188,6 +188,7 @@ def set_content(self, html_win, content):
</ul>
<p><strong>New Features and Fixes Highlights</strong></p>
<ul class="simple">
<li>Added UI localization and support for Japanese configured test suites, valid for Robot Framework version 7.0.1 or higher.</li>
<li>Fixed keywords Find Usages in Grid Editor not finding certain values when using Gherkin.</li>
<li>Improved selection of items from Tree in Text Editor. Now finds more items and selects whole line.</li>
<li>Changed output in plugin Run Anything (Macros) to allow Zoom In/Out, and Copy content.</li>
Expand Down Expand Up @@ -300,7 +301,7 @@ def set_content(self, html_win, content):
<pre class="literal-block">
python -m robotide.postinstall -install
</pre>
<p>RIDE {VERSION} was released on 03/June/2024.</p>
<p>RIDE {VERSION} was released on 05/June/2024.</p>
<!-- <br/>
<h3>May The Fourth Be With You!</h3>
-->
Expand Down
2 changes: 1 addition & 1 deletion src/robotide/localization/RIDE.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-06-04 20:38+0100\n"
"POT-Creation-Date: 2024-06-05 00:36+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down
Binary file added src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo
Binary file not shown.
Loading

0 comments on commit c9db796

Please sign in to comment.