Skip to content

Commit 4b8e252

Browse files
committed
Plugins: add experiment
1 parent 7c5fd15 commit 4b8e252

File tree

30 files changed

+356
-127
lines changed

30 files changed

+356
-127
lines changed

App/Client/Resource/Translations/RabbitRemoteControlApp_zh_CN.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -796,12 +796,12 @@
796796
<translation>康林工作室</translation>
797797
</message>
798798
<message>
799-
<location filename="../../main.cpp" line="143"/>
799+
<location filename="../../main.cpp" line="132"/>
800800
<source>Generate update json file End</source>
801801
<translation>产生更新文件结束</translation>
802802
</message>
803803
<message>
804-
<location filename="../../main.cpp" line="190"/>
804+
<location filename="../../main.cpp" line="189"/>
805805
<source>End</source>
806806
<translation>结束</translation>
807807
</message>

App/Client/Resource/Translations/RabbitRemoteControlApp_zh_TW.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -796,12 +796,12 @@
796796
<translation>康林工作室</translation>
797797
</message>
798798
<message>
799-
<location filename="../../main.cpp" line="143"/>
799+
<location filename="../../main.cpp" line="132"/>
800800
<source>Generate update json file End</source>
801801
<translation>產生更新文件結束</translation>
802802
</message>
803803
<message>
804-
<location filename="../../main.cpp" line="190"/>
804+
<location filename="../../main.cpp" line="189"/>
805805
<source>End</source>
806806
<translation>結束</translation>
807807
</message>

Plugins/FreeRDP/Client/Resource/Translations/FreeRDP_zh_CN.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,9 @@ Please look at the OpenSSL documentation on how to add a private CA to the store
257257
<context>
258258
<name>CConnectLayerQTcpSocket</name>
259259
<message>
260+
<location filename="../../ConnectLayerQTcpSocket.cpp" line="57"/>
260261
<source>The server is empty, please input it</source>
261-
<translation type="vanished">服务器为空,请输入</translation>
262+
<translation>服务器为空,请输入</translation>
262263
</message>
263264
</context>
264265
<context>
@@ -743,12 +744,14 @@ Please look at the OpenSSL documentation on how to add a private CA to the store
743744
<context>
744745
<name>ConnectLayerSSHTunnel</name>
745746
<message>
747+
<location filename="../../ConnectLayerSSHTunnel.cpp" line="46"/>
746748
<source>The server is empty, please input it</source>
747-
<translation type="vanished">服务器为空,请输入</translation>
749+
<translation>服务器为空,请输入</translation>
748750
</message>
749751
<message>
752+
<location filename="../../ConnectLayerSSHTunnel.cpp" line="48"/>
750753
<source>Error</source>
751-
<translation type="vanished">错误</translation>
754+
<translation>错误</translation>
752755
</message>
753756
</context>
754757
<context>

Plugins/FreeRDP/Client/Resource/Translations/FreeRDP_zh_TW.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,9 @@ Please look at the OpenSSL documentation on how to add a private CA to the store
257257
<context>
258258
<name>CConnectLayerQTcpSocket</name>
259259
<message>
260+
<location filename="../../ConnectLayerQTcpSocket.cpp" line="57"/>
260261
<source>The server is empty, please input it</source>
261-
<translation type="vanished">服務器為空,請輸入</translation>
262+
<translation>服務器為空,請輸入</translation>
262263
</message>
263264
</context>
264265
<context>
@@ -743,12 +744,14 @@ Please look at the OpenSSL documentation on how to add a private CA to the store
743744
<context>
744745
<name>ConnectLayerSSHTunnel</name>
745746
<message>
747+
<location filename="../../ConnectLayerSSHTunnel.cpp" line="46"/>
746748
<source>The server is empty, please input it</source>
747-
<translation type="vanished">服務器為空,請輸入</translation>
749+
<translation>服務器為空,請輸入</translation>
748750
</message>
749751
<message>
752+
<location filename="../../ConnectLayerSSHTunnel.cpp" line="48"/>
750753
<source>Error</source>
751-
<translation type="vanished">錯誤</translation>
754+
<translation>錯誤</translation>
752755
</message>
753756
</context>
754757
<context>

Plugins/Player/PluginPlayer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const QString CPluginPlayer::Name() const
3232

3333
const QString CPluginPlayer::DisplayName() const
3434
{
35-
return tr("Player");
35+
return tr("Player") + tr("(Experimental)");
3636
}
3737

3838
const QString CPluginPlayer::Description() const
@@ -41,6 +41,7 @@ const QString CPluginPlayer::Description() const
4141
#ifdef HAVE_QT6_RECORD
4242
szText += tr(" Record camera or media stream.");
4343
#endif
44+
szText += tr("(Experimental)");
4445
return szText;
4546
}
4647

Plugins/Player/Resource/Translations/Player_zh_CN.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,12 @@
198198
<source>Player</source>
199199
<translation>播放器</translation>
200200
</message>
201+
<message>
202+
<location filename="../../PluginPlayer.cpp" line="35"/>
203+
<location filename="../../PluginPlayer.cpp" line="44"/>
204+
<source>(Experimental)</source>
205+
<translation>(实验性的)</translation>
206+
</message>
201207
<message>
202208
<location filename="../../PluginPlayer.cpp" line="40"/>
203209
<source>Player: play media files or camera.</source>
@@ -209,22 +215,22 @@
209215
<translation> 录制摄像头或多媒体流。</translation>
210216
</message>
211217
<message>
212-
<location filename="../../PluginPlayer.cpp" line="68"/>
218+
<location filename="../../PluginPlayer.cpp" line="69"/>
213219
<source>Qt version:</source>
214220
<translation>Qt 版本:</translation>
215221
</message>
216222
<message>
217-
<location filename="../../PluginPlayer.cpp" line="69"/>
223+
<location filename="../../PluginPlayer.cpp" line="70"/>
218224
<source>Compile version: </source>
219225
<translation>编译版本:</translation>
220226
</message>
221227
<message>
222-
<location filename="../../PluginPlayer.cpp" line="70"/>
228+
<location filename="../../PluginPlayer.cpp" line="71"/>
223229
<source>Runtime version: </source>
224230
<translation>运行版本:</translation>
225231
</message>
226232
<message>
227-
<location filename="../../PluginPlayer.cpp" line="72"/>
233+
<location filename="../../PluginPlayer.cpp" line="73"/>
228234
<source>Use QVideoWidget</source>
229235
<translation>使用 QVideoWidget</translation>
230236
</message>

