parent
610ed91afd
commit
1f33a0d084
@ -1,6 +0,0 @@
|
||||
projectKey=myNotes
|
||||
serverUrl=http://127.0.0.1:9000
|
||||
serverVersion=9.5.0.56709
|
||||
dashboardUrl=http://127.0.0.1:9000/dashboard?id=myNotes
|
||||
ceTaskId=AYRIh5EzuqDImpFV-sUP
|
||||
ceTaskUrl=http://127.0.0.1:9000/api/ce/task?id=AYRIh5EzuqDImpFV-sUP
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,43 +0,0 @@
|
||||
package net.micode.notes.ui;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.speech.tts.TextToSpeech;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.util.Log;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.widget.Button;
|
||||
import android.widget.Toast;
|
||||
|
||||
import net.micode.notes.R;
|
||||
|
||||
|
||||
public class GetLocation extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
this.setContentView(R.layout.local);
|
||||
Toast.makeText(GetLocation.this,"init",Toast.LENGTH_SHORT).show();
|
||||
Button local_1 = new Button(this);
|
||||
Button local_2 = new Button(this);
|
||||
local_1.setOnClickListener(new View.OnClickListener() {
|
||||
private static final String TAG = "GetLocation";
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Log.i(TAG, "onClick: button1");
|
||||
Toast.makeText(GetLocation.this,"button1",Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
});
|
||||
local_2.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Toast.makeText(GetLocation.this, "button2", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.7 MiB |
|
After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 658 KiB |
|
After Width: | Height: | Size: 2.7 MiB |
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical" android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"/>
|
||||
</LinearLayout>
|
||||
@ -1,32 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
<!--
|
||||
导入 Apache 2.0 许可证,指出文件的使用条件。
|
||||
详细信息请访问 http://www.apache.org/licenses/LICENSE-2.0
|
||||
-->
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal">
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/navigation_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<Button android:id="@+id/selection_menu"
|
||||
android:divider="?android:attr/listDividerAlertDialog"
|
||||
android:singleLine="true"
|
||||
android:gravity="left|center_vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
style="?android:attr/borderlessButtonStyle" />
|
||||
<Button
|
||||
android:id="@+id/selection_menu"
|
||||
android:divider="?android:attr/listDividerAlertDialog"
|
||||
android:singleLine="true"
|
||||
android:gravity="left|center_vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
style="?android:attr/borderlessButtonStyle" />
|
||||
</LinearLayout>
|
||||
@ -1,52 +1,46 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
<!--
|
||||
此文件定义了应用程序中一个菜单的布局。
|
||||
菜单中包含了多个项目,每个项目对应一个功能。
|
||||
具体功能通过项目对应的id和标题来定义。
|
||||
-->
|
||||
|
||||
<menu
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- 删除功能的菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_delete"
|
||||
android:title="@string/menu_delete" />
|
||||
|
||||
<!-- 字体大小设置功能的菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_font_size"
|
||||
android:title="@string/menu_font_size"/>
|
||||
|
||||
<!-- 切换列表模式功能的菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_list_mode"
|
||||
android:title="@string/menu_list_mode" />
|
||||
|
||||
<!-- 分享功能的菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_share"
|
||||
android:title="@string/menu_share"/>
|
||||
|
||||
<!-- 发送到桌面功能的菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_send_to_desktop"
|
||||
android:title="@string/menu_send_to_desktop"/>
|
||||
|
||||
<!-- 提醒功能的菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_alert"
|
||||
android:title="@string/menu_alert" />
|
||||
|
||||
<!-- 删除提醒功能的菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_delete_remind"
|
||||
android:title="@string/menu_remove_remind" />
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_make_password"
|
||||
android:title="@string/menu_set_password" />
|
||||
</menu>
|
||||
|
||||
@ -1,72 +1,51 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
<!--
|
||||
此文件定义了应用程序的主菜单。
|
||||
菜单选项包括创建新笔记、删除、调整字体大小、切换列表模式、分享、发送到桌面、提醒以及删除提醒。
|
||||
版权归 MiCode 开源社区所有。
|
||||
-->
|
||||
|
||||
<menu
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- 创建新笔记菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_new_note"
|
||||
android:title="@string/notelist_menu_new"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_revoke"
|
||||
android:title="@string/menu_revoke"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_set_top"
|
||||
android:title="@string/menu_set_top"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_cancel_top"
|
||||
android:title="@string/menu_cancel_top"/>
|
||||
|
||||
<!-- 删除菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_delete"
|
||||
android:title="@string/menu_delete"/>
|
||||
|
||||
<!-- 调整字体大小菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_setFont_size"
|
||||
android:id="@+id/menu_font_size"
|
||||
android:title="@string/menu_font_size"/>
|
||||
|
||||
<!-- 切换列表模式菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_list_mode"
|
||||
android:title="@string/menu_list_mode" />
|
||||
|
||||
<!-- 分享菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_share"
|
||||
android:title="@string/menu_share"/>
|
||||
|
||||
<!-- 发送到桌面菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_send_to_desktop"
|
||||
android:title="@string/menu_send_to_desktop"/>
|
||||
|
||||
<!-- 提醒菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_alert"
|
||||
android:title="@string/menu_alert" />
|
||||
|
||||
<!-- 删除提醒菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_delete_remind"
|
||||
android:title="@string/menu_remove_remind" />
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_font_select"
|
||||
android:title="@string/menu_font_style" />
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_count_word"
|
||||
android:title="@string/menu_count_word" />
|
||||
</menu>
|
||||
</menu>
|
||||
|
||||
@ -1,55 +1,73 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
<!--
|
||||
此文件定义了应用程序的菜单资源。
|
||||
它使用Android的菜单XML格式来描述应用主界面及其它界面中可能出现的菜单项。
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
本文件受Apache License, Version 2.0保护;
|
||||
除非符合许可条款,否则不得使用此文件。
|
||||
您可以在以下地址获取许可副本:
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
根据许可协议,除非法律要求或以书面形式同意,否则软件是按“原样”分发的,
|
||||
不作任何明示或暗示的保证或条件。请参阅许可协议以了解具体权限和限制。
|
||||
-->
|
||||
|
||||
<menu
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 新建文件夹菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_new_folder"
|
||||
android:title="@string/menu_create_folder"/>
|
||||
|
||||
<!-- 导出文本菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_export_text"
|
||||
android:title="@string/menu_export_text"/>
|
||||
|
||||
<!-- 同步菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_sync"
|
||||
android:title="@string/menu_sync"/>
|
||||
|
||||
<!-- 设置菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_setting"
|
||||
android:title="@string/menu_setting" />
|
||||
|
||||
<!-- 搜索菜单项 -->
|
||||
<item
|
||||
android:id="@+id/menu_search"
|
||||
android:title="@string/menu_search"/>
|
||||
|
||||
<!-- qxq:Background image switching -->
|
||||
<item
|
||||
android:id="@+id/LoginSetting"
|
||||
android:title="@string/LoginSetting"/>
|
||||
|
||||
android:id="@+id/menu_switch_to_picture1"
|
||||
android:title="@string/menu_switch_to_picture1"/>
|
||||
<item
|
||||
android:id="@+id/delete_password"
|
||||
android:title="@string/delete_password"/>
|
||||
|
||||
android:id="@+id/menu_switch_to_picture2"
|
||||
android:title="@string/menu_switch_to_picture2"/>
|
||||
<item
|
||||
android:id="@+id/menu_switch_to_picture3"
|
||||
android:title="@string/menu_switch_to_picture3"/>
|
||||
<!-- qxq:LoginActivity -->
|
||||
<item
|
||||
android:id="@+id/menu_secret"
|
||||
android:title="@string/menu_secret"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_quit_secret"
|
||||
android:title="@string/menu_quit_secret"/>
|
||||
android:title="@string/menu_quit_secret" />
|
||||
<item
|
||||
android:id="@+id/menu_createlogin"
|
||||
android:title="@string/menu_createlogin" />
|
||||
<item
|
||||
android:id="@+id/menu_deletelogin"
|
||||
android:title="@string/menu_deletelogin" />
|
||||
<item
|
||||
android:id="@+id/menu_changelogin"
|
||||
android:title="@string/menu_changelogin" />
|
||||
</menu>
|
||||
|
||||
|
||||
@ -1,20 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
<!--
|
||||
此文件定义了一个菜单资源。
|
||||
Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
此菜单资源受Apache License, Version 2.0保护。
|
||||
你可以在http://www.apache.org/licenses/LICENSE-2.0获取许可证的副本。
|
||||
除非依照适用法律或以书面形式同意,否则根据该许可证分发的软件应按“原样”分发,
|
||||
不提供任何明示或暗示的保证。
|
||||
-->
|
||||
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 定义一个菜单项,用于选择所有项 -->
|
||||
<item android:id="@+id/action_select_all" android:title="@string/menu_select_all" />
|
||||
</menu>
|
||||
</menu>
|
||||
|
||||
@ -1,31 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
<!--
|
||||
此文件定义了应用程序中菜单项的布局。
|
||||
它使用Android的菜单XML格式来描述菜单项及其属性。
|
||||
-->
|
||||
|
||||
<menu
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!--
|
||||
定义了一个菜单项,用于移动操作。该菜单项始终显示在动作栏中,并显示文本标签。
|
||||
菜单项的图标和标题通过引用资源来定义。
|
||||
-->
|
||||
<item
|
||||
android:id="@+id/move"
|
||||
android:title="@string/menu_move"
|
||||
android:icon="@drawable/menu_move"
|
||||
app:showAsAction="always|withText" />
|
||||
android:showAsAction="always|withText" />
|
||||
|
||||
<!--
|
||||
定义了一个菜单项,用于删除操作。和上面的移动操作类似,这个菜单项也始终显示在动作栏中,并带有文本标签。
|
||||
-->
|
||||
<item
|
||||
android:id="@+id/delete"
|
||||
android:title="@string/menu_delete"
|
||||
android:icon="@drawable/menu_delete"
|
||||
android:showAsAction="always|withText" />
|
||||
</menu>
|
||||
</menu>
|
||||
|
||||
@ -1,36 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
<!--
|
||||
此文件定义了一个菜单资源,用于在应用程序中显示一个新的笔记选项。
|
||||
版权归 MiCode 开源社区所有 (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
本文件受 Apache 2.0 许可证保护,关于许可证的详细信息,请访问:
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
除非适用法律要求或以书面形式同意,根据该许可证分发的软件
|
||||
是在“原样”基础上分发的,不作任何明示或暗示的保证。
|
||||
有关许可证的具体条款和限制,请参阅许可证文件。
|
||||
-->
|
||||
|
||||
<menu
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- 定义了一个菜单项,用于创建新的笔记 -->
|
||||
<item
|
||||
android:id="@+id/menu_new_note"
|
||||
android:title="@string/notelist_menu_new"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_key"
|
||||
android:title="@string/notelist_menu_key"/>
|
||||
|
||||
android:title="@string/notelist_menu_new" />
|
||||
<!--qxq 定义了一个 -->
|
||||
<item
|
||||
android:id="@+id/menu_secret"
|
||||
android:title="@string/menu_secret"/>
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_quit_secret"
|
||||
android:title="@string/menu_quit_secret"/>
|
||||
</menu>
|
||||
</menu>
|
||||
|
||||
@ -1,23 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<string-array name="menu_share_ways">
|
||||
<item>短信</item>
|
||||
<item>邮件</item>
|
||||
</string-array>
|
||||
</resources>
|
||||
@ -1,140 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">메일</string>
|
||||
<string name="menu_count_word">단어 수를 계산합니다</string>
|
||||
<string name="menu_set_passcode">암호를 설정하세요</string>
|
||||
<string name="menu_delete_passcode">비밀번호 삭제</string>
|
||||
<string name="menu_secret">개인 정보 보호 모드</string>
|
||||
<string name="menu_quit_secret">비공개 모드를 종료합니다</string>
|
||||
<string name="app_widget2x2">메일 2x2</string>
|
||||
<string name="app_widget4x4">메일 4x4</string>
|
||||
<string name="widget_havenot_content">연합되는 주를 창조하기 위하여 찾아내는 연합되는 주 없음, 누르기.</string>
|
||||
<string name="widget_under_visit_mode">기밀 형태는, 주 내용을 볼 수 없다</string>
|
||||
<string name="notelist_string_info">...</string>
|
||||
<string name="notelist_menu_new">새 메모</string>
|
||||
<string name="delete_remind_time_message">미리 알림 성공적으로 삭제</string>
|
||||
<string name="set_remind_time_message">알람 생성</string>
|
||||
<string name="note_alert_expired">기간이 만료됨</string>
|
||||
<string name="format_date_ymd">yyyyMMdd</string>
|
||||
<string name="format_datetime_mdhm">MMMd kk:mm</string>
|
||||
<string name="notealert_ok">알겠어요</string>
|
||||
<string name="notealert_enter">보기</string>
|
||||
<string name="note_link_tel">호출 전화</string>
|
||||
<string name="note_link_email">전자 우편 보내기</string>
|
||||
<string name="note_link_web">웹 페이지 찾아보기</string>
|
||||
<string name="note_link_other">지도 열기</string>
|
||||
<!-- Text export file information -->
|
||||
<string name="file_path">/MIUI/notes/</string>
|
||||
<string name="file_name_txt_format">notes_%s.txt</string>
|
||||
<!-- notes list string -->
|
||||
<string name="format_folder_files_count">(%d)</string>
|
||||
<string name="menu_create_folder">새 폴더 만들기</string>
|
||||
<string name="menu_export_text">텍스트 내보내기</string>
|
||||
<string name="menu_sync">동기화</string>
|
||||
<string name="menu_sync_cancel">동기화 해제</string>
|
||||
<string name="menu_setting">설정</string>
|
||||
<string name="menu_search">검색</string>
|
||||
<string name="menu_delete">삭제</string>
|
||||
<string name="menu_move">편지함으로 이동</string>
|
||||
<string name="menu_select_title">%d 항목 선택됨</string>
|
||||
<string name="menu_select_none">선택된 항목이 없습니다. 작업이 올바르지 않습니다</string>
|
||||
<string name="menu_select_all">모두 선택</string>
|
||||
<string name="menu_deselect_all">모두 선택 해제</string>
|
||||
<string name="menu_font_size">텍스트 크기</string>
|
||||
<string name="menu_font_small">작은</string>
|
||||
<string name="menu_font_normal">가운데</string>
|
||||
<string name="menu_font_large">큰</string>
|
||||
<string name="menu_font_super">초대</string>
|
||||
<string name="menu_list_mode">상세한 명부 본에 들어간다</string>
|
||||
<string name="menu_normal_mode">목록 모드 끝내기</string>
|
||||
<string name="menu_folder_view">폴더 보기</string>
|
||||
<string name="menu_folder_delete">폴더 삭제</string>
|
||||
<string name="menu_folder_change_name">폴더 이름 바꾸기</string>
|
||||
<string name="folder_exist">폴더%1 s이 (가) 이미 존재합니다. 이름을 바꾸십시오.</string>
|
||||
<string name="menu_share">나누기</string>
|
||||
<string name="menu_send_to_desktop">데스크톱으로 보내기</string>
|
||||
<string name="menu_alert">깨우쳐 주다</string>
|
||||
<string name="menu_remove_remind">알람 삭제</string>
|
||||
<string name="menu_title_select_folder">편지함 선택</string>
|
||||
<string name="menu_move_parent_folder">상위 디렉토리r</string>
|
||||
<string name="info_note_enter_desktop">데스크톱에 추가됨</string>
|
||||
<string name="alert_message_delete_folder">폴더 및 그 아래에 있는 메모를 삭제하시겠습니까?</string>
|
||||
<string name="alert_title_delete">삭제</string>
|
||||
<string name="alert_message_delete_notes">선택한%d 노트를 삭제하시겠습니까?</string>
|
||||
<string name="alert_message_delete_note">이 메모 지우시겠습니까?</string>
|
||||
<string name="format_move_notes_to_folder">선택한%1달러 d 노트북은%2달러 s 폴더에 옮겨졌습니다</string>
|
||||
<!-- Error information -->
|
||||
<string name="error_sdcard_unmounted">SD 카드가 사용되어 운영되지 않고 있습니다</string>
|
||||
<string name="error_sdcard_export">텍스트를 내보낼 때 오류가 발생했습니다. SD 카드를 확인하십시오.</string>
|
||||
<string name="error_note_not_exist">확인할 노트가 없습니다</string>
|
||||
<string name="error_note_empty_for_clock">빈 노트북에 알람을 설정할 수 없습니다</string>
|
||||
<string name="error_note_empty_for_send_to_desktop">데스크톱에 빈 메모 보낼 수 없음</string>
|
||||
<string name="success_sdcard_export">내보내기 성공</string>
|
||||
<string name="failed_sdcard_export">내보내기 실패</string>
|
||||
<string name="format_exported_file_location">텍스트 파일 (%1$s)을 SD 카드에서 출력했습니다 (%2$s) 디렉터리로</string>
|
||||
<!-- Sync -->
|
||||
<string name="ticker_syncing">동기화 메모 …</string>
|
||||
<string name="ticker_success">동기화 성공</string>
|
||||
<string name="ticker_fail">동기화 실패</string>
|
||||
<string name="ticker_cancel">동기화 해제</string>
|
||||
<string name="success_sync_account">%1$s 동기화 성공</string>
|
||||
<string name="error_sync_network">동기화에 실패했습니다. 네트워크와 계정 설정을 확인하십시오.</string>
|
||||
<string name="error_sync_internal">동기화 실패, 내부 오류 발생</string>
|
||||
<string name="error_sync_cancelled">동기화 해제</string>
|
||||
<string name="sync_progress_login">로그인%1$s …</string>
|
||||
<string name="sync_progress_init_list">서버 메모 목록 가져오는 중 …</string>
|
||||
<string name="sync_progress_syncing">로컬 메모 동기화 중 …</string>
|
||||
<!-- Preferences -->
|
||||
<string name="preferences_title">설정</string>
|
||||
<string name="preferences_account_title">동기화 계정</string>
|
||||
<string name="preferences_account_summary">google task와 나란히 메모</string>
|
||||
<string name="preferences_last_sync_time">지난 번에%1$s 동기화</string>
|
||||
<string name="preferences_last_sync_time_format">yyyy-MM-dd hh:mm:ss</string>
|
||||
<string name="preferences_add_account">계좌 번호 추가</string>
|
||||
<string name="preferences_menu_change_account">계좌 번호를 바꾸다</string>
|
||||
<string name="preferences_menu_remove_account">계정 삭제</string>
|
||||
<string name="preferences_menu_cancel">취소</string>
|
||||
<string name="preferences_button_sync_immediately">지금 동기화</string>
|
||||
<string name="preferences_button_sync_cancel">동기화 해제</string>
|
||||
<string name="preferences_dialog_change_account_title">커런트 계정%1$s</string>
|
||||
<string name="preferences_dialog_change_account_warn_msg">동기식 계정 변경시 과거 계정 동기식 정보가 지워지므로 재전환시 데이터가 중복될 수 있습니다.</string>
|
||||
<string name="preferences_dialog_select_account_title">동기화 메모</string>
|
||||
<string name="preferences_dialog_select_account_tips">이 계정의 구글 작업 내용과 동기화하기 위해 구글 계정을 선택하십시오</string>
|
||||
<string name="preferences_toast_cannot_change_account">동기화하는 중 계정 정보를 수정할 수 없습니다.</string>
|
||||
<string name="preferences_toast_success_set_accout">계정이%1$s로 설정되었습니다.</string>
|
||||
<string name="preferences_bg_random_appear_title">새 메모 배경 색상 임의적으로</string>
|
||||
|
||||
<string name="button_delete">삭제</string>
|
||||
<string name="call_record_folder_name">통화 메모</string>
|
||||
<string name="hint_foler_name">이름을 입력하십시오.</string>
|
||||
|
||||
<string name="search_label">메모 찾는 중</string>
|
||||
<string name="search_hint">메모 찾기</string>
|
||||
<string name="search_setting_description">메모의 글</string>
|
||||
<string name="search">메모</string>
|
||||
<string name="datetime_dialog_ok">설정</string>
|
||||
<string name="datetime_dialog_cancel">취소</string>
|
||||
<plurals name="search_results_title">
|
||||
<item quantity="one"><xliff:g id="number" example="1">%1$s</xliff:g> result for \"<xliff:g id="search" example="???">%2$s</xliff:g>\"</item>
|
||||
<!-- Case of 0 or 2 or more results. -->
|
||||
<item quantity="other"><xliff:g id="NUMBER">%1$s</xliff:g> 가닥입니다“<xliff:g id="SEARCH">%2$s</xliff:g>” 검색 결과에 부합하는</item>
|
||||
</plurals>
|
||||
|
||||
</resources>
|
||||
@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<dimen name="activity_horizontal_margin">48dp</dimen>
|
||||
</resources>
|
||||
@ -0,0 +1,7 @@
|
||||
<resources>
|
||||
|
||||
<style name="ThemeOverlay.Notes.FullscreenContainer" parent="">
|
||||
<item name="fullscreenBackgroundColor">@color/light_blue_900</item>
|
||||
<item name="fullscreenTextColor">@color/light_blue_A400</item>
|
||||
</style>
|
||||
</resources>
|
||||
@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<dimen name="activity_horizontal_margin">200dp</dimen>
|
||||
</resources>
|
||||
@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<dimen name="activity_horizontal_margin">48dp</dimen>
|
||||
</resources>
|
||||
@ -1,23 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
<!--
|
||||
此文件为资源字符串数组定义,用于定义应用中分享菜单的选项。
|
||||
版权归 MiCode 开源社区所有 (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
使用 Apache 2.0 许可证进行授权,详情请访问:
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
除非法律要求或以书面形式同意,根据该许可证分发的软件
|
||||
是在“原样”基础上分发的,不提供任何明示或暗示的保证。
|
||||
请参阅许可证文件了解特定的使用权限和限制。
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<!-- 定义分享方式的字符串数组 -->
|
||||
<string-array name="menu_share_ways">
|
||||
<item>短信</item>
|
||||
<item>邮件</item>
|
||||
</string-array>
|
||||
</resources>
|
||||
</resources>
|
||||
|
||||
@ -1,23 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
||||
<!--
|
||||
此文件为资源字符串数组定义,用于提供应用中分享菜单的选项。
|
||||
版权归 MiCode 开源社区所有 (www.micode.net)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
使用 Apache 2.0 许可证进行授权,详情请访问:
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
除非法律要求或以书面形式同意,根据该许可证分发的软件
|
||||
是在“原样”基础上分发的,不提供任何明示或暗示的保证。
|
||||
请参阅许可证文件了解具体权限和限制。
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<!-- 定义分享方式的字符串数组 -->
|
||||
<string-array name="menu_share_ways">
|
||||
<item>短信</item>
|
||||
<item>郵件</item>
|
||||
</string-array>
|
||||
</resources>
|
||||
</resources>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue