Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Make name of HTML Viewer localizable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Fischer committed Jun 16, 2009
1 parent 199db0c commit 475a261
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AndroidManifest.xml
Expand Up @@ -20,7 +20,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.htmlviewer">

<application android:label="HTML Viewer">
<application android:label="@string/app_label">
<activity android:name="HTMLViewerActivity" android:label="HTMLViewer"
android:theme="@android:style/Theme.Light" >
<intent-filter>
Expand Down
28 changes: 28 additions & 0 deletions res/values/strings.xml
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
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>
<!-- Title of the HTML Viewer activity. -->
<string name="app_label">HTML Viewer</string>

<!-- Title of the permission that allows access to DRM content -->
<string name="permlab_accessDrm">Access DRM content.</string>

<!-- Description of the permission that allows access to DRM content -->
<string name="permdesc_accessDrm">Allows application to access
DRM-protected content.</string>
</resources>

0 comments on commit 475a261

Please sign in to comment.