Plugins/Player/Resource/Translations/Player_zh_TW.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,12 @@
198198
<source>Player</source>
199199
<translation>播放器</translation>
200200
</message>
201+
<message>
202+
<location filename="../../PluginPlayer.cpp" line="35"/>
203+
<location filename="../../PluginPlayer.cpp" line="44"/>
204+
<source>(Experimental)</source>
205+
<translation type="unfinished"></translation>
206+
</message>
201207
<message>
202208
<location filename="../../PluginPlayer.cpp" line="40"/>
203209
<source>Player: play media files or camera.</source>
@@ -209,22 +215,22 @@
209215
<translation> 錄製攝像頭或多媒體流。</translation>
210216
</message>
211217
<message>
212-
<location filename="../../PluginPlayer.cpp" line="68"/>
218+
<location filename="../../PluginPlayer.cpp" line="69"/>
213219
<source>Qt version:</source>
214220
<translation>Qt 版本:</translation>
215221
</message>
216222
<message>
217-
<location filename="../../PluginPlayer.cpp" line="69"/>
223+
<location filename="../../PluginPlayer.cpp" line="70"/>
218224
<source>Compile version: </source>
219225
<translation>編譯版本:</translation>
220226
</message>
221227
<message>
222-
<location filename="../../PluginPlayer.cpp" line="70"/>
228+
<location filename="../../PluginPlayer.cpp" line="71"/>
223229
<source>Runtime version: </source>
224230
<translation>運行版本:</translation>
225231
</message>
226232
<message>
227-
<location filename="../../PluginPlayer.cpp" line="72"/>
233+
<location filename="../../PluginPlayer.cpp" line="73"/>
228234
<source>Use QVideoWidget</source>
229235
<translation>使用 QVideoWidget</translation>
230236
</message>

Plugins/RawStream/PluginRawStream.cpp

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,20 @@ const QString CPluginRawStream::Name() const
2222

2323
const QString CPluginRawStream::DisplayName() const
2424
{
25-
return tr("Terminal") + " - " + tr("Raw stream");
25+
return tr("Terminal") + " - " + tr("Raw stream")
26+
#if defined(Q_OS_WIN)
27+
+ tr("(Experimental)")
28+
#endif
29+
;
2630
}
2731

2832
const QString CPluginRawStream::Description() const
2933
{
30-
return tr("Terminal") + " - " + tr("Raw stream");
34+
return tr("Terminal") + " - " + tr("Raw stream")
35+
#if defined(Q_OS_WIN)
36+
+ tr("(Experimental)")
37+
#endif
38+
;
3139
}
3240

3341
const QIcon CPluginRawStream::Icon() const

Plugins/RawStream/Resource/Translations/RawStream_zh_CN.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,21 @@
8989
<name>CPluginRawStream</name>
9090
<message>
9191
<location filename="../../PluginRawStream.cpp" line="25"/>
92-
<location filename="../../PluginRawStream.cpp" line="30"/>
92+
<location filename="../../PluginRawStream.cpp" line="34"/>
9393
<source>Terminal</source>
9494
<translation>终端</translation>
9595
</message>
9696
<message>
9797
<location filename="../../PluginRawStream.cpp" line="25"/>
98-
<location filename="../../PluginRawStream.cpp" line="30"/>
98+
<location filename="../../PluginRawStream.cpp" line="34"/>
9999
<source>Raw stream</source>
100100
<translation>原始流</translation>
101101
</message>
102+
<message>
103+
<location filename="../../PluginRawStream.cpp" line="27"/>
104+
<location filename="../../PluginRawStream.cpp" line="36"/>
105+
<source>(Experimental)</source>
106+
<translation>(实验性的)</translation>
107+
</message>
102108
</context>
103109
</TS>

Plugins/RawStream/Resource/Translations/RawStream_zh_TW.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,21 @@
8989
<name>CPluginRawStream</name>
9090
<message>
9191
<location filename="../../PluginRawStream.cpp" line="25"/>
92-
<location filename="../../PluginRawStream.cpp" line="30"/>
92+
<location filename="../../PluginRawStream.cpp" line="34"/>
9393
<source>Terminal</source>
9494
<translation>終端</translation>
9595
</message>
9696
<message>
9797
<location filename="../../PluginRawStream.cpp" line="25"/>
98-
<location filename="../../PluginRawStream.cpp" line="30"/>
98+
<location filename="../../PluginRawStream.cpp" line="34"/>
9999
<source>Raw stream</source>
100100
<translation>原始流</translation>
101101
</message>
102+
<message>
103+
<location filename="../../PluginRawStream.cpp" line="27"/>
104+
<location filename="../../PluginRawStream.cpp" line="36"/>
105+
<source>(Experimental)</source>
106+
<translation>(實驗性的)</translation>
107+
</message>
102108
</context>
103109
</TS>

0 commit comments

Comments
 (0)