diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index de875ae9a..fe18d5063 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -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.
diff --git a/README.adoc b/README.adoc
index 7469636ca..8282c88c2 100644
--- a/README.adoc
+++ b/README.adoc
@@ -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 <= 3.12) Install current development version (**2.1dev45**) with:
+(3.8 < python <= 3.12) Install current development version (**2.1dev46**) with:
`pip install -U https://github.com/robotframework/RIDE/archive/master.zip`
diff --git a/src/robotide/application/application.py b/src/robotide/application/application.py
index 6957e5595..e917f9467 100644
--- a/src/robotide/application/application.py
+++ b/src/robotide/application/application.py
@@ -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()
@@ -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)
diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py
index 123bb3d43..6aa6af36e 100644
--- a/src/robotide/application/releasenotes.py
+++ b/src/robotide/application/releasenotes.py
@@ -152,7 +152,7 @@ def set_content(self, html_win, content):
RIDE (Robot Framework IDE)
{VERSION} is a new release with important enhancements and bug fixes. The reference for valid arguments is
Robot Framework 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.
+ moment 7.0.1rc1. However, internal library code is originally based on version 3.1.2, but adapted for new versions.
- This version supports Python 3.8 up to 3.12.
@@ -188,6 +188,7 @@ def set_content(self, html_win, content):
New Features and Fixes Highlights
+- Added UI localization and support for Japanese configured test suites, valid for Robot Framework version 7.0.1 or higher.
- Fixed keywords Find Usages in Grid Editor not finding certain values when using Gherkin.
- Improved selection of items from Tree in Text Editor. Now finds more items and selects whole line.
- Changed output in plugin Run Anything (Macros) to allow Zoom In/Out, and Copy content.
@@ -300,7 +301,7 @@ def set_content(self, html_win, content):
python -m robotide.postinstall -install
-RIDE {VERSION} was released on 03/June/2024.
+RIDE {VERSION} was released on 05/June/2024.
diff --git a/src/robotide/localization/RIDE.pot b/src/robotide/localization/RIDE.pot
index 6650695b0..f651fa970 100644
--- a/src/robotide/localization/RIDE.pot
+++ b/src/robotide/localization/RIDE.pot
@@ -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 \n"
"Language-Team: LANGUAGE \n"
diff --git a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo
new file mode 100644
index 000000000..fecc0944b
Binary files /dev/null and b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.mo differ
diff --git a/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po
new file mode 100644
index 000000000..91a554050
--- /dev/null
+++ b/src/robotide/localization/ja_JP/LC_MESSAGES/RIDE.po
@@ -0,0 +1,2758 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2024-06-05 00:30+0100\n"
+"PO-Revision-Date: 2024-06-05 00:33+0100\n"
+"Last-Translator: Hélio Guilherme \n"
+"Language-Team: \n"
+"Language: ja_JP\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: pygettext.py 1.5\n"
+"X-Generator: Poedit 3.4.4\n"
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/application.py:396
+msgid "Found Robot Framework version %s from %s."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:54
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:57
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:65
+msgid "Help"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:54
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:71
+msgid "Release Notes"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:56
+msgid "Show the release notes"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:57
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:77
+msgid "Offline Change Log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:59
+msgid "Show the offline CHANGELOG"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/releasenotes.py:78
+msgid "Check the online version at "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:31
+msgid "Re-open RIDE for Language Change"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:32
+msgid "Language change will only be correct after re-opening RIDE."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:33
+msgid "Do you want to CLOSE RIDE now?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:53
+msgid "Completed Language Change"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/restartutil.py:54
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:188
+msgid "You should close this RIDE (Process ID = "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:110
+msgid "New development version is available."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:110
+msgid "Upgrade?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:111
+msgid "You may install version %s with:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:112
+msgid "Click OK to Upgrade now!"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:113
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:221
+msgid ""
+"After upgrade you will see another dialog informing to close this RIDE "
+"instance."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:121
+msgid "No Upgrade Available"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:121
+msgid "You have the latest version of RIDE."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:122
+msgid " Have a nice day :)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:179
+msgid "An error occurred when installing new version"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:179
+msgid "Failed to Upgrade"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:188
+msgid "Completed Upgrade"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:208
+msgid "Update available"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:216
+msgid " available from "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:216
+msgid "New version "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:217
+msgid "See this version "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:219
+msgid "You can update with the command:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:220
+msgid "Or, click Upgrade Now"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:222
+msgid "See the latest development "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:227
+msgid ""
+"I'm using another method for RIDE updates\n"
+" and do not need automatic update checks"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:232
+msgid "remind me later"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/application/updatenotifier.py:238
+msgid "Upgrade Now"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:59
+msgid "Started RIDE %s using python version %s with wx version %s in %s."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:72
+msgid "Thanks all RIDE translators: %s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:74
+msgid "RIDE -- Robot Framework Test Data Editor"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:76
+msgid "RIDE %s running on Python %s."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:77
+msgid "RIDE is a test data editor for %s."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:78
+msgid "For more information, see project pages at %s."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:79
+msgid "Some of the icons are from %s."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:80
+msgid ""
+"%s the maintainer of the project thanks the original authors and all users "
+"and collaborators."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/context/__init__.py:81
+msgid ""
+"A special thanks to %s for having sponsored the development of translated "
+"test suites content compatibility with %s Version 6.1, in their %s."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:424
+msgid "Log options"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:432
+msgid "Output directory: "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:450
+msgid "Add suite name to log names"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:453
+msgid "Add timestamp to log names"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:456
+msgid "Save Console and Message logs"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:474
+msgid "Select Logs Directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:496
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:481
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:485
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:626
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571
+msgid "Arguments"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:508
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:534
+msgid "Arguments for the test run. Arguments are space separated list."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:553
+msgid "Does not execute - help or version option given"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:558
+msgid "Unknown option(s):"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:564
+msgid "Tests filters"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:573
+msgid "Only run tests with these tags:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:576
+msgid "Skip tests with these tags:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/runprofiles.py:672
+msgid "Script to run tests:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:99
+msgid "Stop a running test"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:100
+msgid "Step over"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:130
+msgid "A plugin for running tests from within RIDE"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:157
+msgid "Run"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:226
+msgid "Run Tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:226
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:230
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:236
+#: /home2/helio/github/RIDE/tools/../src/robotide/log/log.py:86
+#: /home2/helio/github/RIDE/tools/../src/robotide/parserlog/parserlog.py:85
+#: /home2/helio/github/RIDE/tools/../src/robotide/postinstall/desktopshortcut.py:54
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/searchtests.py:41
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:36
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:53
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:775
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:787
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:41
+msgid "Tools"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:228
+msgid "Run the selected tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:230
+msgid "Run Tests with Debug"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:233
+msgid "Run the selected tests with Debug"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:236
+msgid "Stop Test Run"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:320
+msgid "[ SENDING STOP SIGNAL ]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:327
+msgid "[ SENDING PAUSE SIGNAL ]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:333
+msgid "[ SENDING CONTINUE SIGNAL ]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:339
+msgid "[ SENDING STEP NEXT SIGNAL ]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:345
+msgid "[ SENDING STEP OVER SIGNAL ]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:378
+msgid "command: %s\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:448
+msgid ""
+"There are unsaved modifications.\n"
+" Do you want to save all changes and run the tests?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:450
+msgid "Unsaved Modifications"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:459
+msgid ""
+"No tests selected. \n"
+"Continue anyway?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:461
+msgid "No tests selected"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:523
+msgid ""
+"\n"
+"Test finished {}"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:557
+msgid "Messages log exceeded 80% of process memory, stopping for now..."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:715
+msgid "Start"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:716
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:719
+msgid "Start robot"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:717
+msgid "Start running the robot test suite"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:718
+msgid "Debug"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:720
+msgid "Start running the robot test suite with DEBUG loglevel"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:722
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:29
+msgid "Stop"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:726
+msgid "Pause"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:728
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:729
+msgid "Pause test execution"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:730
+msgid "Continue"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:733
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:734
+msgid "Continue test execution"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:735
+msgid "Next"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:736
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:737
+msgid "Step next"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:762
+msgid "Execution Profile: "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:765
+msgid "Choose which method to use for running the tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:772
+msgid "Open Logs Directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:774
+msgid "View All Logs in Explorer"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:775
+msgid " Report"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:776
+msgid "View Robot Report in Browser (CtrlCmd-R)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:778
+msgid " Log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:779
+msgid "View Robot Log in Browser (CtrlCmd-L)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:786
+msgid " Autosave "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:787
+msgid "Automatically save all changes before running"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:792
+msgid " Pause after failure "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:793
+msgid "Automatically pause after failing keyword"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:901
+msgid "Console log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:905
+msgid "Message log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1028
+msgid "Starting test:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1033
+msgid "Ending test:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1041
+msgid "UNKNOWN STATUS:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1069
+msgid "<< PAUSED >>"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1074
+msgid "<< CONTINUE >>"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1115
+msgid ""
+"There isn't logs directory. \n"
+"Please, run the tests and try again"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1117
+msgid "No logs directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1203
+msgid "elapsed time: %s pass: %s skip: %s fail: %s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/contrib/testrunner/testrunnerplugin.py:1234
+msgid " current keyword: "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:41
+msgid ""
+"[Navigate]\n"
+" !Go &Back | Go back to previous location in tree | Alt-%s | "
+"ART_GO_BACK\n"
+" !Go &Forward | Go forward to next location in tree | Alt-%s | "
+"ART_GO_FORWARD\n"
+" "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:55
+msgid "Add Tag to selected"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:55
+#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:57
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:37
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:108
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:644
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54
+msgid "Edit"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:57
+msgid "Clear Selected"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:70
+msgid "Add Tag To Selected"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/controller/ui/treecontroller.py:70
+msgid "Enter Tag Name"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:31
+msgid "[Edit]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:32
+msgid "&Undo | Undo last modification | Ctrlcmd-Z\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:33
+msgid "&Redo | Redo modification | Ctrlcmd-Y\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:35
+msgid "Cu&t | Cut | Ctrlcmd-X\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:36
+msgid "&Copy | Copy | Ctrlcmd-C\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:37
+msgid "&Paste | Paste | Ctrlcmd-V\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:38
+msgid "&Insert | Insert | Shift-Ctrl-V\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:39
+msgid "&Delete | Delete | Del\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:40
+msgid "Comment Rows | Comment selected rows | Ctrlcmd-3\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:41
+msgid "Comment Cells | Comment cells with # | Ctrlcmd-Shift-3\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:42
+msgid "Uncomment Rows | Uncomment selected rows | Ctrlcmd-4\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:43
+msgid "Uncomment Cells | Uncomment cells with # | Ctrlcmd-Shift-4\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:44
+msgid "Insert Cells | Insert Cells | Ctrlcmd-Shift-I\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:45
+msgid "Delete Cells | Delete Cells | Ctrlcmd-Shift-D\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:46
+msgid "Insert Rows | Insert Rows | Ctrlcmd-I\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:47
+msgid "Delete Rows | Delete Rows | Ctrlcmd-D\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:48
+msgid "Move Rows Up | Move Rows Up | Alt-Up\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:49
+msgid "Move Rows Down | Move Rows Down | Alt-Down\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:50
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:66
+msgid "[Tools]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:51
+msgid ""
+"Content Assistance (Ctrl-Space or Ctrl-Alt-Space) | Show possible keyword "
+"and variable completions | | | POSITION-70\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:88
+msgid ""
+"The default editor plugin. Also known as Grid or Cell Editor.\n"
+"\n"
+" This plugin implements editors for the various items of Robot Framework\n"
+" test data.\n"
+" "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/__init__.py:95
+msgid "Editor"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:27
+msgid ""
+"Possible pipes in the value must be escaped with a backslash like '\\|'."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:28
+msgid "Separate tags with a pipe character like 'tag | second tag | 3rd'."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:29
+msgid ""
+"Separate possible arguments with a pipe character like 'My Keyword | arg 1 | "
+"arg 2'."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:30
+msgid ""
+"Use time syntax like '1min 10s' or '2 hours' or give the value as seconds.\n"
+"Before Robot v3.0.1 an optional message could have been specified like '3 "
+"minutes | My message here'."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:33
+msgid ""
+"Specify the arguments separated with a pipe character like '${arg1} | "
+"${arg2}'.\n"
+"Default values are given using equal sign and the last argument can be a "
+"list variable.\n"
+"Example: '${arg1} | ${arg2}=default value | @{rest}'.\n"
+"Note. You can use variable shortcuts in this field."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:37
+msgid ""
+"Alias can be used to import same library multiple times with different "
+"names.\n"
+"Alias is prepended with: "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:39
+msgid ""
+" . Note that since Robot v6.0, imports with old WITH NAME are replaced by AS."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:41
+msgid "Give name and value of the variable."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:42
+msgid ""
+"Give name and value of the variable. Input list variable items into separate "
+"cells."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:44
+msgid ""
+"Give name and value of the variable. Input dictionary items into separate "
+"cells."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:45
+msgid "Individual items must be in format `key=value`"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:46
+msgid ""
+"Give name, optional arguments and optional alias of the library to import."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:47
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:49
+msgid "Separate multiple arguments with a pipe character like 'arg 1 | arg 2'."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:48
+msgid "Give path and optional arguments of the variable file to import."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:50
+msgid "Give path to the resource file to import."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:51
+msgid "Existing resources will be automatically loaded to the resource tree."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:52
+msgid "Give the documentation."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:52
+msgid "New resources must be created separately."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:53
+msgid "Simple formatting like *bold* and _italic_ can be used."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:54
+msgid "Additionally, URLs are converted to clickable links."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:55
+msgid "These tags are set to all test cases in this test suite."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:56
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:61
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:65
+msgid "Inherited tags are not shown in this view."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:57
+msgid ""
+"These tags are set to all test cases in this test suite unless test cases "
+"have their own tags."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:59
+msgid ""
+"These tags are applied to all test cases in this test suite. This field "
+"exists since Robot Framework 6.0 and will replace Force and Default Tags "
+"after version 7.0."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:63
+msgid ""
+"These tags are set to this test case in addition to Force Tags and they "
+"override possible Default Tags."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:66
+msgid ""
+"This keyword is executed before executing any of the test cases or lower "
+"level suites."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:68
+msgid ""
+"This keyword is executed after all test cases and lower level suites have "
+"been executed."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:70
+msgid ""
+"This keyword is executed before every test case in this suite unless test "
+"cases override it."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:72
+msgid ""
+"This keyword is executed after every test case in this suite unless test "
+"cases override it."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:74
+msgid "This keyword is executed before other keywords in this test case."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:75
+msgid "Overrides possible Test Setup set on the suite level."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:76
+msgid ""
+"This keyword is executed after other keywords in this test case even if the "
+"test fails."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:77
+msgid "Overrides possible Test Teardown set on the suite level."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:78
+msgid "Specifies the default template keyword used by tests in this suite."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:79
+msgid ""
+"The test cases will contain only data to use as arguments to that keyword."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:80
+msgid "Specifies the template keyword to use."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:81
+msgid ""
+"The test itself will contain only data to use as arguments to that keyword."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:83
+msgid ""
+"Specify the return value. Use a pipe character to separate multiple values."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:85
+msgid ""
+"Maximum time test cases in this suite are allowed to execute before aborting "
+"them forcefully."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:86
+msgid "Can be overridden by individual test cases using Timeout setting."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:87
+msgid ""
+"Maximum time this test/keyword is allowed to execute before aborting it "
+"forcefully."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:88
+msgid ""
+"With test cases this setting overrides Test Timeout set on the suite level."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:89
+msgid "Give a name and a value for the suite metadata."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:90
+msgid "Give a name for the new test case."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:91
+msgid "Give a name and arguments for the new user keyword."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/dialoghelps.py:92
+msgid "Give a name for the new user keyword."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:72
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:483
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:724
+msgid "Comment"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:123
+msgid "Scalar Variable"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:130
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:150
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:170
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:196
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:546
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:569
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:594
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:624
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:90
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:92
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:316
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355
+msgid "Name"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:131
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:151
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:171
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:547
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:483
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:724
+msgid "Value"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:143
+msgid "List Variable"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:163
+msgid "Dictionary Variable"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:187
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:651
+msgid "Library"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:197
+msgid "Alias"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:197
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:223
+msgid "Args"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:216
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:666
+msgid "Variables"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:222
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:240
+msgid "Path"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:235
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:658
+msgid "Resource"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:253
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101
+msgid "Documentation"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:302
+msgid "Force Tags"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:315
+msgid "Default Tags"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:328
+msgid "Test Tags"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:341
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:61
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:85
+msgid "Tags"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:369
+msgid "Suite Setup is run before any tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:374
+msgid "Suite Setup"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:387
+msgid "Suite Teardown"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:401
+msgid "Test Setup"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:415
+msgid "Test Teardown"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:428
+msgid "Setup"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:441
+msgid "Teardown"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:454
+msgid "Template"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:468
+msgid "Test Template"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:497
+msgid "Return Value"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:514
+msgid "Test Timeout"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:528
+msgid "Timeout"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:541
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:724
+msgid "Metadata"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:560
+msgid "New Test Case"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:585
+msgid "Copy User Keyword"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editordialogs.py:614
+msgid "New User Keyword"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:162
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:393
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:194
+msgid " (READ ONLY)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:224
+msgid "Settings"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:343
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:61
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:85
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:143
+msgid "Source"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/editors.py:380
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:207
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:476
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:741
+msgid "Find Usages"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/fieldeditors.py:187
+msgid "Columns"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/fieldeditors.py:191
+msgid ""
+"Number of columns that are shown in this editor. Selected value is stored "
+"and used globally."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:86
+msgid "Delete Cells\tCtrl-Shift-D"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:86
+msgid "Insert Cells\tCtrl-Shift-I"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:87
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:348
+msgid "Insert Rows\tCtrl-I"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:87
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:349
+msgid "Delete Rows\tCtrl-D"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:88
+msgid "Copy\tCtrl-C"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:88
+msgid "Cut\tCtrl-X"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:88
+msgid "Select All\tCtrl-A"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:89
+msgid "Delete\tDel"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:89
+msgid "Insert\tCtrl-Shift-V"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:89
+msgid "Paste\tCtrl-V"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:92
+msgid "Create Keyword"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:93
+msgid "Extract Keyword"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:94
+msgid "Extract Variable"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:95
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1127
+msgid "Rename Keyword"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:96
+msgid "Find Where Used"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:97
+msgid "JSON Editor\tCtrl-Shift-J"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:99
+msgid "Go to Definition\tCtrl-B"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:101
+msgid "Undo\tCtrl-Z"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:102
+msgid "Redo\tCtrl-Y"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:104
+msgid "Make Variable\tCtrl-1"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:105
+msgid "Make List Variable\tCtrl-2"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:106
+msgid "Make Dict Variable\tCtrl-5"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:108
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:351
+msgid "Comment Cells\tCtrl-Shift-3"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:109
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:352
+msgid "Uncomment Cells\tCtrl-Shift-4"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:110
+msgid "Move Cursor Down\tAlt-Enter"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:112
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:343
+msgid "Comment Rows\tCtrl-3"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:113
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:344
+msgid "Uncomment Rows\tCtrl-4"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:114
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:345
+msgid "Move Rows Up\tAlt-Up"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:115
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:346
+msgid "Move Rows Down\tAlt-Down"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:116
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:347
+msgid "Swap Row Up\tCtrl-T"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:891
+msgid ""
+"Keyword was not detected by RIDE\n"
+"
Possible corrections:
\n"
+" \n"
+" - Import library or resource file containing the keyword."
+"li>\n"
+"
- For library import errors: Consider importing library spec "
+"XML\n"
+" (Tools / Import Library Spec XML or by adding the XML file with "
+"the\n"
+" correct name to PYTHONPATH) to enable keyword completion\n"
+" for example for Java libraries.\n"
+" Library spec XML can be created using libdoc tool from Robot "
+"Framework.
\n"
+"
"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1127
+msgid "New name"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1139
+msgid "Save"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1140
+msgid "Cancel"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1166
+msgid "Error in JSON:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1166
+msgid "Save anyway?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1167
+msgid "Validation Error!"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1308
+msgid "Please select what you want to check for usage"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1311
+msgid "Complete cell content"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1312
+msgid "Variable "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/kweditor.py:1324
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:662
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:49
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:127
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:184
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:98
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:160
+msgid "Search"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:37
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:368
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:667
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:768
+msgid "Delete"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:37
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:663
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:764
+msgid "Move Up\tCtrl-Up"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/listeditor.py:37
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:664
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:765
+msgid "Move Down\tCtrl-Down"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:100
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233
+msgid "Clear"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:483
+msgid "Variable"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:484
+msgid "Add Dict"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:484
+msgid "Add List"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:484
+msgid "Add Scalar"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571
+msgid "Import"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:571
+msgid "Name / Path"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:572
+msgid "Import Failed Help"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:586
+msgid "Add Import"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:629
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:33
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:62
+msgid "Import Library Spec XML"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:672
+msgid ""
+"
Possible corrections and notes:
\n"
+" \n"
+" - Import failure is shown with red color.
\n"
+" - See Tools / View RIDE Log for detailed information about the "
+"failure.
\n"
+" - If the import contains a variable that RIDE has not "
+"initialized, consider adding the variable\n"
+" to variable table with a default value.
\n"
+" - For library import failure: Consider importing library spec "
+"XML (Tools / Import Library Spec XML or by\n"
+" adding the XML file with the correct name to PYTHONPATH) to "
+"enable keyword completion\n"
+" for example for Java libraries.\n"
+" Library spec XML can be created using libdoc tool from Robot "
+"Framework.\n"
+" For more information see \n"
+" wiki.\n"
+"
\n"
+"
"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:672
+msgid "Import failure handling"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/settingeditors.py:725
+msgid "Add Metadata"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:131
+msgid "Text Edit"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:464
+msgid "ERROR: Data sanity check failed!"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:464
+msgid "Error at line"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:465
+msgid "Reset changes?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:466
+msgid "Can not apply changes from Text Editor"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:645
+msgid "Apply Changes"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:672
+msgid "Syntax colorization disabled due to missing requirements."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:673
+msgid "Get help"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:688
+msgid ""
+"Syntax colorization
\n"
+" \n"
+" Syntax colorization for Text Edit uses Pygments syntax highlighter.\n"
+"
\n"
+" \n"
+" Install Pygments from command line with:\n"
+"
\n"
+" pip install pygments\n"
+"
\n"
+" Or:\n"
+" \n"
+" easy_install pygments\n"
+"
\n"
+" Then, restart RIDE.\n"
+" \n"
+" \n"
+" If you do not have pip or easy_install,\n"
+" follow these instructions.\n"
+"
\n"
+" \n"
+" For more information about installing Pygments, see the site.\n"
+"
\n"
+" "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:713
+msgid "Getting syntax colorization"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/editor/texteditor.py:812
+msgid "No matches found."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/log/log.py:45
+msgid "RIDE Log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/log/log.py:86
+msgid "View RIDE Log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/parserlog/parserlog.py:45
+msgid "Parser Log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/parserlog/parserlog.py:85
+msgid "View Parser Log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/postinstall/desktopshortcut.py:55
+msgid "Create RIDE Desktop Shortcut"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:42
+msgid "Text background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:82
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:93
+msgid "Reset colors to default"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:83
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:94
+msgid "Save or Load settings"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:122
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:193
+msgid "Font Size"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:134
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:205
+msgid "Zoom Factor"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:140
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:211
+msgid "Use fixed width font"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:146
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:217
+msgid "Font Face"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:158
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:161
+msgid "Text Editor"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:162
+msgid "Text Editor Settings"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:173
+msgid "Argument foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:174
+msgid "Comment foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:175
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:404
+msgid "Error foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:176
+msgid "Gherkin keyword foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:177
+msgid "Heading foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:178
+msgid "Import foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:179
+msgid "Variable foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:180
+msgid "Keyword definition foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:181
+msgid "Keyword call foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:182
+msgid "Separator"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:183
+msgid "Setting foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:184
+msgid "Syntax characters"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:189
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:402
+msgid "Text foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:229
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:232
+msgid "Grid Editor"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:233
+msgid "Grid Editor Settings"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:242
+msgid "Default column size"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:249
+msgid "Auto size columns"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:253
+msgid ""
+"Max column size\n"
+"(applies when auto size is on)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:258
+msgid "Word wrap and auto size rows"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:263
+msgid "Enable auto suggestions"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:301
+msgid "User Keyword Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:302
+msgid "Library Keyword Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:303
+msgid "Variable Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:304
+msgid "Unknown Variable Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:305
+msgid "Comments Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:306
+msgid "Default Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:307
+msgid "Empty Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:328
+msgid "Variable Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:329
+msgid "Keyword Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:330
+msgid "Mandatory Field Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:331
+msgid "Optional Field Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:332
+msgid "Mandatory Empty Field Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:333
+msgid "Unknown Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:334
+msgid "Error Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:335
+msgid "Highlight Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:361
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:364
+msgid "Test Runner"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:365
+msgid "Test Runner Settings"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:369
+msgid "Colors will be active after next RIDE restart."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:383
+msgid "Shows console colors set by"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:385
+msgid "Asks for confirmation to run all tests if none selected "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:405
+msgid "Fail foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:406
+msgid "Pass foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/editors.py:407
+msgid "Skip foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:96
+msgid "Apply to Project and File Explorer panels"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:142
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:286
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:566
+msgid "RIDE - Preferences"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:230
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:138
+msgid "Language"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:243
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:246
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:249
+msgid "General"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:247
+msgid "General Settings"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:256
+msgid "Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:257
+msgid "Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:258
+msgid "Secondary Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:259
+msgid "Secondary Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:260
+msgid "Text Foreground"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/general.py:261
+msgid "Help Background"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:28
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:32
+msgid "Importing"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:31
+msgid "Library imports and PYTHONPATH"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:42
+msgid "Comma separated list of libraries to be automatically imported."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:44
+msgid ""
+"Comma separated list of directories to be added to PYTHONPATH when libraries "
+"are searched."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/imports.py:46
+msgid "Comma separated list of directories containing library spec files."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:41
+msgid "Save or Load Settings"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:47
+msgid "Load settings from file..."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:48
+msgid "Save settings to file..."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:53
+msgid "Current directory:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:70
+msgid "File with Settings to Load"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:96
+msgid "Save Settings to file"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:109
+msgid "Could not open settings file \"%s\" for writing"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:121
+msgid "Error trying to get '%s' from file %s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/managesettingsdialog.py:136
+msgid "Invalid config file '%s': %s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:28
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:31
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:32
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:34
+msgid "Saving"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:41
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114
+msgid "Is Task?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:42
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:114
+msgid "Default for Tasks or Tests sections."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:43
+msgid "Reformat?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:44
+msgid "Should it recalculate identation on Save?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:61
+msgid "Default file format:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:64
+msgid "TXT format separator:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:67
+msgid "Line separator:"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:69
+msgid ""
+"Possible values are native (of current OS) CRLF (Windows) and LF (Unixy)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:71
+msgid "Separating spaces"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/preferences/saving.py:73
+msgid "Number of spaces between cells when saving in txt format"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:41
+msgid "Add recently opened files to the file menu."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:118
+msgid "No recent files"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:118
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:124
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:151
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/actiontriggers.py:54
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:140
+msgid "File"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:119
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:125
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:153
+msgid "Exit"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/recentfiles/recentfiles.py:142
+msgid "Open %s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:27
+msgid ""
+"The specified command string will be split from whitespaces into a command\n"
+"and its arguments. If either the command or any of the arguments require\n"
+"internal spaces, they must be written as ''.\n"
+"\n"
+"The command will be executed in the system directly without opening a "
+"shell.\n"
+"This means that shell commands and extensions are not available. For "
+"example,\n"
+"in Windows batch files to execute must contain the '.bat' extension and "
+"'dir'\n"
+"command does not work.\n"
+"\n"
+"Examples:\n"
+" robot.bat --include smoke C:\\my_tests\n"
+" svn update /home/robot\n"
+" C:\\ProgramFiles\\App\\prg.exe argumentwithspace,\n"
+"Run configurations are stored in the RIDE settings file.\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:45
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:55
+msgid "Manage Run Configurations"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:99
+msgid "New"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:99
+msgid "Remove"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/configmanagerui.py:101
+msgid "Command"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:30
+msgid ""
+"A plugin for executing commands on the system.\n"
+"\n"
+" This plugin enables creation of persistent run configurations and\n"
+" execution of those. Output of the executed command is displayed in a\n"
+" separate tab."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:55
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:57
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/runanything.py:65
+msgid "Macros"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:26
+msgid "finished"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:27
+msgid "Run Again"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/run/ui.py:28
+msgid "running"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:36
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/searchtests.py:35
+msgid "Search Tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:50
+msgid "Tag Search"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:61
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:85
+msgid "Test"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:66
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:90
+msgid "Results: "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:82
+msgid ""
+"Find matches using tag patterns. See RF User Guide or 'robot --help' for "
+"more information."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:96
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:846
+msgid "Include"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:139
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:189
+msgid "Add all to selected"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:156
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:164
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:211
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:284
+msgid "Results: %d"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:177
+msgid "Info. "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:195
+msgid "Find matches by test name, documentation and/or tag."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/dialogsearchtests.py:212
+msgid "Search term"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/searchtests/searchtests.py:33
+msgid "A plugin for searching tests based on name, tags and documentation"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:60
+msgid "Library Spec XML|*.xml|All Files|*.*"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:77
+msgid ""
+"Library \"%s\" imported\n"
+"from \"%s\"\n"
+"This may require RIDE restart."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:78
+msgid "Info"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:80
+msgid "Could not import library from file \"%s\""
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/spec/specimporter.py:80
+msgid "Import failed"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108
+msgid "Type"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:108
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:220
+msgid "Directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:160
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:288
+msgid "New Resource File"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:162
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:117
+msgid "Format"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:174
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:189
+msgid "Parent Directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:175
+msgid "Choose Parent Directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:192
+msgid "Created Path"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:273
+msgid "New Project"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:302
+msgid "Add Suite"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:326
+msgid "Add Directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:338
+msgid "Set Data Format"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:362
+msgid "Change recursively"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:381
+msgid ""
+"Provide format for initialization file in directory\n"
+"\"%s\"."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:395
+msgid "Open"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:400
+msgid "Robot data (*.robot)|*.robot"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:401
+msgid "Robot data (*.txt)|*.txt"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:402
+msgid "Robot resource file (*.resource)|*.resource"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:403
+msgid "Robot Tab Separated data (*.tsv)|*.tsv"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/filedialogs.py:405
+msgid "All files|*.*"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:29
+msgid ""
+"Provides a tree view for Files and Folders. Opens selected item with mouse "
+"right-click."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:61
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:117
+msgid "Files"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:66
+msgid "View"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:66
+msgid "View File Explorer"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/fileexplorerplugin.py:68
+msgid "Show File Explorer panel"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:35
+msgid ""
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:36
+msgid ""
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:37
+msgid ""
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:39
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:59
+msgid "Search Keywords"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:43
+msgid "A plugin for searching keywords based on name or documentation."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:55
+msgid "Search keywords from libraries and resources"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:173
+msgid "Search term: "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:180
+msgid "Search documentation"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:185
+msgid "Source: "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/keywordsearch.py:355
+msgid "Description"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:57
+msgid "[File]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:58
+msgid "!&New Project | Create a new top level suite | Ctrlcmd-N | ART_NEW\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:60
+msgid ""
+"!&Open Test Suite | Open file containing tests | Ctrlcmd-O | ART_FILE_OPEN\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:61
+msgid ""
+"!Open &Directory | Open directory containing datafiles | Shift-Ctrlcmd-O | "
+"ART_FOLDER_OPEN\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:62
+msgid "!Open External File | Open file in Code Editor | | ART_NORMAL_FILE\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:63
+msgid "!&Save | Save selected datafile | Ctrlcmd-S | ART_FILE_SAVE\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:64
+msgid "!Save &All | Save all changes | Ctrlcmd-Shift-S | ART_FILE_SAVE_AS\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:65
+msgid "!E&xit | Exit RIDE | Ctrlcmd-Q\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:67
+msgid "!Search Unused Keywords | | | | POSITION-54\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:68
+msgid "!Manage Plugins | | | | POSITION-81\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:69
+msgid "!View All Tags | | F7 | | POSITION-82\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:70
+msgid "!Preferences | | | | POSITION-99\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:71
+msgid "[Help]\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:72
+msgid "!Shortcut keys | RIDE shortcut keys\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:73
+msgid "!User Guide | Robot Framework User Guide\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:74
+msgid "!Wiki | RIDE User Guide (Wiki)\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:75
+msgid "!Report a Problem | Open browser to SEARCH on the RIDE issue tracker\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:76
+msgid "!About | Information about RIDE\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:77
+msgid "!Check for Upgrade | Looks at PyPi for new released version\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:175
+msgid "Saved %s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:176
+msgid "Saved all files"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:199
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:228
+msgid "Validation Error"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:203
+msgid "\"%s\" is read only"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:204
+msgid "Modification prevented"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:274
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:107
+msgid "Test Suites"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:375
+msgid ""
+"There are unsaved modifications.\n"
+"Do you want to save your changes before exiting?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:377
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:465
+msgid "Warning"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:464
+msgid ""
+"There are unsaved modifications.\n"
+"Do you want to proceed without saving?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:501
+msgid "Choose a directory containing Robot files"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:653
+msgid "Workspace modifications detected on the file system."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:654
+msgid "Do you want to reload the workspace?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:656
+msgid "Answering will discard unsaved changes."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:657
+msgid "Answering will ignore the changes on disk."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:658
+msgid "Files Changed On Disk"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:700
+msgid "Customize..."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:788
+msgid "search unused keywords"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:788
+msgid "stop test run"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:789
+msgid "preview"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:789
+msgid "view ride log"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:831
+msgid "Shortcut keys for RIDE"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:869
+msgid "Show"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:870
+msgid "Hide"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/mainframe.py:871
+msgid "Close"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:48
+msgid "Manage Plugins"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:63
+msgid "Installed Plugins\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:82
+msgid "Enabled"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:83
+msgid "Plugin"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/pluginmanager.py:93
+msgid ""
+"Info. Enabling and disabling plugins might require RIDE restart for menus to "
+"work."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:32
+msgid ""
+"(Obsolete) Provides preview of the test data in HTML, TSV and TXT formats."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:41
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:100
+msgid "Preview"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:43
+msgid "Show preview of the current file"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:83
+msgid "Text (Pipes)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:83
+msgid "Text (Spaces)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/preview.py:123
+msgid "Print"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:39
+msgid "Search unused keywords"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:66
+msgid ""
+"This dialog helps you finding unused keywords within your opened project.\n"
+"If you want, you can restrict the search to a set of files with the filter."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:70
+msgid "Filter is"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:71
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:242
+msgid "inactive"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:84
+msgid "Filter"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:91
+msgid "Use RegEx"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:93
+msgid ""
+"Here you can define one or more strings separated by comma (e.g. common,"
+"abc,123).\n"
+"The filter matches if at least one string is part of the filename.\n"
+"If you don't enter any strings, all opened files are included"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:101
+msgid "Test case files"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:104
+msgid "Resource files"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:106
+msgid "Mode"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:107
+msgid "exclude"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:107
+msgid "include"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:109
+msgid "Test the filter"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:139
+msgid "Keyword"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:146
+msgid "Delete marked keywords"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:157
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:320
+msgid "Unused Keywords"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:163
+msgid "Abort"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:247
+msgid "active"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:270
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:353
+msgid "Unused Keywords (%d)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:279
+msgid "(None)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:282
+msgid ""
+"Keywords of the following files will be included in the search:\n"
+"\n"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:283
+msgid "Included files"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:339
+msgid "Searching.%s \t- %s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:354
+msgid "Search finished - Found %d Unused Keywords"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:402
+msgid "listing datafiles"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/review.py:405
+msgid "searching from "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:37
+msgid "View all tags"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:76
+msgid "Tag"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:77
+msgid "Occurrences"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:82
+msgid "The List"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:85
+msgid "Refresh"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:86
+msgid "Included Tag Search"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:89
+msgid "Excluded Tag Search"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:147
+msgid ""
+"Total tests %d, Tests with tags %d, Unique tags %d\n"
+"Currently selected tests %d"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233
+msgid "Select all"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:233
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:262
+msgid "Rename"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:234
+msgid "Show tests with this tag"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:234
+msgid "Show tests without this tag"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:261
+msgid "Renaming tag '%s'."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:276
+msgid "Delete a tag '%s' ?"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/tagdialogs.py:276
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:642
+msgid "Confirm"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:238
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:344
+msgid "New Resource"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:342
+msgid "New Suite\tCtrl-Shift-F"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:343
+msgid "New Directory"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:346
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:468
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:555
+msgid "New User Keyword\tCtrl-Shift-K"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:347
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:469
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:556
+msgid "New Scalar\tCtrl-Shift-V"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:348
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:470
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:557
+msgid "New List Variable\tCtrl-Shift-L"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:349
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:471
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:558
+msgid "New Dictionary Variable"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:351
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:474
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:561
+msgid "Change Format"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:352
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:485
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:577
+msgid "Open Containing Folder"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:373
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:569
+msgid "Select All Tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:374
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:570
+msgid "Deselect All Tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:375
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:571
+msgid "Select Only Failed Tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:376
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:572
+msgid "Select Only Passed Tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:386
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:482
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:574
+msgid "Exclude"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:388
+msgid "Collapse all"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:388
+msgid "Expand all"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:428
+msgid ""
+"Directory contains unsaved data!\n"
+"You must save data before excluding."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:473
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:560
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:665
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:766
+msgid "Rename\tF2"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:475
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:480
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:562
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:567
+msgid "Sort Keywords"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:477
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:563
+msgid "Delete\tCtrl-Shift-D"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:479
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:565
+msgid "Sort Variables"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:484
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:576
+msgid "Remove Read Only"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:514
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:616
+msgid ""
+"File contains unsaved data!\n"
+"You must save data before excluding."
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:554
+msgid "New Test Case\tCtrl-Shift-T"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:566
+msgid "Sort Tests"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:642
+msgid "Delete test case file"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:662
+msgid "Copy\tCtrl-Shift-C"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treenodehandlers.py:815
+msgid "Add Resource"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:61
+msgid "Provides a tree view for Test Suites "
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:213
+msgid "External Resources"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/ui/treeplugin.py:348
+msgid "%s (excluded)"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:58
+msgid "'%s' - %d matches found - Searching%s"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:63
+msgid "'%s' - %d matches"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:85
+msgid "Go to definition"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:143
+msgid "Location"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:143
+msgid "Usage"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176
+msgid "Imported Location"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176
+msgid "Imported name"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176
+msgid "Importing Location"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/usages/usagesdialog.py:176
+msgid "Importing Name"
+msgstr ""
+
+#: /home2/helio/github/RIDE/tools/../src/robotide/validators/__init__.py:150
+msgid "%s cannot be empty"
+msgstr ""
diff --git a/src/robotide/preferences/__init__.py b/src/robotide/preferences/__init__.py
index 70edb36d2..467ff74fe 100644
--- a/src/robotide/preferences/__init__.py
+++ b/src/robotide/preferences/__init__.py
@@ -30,6 +30,7 @@ class Languages:
('English', 'en-GB', wx.LANGUAGE_ENGLISH), ('Spanish', 'es-ES', wx.LANGUAGE_SPANISH),
('Finnish', 'fi-FI', wx.LANGUAGE_FINNISH), ('French', 'fr-FR', wx.LANGUAGE_FRENCH),
('Hindi', 'hi-IN', wx.LANGUAGE_HINDI), ('Italian', 'it-IT', wx.LANGUAGE_ITALIAN),
+ ('Japanese', 'ja', wx.LANGUAGE_JAPANESE), # Since RF 7.0.1
('Dutch', 'nl-NL', wx.LANGUAGE_DUTCH), ('Polish', 'pl-PL', wx.LANGUAGE_POLISH),
('Portuguese', 'pt-PT', wx.LANGUAGE_PORTUGUESE),
('Brazilian Portuguese', 'pt-BR', wx.LANGUAGE_PORTUGUESE_BRAZILIAN),
diff --git a/src/robotide/version.py b/src/robotide/version.py
index 97022dda7..cd7a90f75 100644
--- a/src/robotide/version.py
+++ b/src/robotide/version.py
@@ -14,4 +14,4 @@
# limitations under the License.
#
# Automatically generated by `tasks.py`.
-VERSION = 'v2.1dev45'
+VERSION = 'v2.1dev46'
diff --git a/tools/geni18n.py b/tools/geni18n.py
index 22300842e..5c7394237 100644
--- a/tools/geni18n.py
+++ b/tools/geni18n.py
@@ -20,7 +20,7 @@
# we remove English as source code strings are in English
-supportedLang = ['bg_BG', 'da_DK', 'es_ES', 'hi_IN', 'it_IT', 'pl_PL', 'sv_SE', 'uk_UA', 'zh_TW', 'bs_BA', 'de_DE', 'fi_FI',
+supportedLang = ['bg_BG', 'da_DK', 'es_ES', 'hi_IN', 'it_IT', 'ja_JP', 'pl_PL', 'sv_SE', 'uk_UA', 'zh_TW', 'bs_BA', 'de_DE', 'fi_FI',
'hu_HU', 'pt_BR', 'ro_RO', 'th_TH', 'tr_TR', 'vi_VN', 'cs_CZ', 'en_US', 'fr_FR', 'nl_NL', 'pt_PT', 'ru_RU', 'zh_CN' ]
# for l in appC.supLang: