Skip to content

Commit

Permalink
helloworld
Browse files Browse the repository at this point in the history
  • Loading branch information
j2969719 committed Mar 1, 2021
1 parent b4faf80 commit 084948b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
Binary file modified plugins/po/langs/ru/LC_MESSAGES/plugins.mo
Binary file not shown.
10 changes: 5 additions & 5 deletions plugins/po/langs/ru/LC_MESSAGES/plugins.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-25 18:58+0300\n"
"PO-Revision-Date: 2021-02-25 19:00+0300\n"
"POT-Creation-Date: 2021-03-01 11:44+0300\n"
"PO-Revision-Date: 2021-03-01 11:44+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ru\n"
Expand Down Expand Up @@ -76,11 +76,11 @@ msgid "Undefined"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:137
msgid "Root object"
msgid "Root (Object)"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:142
msgid "Root array"
msgid "Root (Array)"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:160
Expand All @@ -96,7 +96,7 @@ msgid "Type"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:234 ../wlx/fileinfo_qt/src/plugin.cpp:90
#: ../wlx/wlxwebkit/src/wlxwebkit.c:117 ../wlx/csvviewer_qt5/src/plugin.cpp:257
#: ../wlx/wlxwebkit/src/wlxwebkit.c:117 ../wlx/csvviewer_qt5/src/plugin.cpp:305
#: ../wlx/sqlviewer_qt5/src/plugin.cpp:268
#: ../wlx/yet_another_vte_plugin/src/plugin.c:288
#: ../wlx/gtksourceview/src/gtksourceview.c:709
Expand Down
8 changes: 4 additions & 4 deletions plugins/po/plugins.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-25 18:58+0300\n"
"POT-Creation-Date: 2021-03-01 11:44+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -74,11 +74,11 @@ msgid "Undefined"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:137
msgid "Root object"
msgid "Root (Object)"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:142
msgid "Root array"
msgid "Root (Array)"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:160
Expand All @@ -94,7 +94,7 @@ msgid "Type"
msgstr ""

#: ../wlx/jsonview_qt5/src/plugin.cpp:234 ../wlx/fileinfo_qt/src/plugin.cpp:90
#: ../wlx/wlxwebkit/src/wlxwebkit.c:117 ../wlx/csvviewer_qt5/src/plugin.cpp:257
#: ../wlx/wlxwebkit/src/wlxwebkit.c:117 ../wlx/csvviewer_qt5/src/plugin.cpp:305
#: ../wlx/sqlviewer_qt5/src/plugin.cpp:268
#: ../wlx/yet_another_vte_plugin/src/plugin.c:288
#: ../wlx/gtksourceview/src/gtksourceview.c:709
Expand Down
4 changes: 2 additions & 2 deletions plugins/wlx/jsonview_qt5/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ HANDLE DCPCALL ListLoad(HANDLE ParentWin, char* FileToLoad, int ShowFlags)

if (json.isObject())
{
root->setText(2, _("Root object"));
root->setText(2, _("Root (Object)"));
walk_object(json.object(), root);
}
else if (json.isArray())
{
root->setText(2, _("Root array"));
root->setText(2, _("Root (Array)"));
walk_array(json.array(), root);
}

Expand Down
2 changes: 1 addition & 1 deletion plugins/wlx/qmediaplayer_qt5/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ HANDLE DCPCALL ListLoad(HANDLE ParentWin, char* FileToLoad, int ShowFlags)
if (playlist->mediaObject()->metaData(keys[i]).isValid())
{
QString str;
str.append(keys[i]);
str.append(QString(keys[i]).replace(QRegularExpression("([a-z])([A-Z])"), "\\1 \\2"));
str.append(": ");

if (playlist->mediaObject()->metaData(keys[i]).canConvert(QMetaType::QString))
Expand Down

0 comments on commit 084948b

Please sign in to comment.