Skip to content

Commit 3effd5f

Browse files
Minor fixes. Language updates (#2987)
1 parent 6051e57 commit 3effd5f

File tree

59 files changed

+167
-173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+167
-173
lines changed

src/robotide/application/CHANGELOG.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Changelog</title><link rel="stylesheet" type="text/css" href="docbook-xsl.css" /><meta name="generator" content="DocBook XSL Stylesheets Vsnapshot" /></head><body><div xml:lang="en" class="article" lang="en"><div class="titlepage"><div><div><h2 class="title"><a id="id1337"></a>Changelog</h2></div></div><hr /></div><p>All notable changes to this project will be documented in this file.</p><p>The format is based on <a class="ulink" href="http://keepachangelog.com/en/1.0.0/" target="_top">Keep a Changelog</a>
3-
and this project adheres to <a class="ulink" href="http://semver.org/spec/v2.0.0.html" target="_top">Semantic Versioning</a>.</p><p>&lt;!-- == <a class="ulink" href="https://github.com/robotframework/RIDE" target="_top">Unreleased</a> -→</p><div class="section"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="_ulink_url_https_github_com_robotframework_ride_blob_master_doc_releasenotes_ride_2_2rc1_rst_2_2rc1_ulink_2025_09_25"></a>1. <a class="ulink" href="https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.2rc1.rst" target="_top">2.2rc1</a> - 2025-09-25</h2></div></div></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="_added"></a>1.1. Added</h3></div></div></div><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
3+
and this project adheres to <a class="ulink" href="http://semver.org/spec/v2.0.0.html" target="_top">Semantic Versioning</a>.</p><div class="section"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="_ulink_url_https_github_com_robotframework_ride_blob_master_doc_releasenotes_ride_2_2rc1_rst_2_2rc1_ulink_2025_09_25"></a>1. <a class="ulink" href="https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.2rc1.rst" target="_top">2.2rc1</a> - 2025-09-25</h2></div></div></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="_added"></a>1.1. Added</h3></div></div></div><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
44
Added Project Settings concept. The Project Settings is a file named ``ride_settings.cfg`` inside a directory named ``.robot`` located in the Test Suite directory. The search for this directory, is done upwards from the Test Suite directory. You can create an empty directory, ``.robot`` located in the Test Suite directory or any parent directory, and RIDE will create and use the ``ride_settings.cfg``. This way you can have different settings, like: colors, UI language, and Plugins settings. The most relevant example is the creation of different Run Profiles or Arguments, in Test Runner. When you open a Test Suite outside one with Project Settings, you will see a dialog to restart RIDE, to use the ``Global Settings``.
55
</li></ul></div></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="_fixed"></a>1.2. Fixed</h3></div></div></div><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
66
Fixed crash when renaming test cases names on Tree (Project Explorer), by cancelling with Escape or by adding a Space in the end.

src/robotide/application/application.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@
6363
FONT_FACE = 'font face'
6464
SPC = " "
6565
FIVE_SPC = SPC*5
66-
NORMAL_SETTINGS = _('Global Settings')
67-
NORMAL_SETTINGS_DETECTED = _('Global Settings Detected')
68-
PROJECT_SETTINGS = _('Project Settings')
69-
PROJECT_SETTINGS_DETECTED = _('Project Settings Detected')
7066

7167

7268
def restart_RIDE(args:list):
@@ -211,6 +207,10 @@ def OnExit(self):
211207
def reload_preferences(self, message):
212208
if message.keys[0] != "General":
213209
return
210+
NORMAL_SETTINGS = _('Global Settings')
211+
NORMAL_SETTINGS_DETECTED = _('Global Settings Detected')
212+
PROJECT_SETTINGS = _('Project Settings')
213+
PROJECT_SETTINGS_DETECTED = _('Project Settings Detected')
214214
if self.preferences:
215215
del self.preferences
216216
if self.settings_path:

src/robotide/localization/RIDE.pot

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
msgid ""
66
msgstr ""
77
"Project-Id-Version: PACKAGE VERSION\n"
8-
"POT-Creation-Date: 2025-09-16 02:31+0100\n"
8+
"POT-Creation-Date: 2025-09-27 00:21+0100\n"
99
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1010
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1111
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -15,19 +15,19 @@ msgstr ""
1515
"Generated-By: pygettext.py 1.5\n"
1616

1717

18-
#: src/robotide/application/application.py:66
18+
#: src/robotide/application/application.py:210
1919
msgid "Global Settings"
2020
msgstr ""
2121

22-
#: src/robotide/application/application.py:67
22+
#: src/robotide/application/application.py:211
2323
msgid "Global Settings Detected"
2424
msgstr ""
2525

26-
#: src/robotide/application/application.py:68
26+
#: src/robotide/application/application.py:212
2727
msgid "Project Settings"
2828
msgstr ""
2929

30-
#: src/robotide/application/application.py:69
30+
#: src/robotide/application/application.py:213
3131
msgid "Project Settings Detected"
3232
msgstr ""
3333

0 Bytes
Binary file not shown.

src/robotide/localization/bg_BG/LC_MESSAGES/RIDE.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
msgid ""
22
msgstr ""
33
"Project-Id-Version: robotframework-ride\n"
4-
"POT-Creation-Date: 2025-09-16 02:31+0100\n"
4+
"POT-Creation-Date: 2025-09-27 00:21+0100\n"
55
"PO-Revision-Date: 2025-06-21 14:53\n"
66
"Last-Translator: \n"
77
"Language-Team: Bulgarian\n"
@@ -17,19 +17,19 @@ msgstr ""
1717
"X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n"
1818
"X-Crowdin-File-ID: 14\n"
1919

20-
#: src/robotide/application/application.py:66
20+
#: src/robotide/application/application.py:210
2121
msgid "Global Settings"
2222
msgstr ""
2323

24-
#: src/robotide/application/application.py:67
24+
#: src/robotide/application/application.py:211
2525
msgid "Global Settings Detected"
2626
msgstr ""
2727

28-
#: src/robotide/application/application.py:68
28+
#: src/robotide/application/application.py:212
2929
msgid "Project Settings"
3030
msgstr ""
3131

32-
#: src/robotide/application/application.py:69
32+
#: src/robotide/application/application.py:213
3333
msgid "Project Settings Detected"
3434
msgstr ""
3535

0 Bytes
Binary file not shown.

src/robotide/localization/bs_BA/LC_MESSAGES/RIDE.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
msgid ""
22
msgstr ""
33
"Project-Id-Version: robotframework-ride\n"
4-
"POT-Creation-Date: 2025-09-16 02:31+0100\n"
4+
"POT-Creation-Date: 2025-09-27 00:21+0100\n"
55
"PO-Revision-Date: 2025-06-21 14:53\n"
66
"Last-Translator: \n"
77
"Language-Team: Bosnian\n"
@@ -18,19 +18,19 @@ msgstr ""
1818
"X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n"
1919
"X-Crowdin-File-ID: 14\n"
2020

21-
#: src/robotide/application/application.py:66
21+
#: src/robotide/application/application.py:210
2222
msgid "Global Settings"
2323
msgstr ""
2424

25-
#: src/robotide/application/application.py:67
25+
#: src/robotide/application/application.py:211
2626
msgid "Global Settings Detected"
2727
msgstr ""
2828

29-
#: src/robotide/application/application.py:68
29+
#: src/robotide/application/application.py:212
3030
msgid "Project Settings"
3131
msgstr ""
3232

33-
#: src/robotide/application/application.py:69
33+
#: src/robotide/application/application.py:213
3434
msgid "Project Settings Detected"
3535
msgstr ""
3636

0 Bytes
Binary file not shown.

src/robotide/localization/cs_CZ/LC_MESSAGES/RIDE.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
msgid ""
22
msgstr ""
33
"Project-Id-Version: robotframework-ride\n"
4-
"POT-Creation-Date: 2025-09-16 02:31+0100\n"
4+
"POT-Creation-Date: 2025-09-27 00:21+0100\n"
55
"PO-Revision-Date: 2025-06-21 14:53\n"
66
"Last-Translator: \n"
77
"Language-Team: Czech\n"
@@ -17,22 +17,22 @@ msgstr ""
1717
"X-Crowdin-File: /master/src/robotide/localization/RIDE.pot\n"
1818
"X-Crowdin-File-ID: 14\n"
1919

20-
#: src/robotide/application/application.py:66
20+
#: src/robotide/application/application.py:210
2121
#, fuzzy
2222
msgid "Global Settings"
2323
msgstr "Obecná nastavení"
2424

25-
#: src/robotide/application/application.py:67
25+
#: src/robotide/application/application.py:211
2626
#, fuzzy
2727
msgid "Global Settings Detected"
2828
msgstr "Obecná nastavení"
2929

30-
#: src/robotide/application/application.py:68
30+
#: src/robotide/application/application.py:212
3131
#, fuzzy
3232
msgid "Project Settings"
3333
msgstr "Nastavení"
3434

35-
#: src/robotide/application/application.py:69
35+
#: src/robotide/application/application.py:213
3636
msgid "Project Settings Detected"
3737
msgstr ""
3838

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)