字符串资源清理和校正
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Wed Nov 12 23:36:26 GMT 2025
|
#Wed Nov 12 23:48:49 GMT 2025
|
||||||
stageCount=0
|
stageCount=0
|
||||||
libraryProject=
|
libraryProject=
|
||||||
baseVersion=15.11
|
baseVersion=15.11
|
||||||
publishVersion=15.11.0
|
publishVersion=15.11.0
|
||||||
buildCount=1
|
buildCount=2
|
||||||
baseBetaVersion=15.11.1
|
baseBetaVersion=15.11.1
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">悟空笔记#</string>
|
<string name="app_name">悟空笔记#</string>
|
||||||
<string name="app_laojun_name">老君道說#</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -2,7 +2,5 @@
|
|||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
<string name="app_name">Positions</string>
|
<string name="app_name">Positions</string>
|
||||||
|
|
||||||
<string name="app_laojun_name">Positions +</string>
|
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -2,17 +2,17 @@
|
|||||||
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<!-- 切换启动入口的快捷菜单 -->
|
<!-- 切换启动入口的快捷菜单 -->
|
||||||
<shortcut
|
<shortcut
|
||||||
android:shortcutId="open_app_plus"
|
android:shortcutId="open_appplus"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:shortcutShortLabel="@string/open_app_plus"
|
android:shortcutShortLabel="@string/open_appplus"
|
||||||
android:shortcutLongLabel="@string/open_app_plus"
|
android:shortcutLongLabel="@string/open_appplus"
|
||||||
android:shortcutDisabledMessage="@string/app_plus_switch_disabled">
|
android:shortcutDisabledMessage="@string/appplus_open_disabled">
|
||||||
<intent
|
<intent
|
||||||
android:action="cc.winboll.studio.positions.MainActivity"
|
android:action="cc.winboll.studio.positions.MainActivity"
|
||||||
android:targetPackage="cc.winboll.studio.positions.beta"
|
android:targetPackage="cc.winboll.studio.positions.beta"
|
||||||
android:targetClass="cc.winboll.studio.positions.MainActivity"
|
android:targetClass="cc.winboll.studio.positions.MainActivity"
|
||||||
android:data="open_app_plus" />
|
android:data="open_appplus" />
|
||||||
|
|
||||||
<categories android:name="android.shortcut.conversation" />
|
<categories android:name="android.shortcut.conversation" />
|
||||||
</shortcut>
|
</shortcut>
|
||||||
|
|||||||
@@ -2,17 +2,17 @@
|
|||||||
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<!-- 切换启动入口的快捷菜单 -->
|
<!-- 切换启动入口的快捷菜单 -->
|
||||||
<shortcut
|
<shortcut
|
||||||
android:shortcutId="hide_app_plus"
|
android:shortcutId="close_appplus"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:shortcutShortLabel="@string/hide_app_plus"
|
android:shortcutShortLabel="@string/close_appplus"
|
||||||
android:shortcutLongLabel="@string/hide_app_plus"
|
android:shortcutLongLabel="@string/close_appplus"
|
||||||
android:shortcutDisabledMessage="@string/app_plus_switch_disabled">
|
android:shortcutDisabledMessage="@string/appplus_close_disabled">
|
||||||
<intent
|
<intent
|
||||||
android:action="cc.winboll.studio.positions.PlusActivity.ACTION_HIDE_APP_PLUS"
|
android:action="cc.winboll.studio.positions.PlusActivity.ACTION_CLOSE_APPPLUS"
|
||||||
android:targetPackage="cc.winboll.studio.positions.beta"
|
android:targetPackage="cc.winboll.studio.positions.beta"
|
||||||
android:targetClass="cc.winboll.studio.positions.PlusActivity"
|
android:targetClass="cc.winboll.studio.positions.PlusActivity"
|
||||||
android:data="hide_app_plus" />
|
android:data="close_appplus" />
|
||||||
|
|
||||||
<categories android:name="android.shortcut.conversation" />
|
<categories android:name="android.shortcut.conversation" />
|
||||||
</shortcut>
|
</shortcut>
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
android:name=".PlusActivity"
|
android:name=".PlusActivity"
|
||||||
android:targetActivity=".PlusActivity"
|
android:targetActivity=".PlusActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:label="@string/app_plus_name"
|
android:label="@string/appplus_name"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:enabled="false"> <!-- 默认禁用,避免桌面显示 -->
|
android:enabled="false"> <!-- 默认禁用,避免桌面显示 -->
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">悟空笔记</string>
|
<string name="app_name">悟空笔记</string>
|
||||||
<string name="app_laojun_name">老君道說</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -2,17 +2,17 @@
|
|||||||
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<!-- 切换启动入口的快捷菜单 -->
|
<!-- 切换启动入口的快捷菜单 -->
|
||||||
<shortcut
|
<shortcut
|
||||||
android:shortcutId="open_app_plus"
|
android:shortcutId="open_appplus"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:shortcutShortLabel="@string/open_app_plus"
|
android:shortcutShortLabel="@string/open_appplus"
|
||||||
android:shortcutLongLabel="@string/open_app_plus"
|
android:shortcutLongLabel="@string/open_appplus"
|
||||||
android:shortcutDisabledMessage="@string/app_plus_switch_disabled">
|
android:shortcutDisabledMessage="@string/appplus_open_disabled">
|
||||||
<intent
|
<intent
|
||||||
android:action="cc.winboll.studio.positions.MainActivity"
|
android:action="cc.winboll.studio.positions.MainActivity"
|
||||||
android:targetPackage="cc.winboll.studio.positions"
|
android:targetPackage="cc.winboll.studio.positions"
|
||||||
android:targetClass="cc.winboll.studio.positions.MainActivity"
|
android:targetClass="cc.winboll.studio.positions.MainActivity"
|
||||||
android:data="open_app_plus" />
|
android:data="open_appplus" />
|
||||||
|
|
||||||
<categories android:name="android.shortcut.conversation" />
|
<categories android:name="android.shortcut.conversation" />
|
||||||
</shortcut>
|
</shortcut>
|
||||||
|
|||||||
@@ -2,17 +2,17 @@
|
|||||||
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<!-- 切换启动入口的快捷菜单 -->
|
<!-- 切换启动入口的快捷菜单 -->
|
||||||
<shortcut
|
<shortcut
|
||||||
android:shortcutId="hide_app_plus"
|
android:shortcutId="close_appplus"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:shortcutShortLabel="@string/hide_app_plus"
|
android:shortcutShortLabel="@string/close_appplus"
|
||||||
android:shortcutLongLabel="@string/hide_app_plus"
|
android:shortcutLongLabel="@string/close_appplus"
|
||||||
android:shortcutDisabledMessage="@string/app_plus_switch_disabled">
|
android:shortcutDisabledMessage="@string/appplus_close_disabled">
|
||||||
<intent
|
<intent
|
||||||
android:action="cc.winboll.studio.positions.PlusActivity.ACTION_HIDE_APP_PLUS"
|
android:action="cc.winboll.studio.positions.PlusActivity.ACTION_HIDE_APP_PLUS"
|
||||||
android:targetPackage="cc.winboll.studio.positions"
|
android:targetPackage="cc.winboll.studio.positions"
|
||||||
android:targetClass="cc.winboll.studio.positions.PlusActivity"
|
android:targetClass="cc.winboll.studio.positions.PlusActivity"
|
||||||
android:data="hide_app_plus" />
|
android:data="close_appplus" />
|
||||||
|
|
||||||
<categories android:name="android.shortcut.conversation" />
|
<categories android:name="android.shortcut.conversation" />
|
||||||
</shortcut>
|
</shortcut>
|
||||||
|
|||||||
Reference in New Issue
Block a user