Merging toolkit/locales from the branch to the trunk. This does *not* include files that will end up in netwerk/locales, dom/locales, or security/manager/locales

This commit is contained in:
bsmedberg%covad.net 2004-11-24 15:55:31 +00:00
Родитель 9caafdc4d5
Коммит f37ad6f50d
90 изменённых файлов: 3002 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,72 @@
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is the Mozilla Browser code.
#
# The Initial Developer of the Original Code is
# Benjamin Smedberg <bsmedberg@covad.net>
# Portions created by the Initial Developer are Copyright (C) 2004
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
# This makefile uses target-specific variable assignments to override
# the AB_CD variable when making non-default language JARs below. If
# you don't understand what this means, talk to bsmedberg before
# altering this makefile.
AB_CD = en-US
DEFINES += -DAB_CD=$(AB_CD)
ifeq (,$(filter-out pref,$(MOZ_EXTENSIONS)))
DEFINES += -DEXTENSION_PREF
endif
XULPPFLAGS += -I$(srcdir)/$(AB_CD)/defines.inc
# Let's imagine we wanted to create a language JARfile without registering it
jar-%: AB_CD = $*
jar-%: %
$(PERL) $(topsrcdir)/config/preprocessor.pl $(DEFINES) $(ACDEFINES) $(srcdir)/jar.mn | \
$(PERL) -I$(topsrcdir)/config $(topsrcdir)/config/make-jars.pl \
$(if $(filter gtk gtk2 xlib,$(MOZ_WIDGET_TOOLKIT)),-x) \
$(if $(CROSS_COMPILE),-o $(OS_ARCH)) $(_NO_FLOCK) \
-f jar -d $(DIST)/bin/chrome -s $(srcdir) -t $(topsrcdir) -z $(ZIP) \
-p $(topsrcdir)/config/preprocessor.pl -- \
"-I$(srcdir)/$*/defines.inc $(DEFINES) $(ACDEFINES)"
include $(topsrcdir)/config/rules.mk

Просмотреть файл

Просмотреть файл

@ -0,0 +1,228 @@
#!/usr/bin/perl -w
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is libxul build automation.
#
# Initial Developer of the Original Code is
# Benjamin Smedberg <bsmedberg@covad.net>
#
# Portions created by the Initial Developer are Copyright (C) 2004
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
$failure = 0;
sub unJAR
{
my ($file, $dir) = @_;
-d $dir && system("rm -rf $dir");
system("unzip -q -d $dir $file") && die("Could not unZIP $file");
}
sub readDTD
{
my ($file) = @_;
open DTD, "<$file" || die ("Couldn't open file $file");
local $/ = undef;
my $contents = <DTD>;
close DTD;
$contents =~ s/<!--.*?-->//gs; # strip SGML comments
return $contents =~ /<!ENTITY\s+([\w\.]+)\s+(?:\"[^\"]*\"|\'[^\']*\')\s*>/g;
}
sub compareDTD
{
my ($path) = @_;
my @entities1 = readDTD("$gSourceDir1/$path");
my %entities2 = map { $_ => 1 } readDTD("$gSourceDir2/$path");
my @extra1;
foreach my $entity (@entities1) {
if (exists $entities2{$entity}) {
delete $entities2{$entity};
} else {
push @extra1, $entity;
}
}
if (@extra1 or keys %entities2) {
$failure = 1;
print "Entities in $path don't match:\n";
if (@extra1) {
print " In $gSource1:\n";
map { print " $_\n"; } @extra1;
}
if (keys %entities2) {
print " In $gSource2:\n";
map {print " $_\n"; } keys %entities2;
}
print "\n";
}
}
sub readProperties
{
my ($file) = @_;
open PROPS, "<$file" || die ("Couldn't open file $file");
local $/ = undef;
my $contents = <PROPS>;
close PROPS;
$contents =~ s/\\$$//gm;
return $contents =~ /^\s*([\w\.]+)\s*[=:]/gm;
}
sub compareProperties
{
my ($path) = @_;
my @entities1 = readProperties("$gSourceDir1/$path");
my %entities2 = map { $_ => 1 } readProperties("$gSourceDir2/$path");
my @extra1;
foreach my $entity (@entities1) {
if (exists $entities2{$entity}) {
delete $entities2{$entity};
} else {
push @extra1, $entity;
}
}
if (@extra1 or keys %entities2) {
$failure = 1;
print "Properties in $path don't match:\n";
if (@extra1) {
print " In $gSource1:\n";
map { print " $_\n"; } @extra1;
}
if (keys %entities2) {
print " In $gSource2:\n";
map {print " $_\n"; } keys %entities2;
}
print "\n";
}
}
sub compareDir
{
my ($path) = @_;
my (@entries1, %entries2);
opendir(DIR1, "$gSourceDir1/$path") ||
die ("Couldn't list $gSourceDir1/$path");
@entries1 = grep(!(/^(\.|CVS)/ || /~$/), readdir(DIR1));
closedir(DIR1);
opendir(DIR2, "$gSourceDir2/$path") ||
die ("Couldn't list $gSourceDir2/$path");
%entries2 = map { $_ => 1 } grep(!(/^(\.|CVS)/ || /~$/), readdir(DIR2));
closedir(DIR2);
foreach my $file (@entries1) {
if (exists($entries2{$file})) {
delete $entries2{$file};
if (-d "$gSourceDir1/$path/$file") {
compareDir("$path/$file");
} else {
if ($file =~ /\.dtd$/) {
compareDTD("$path/$file");
} elsif ($file =~ /\.properties$/) {
compareProperties("$path/$file");
} else {
print "no comparison for $path/$file\n";
}
}
} else {
push @gSource1Extra, "$path/$file";
}
}
foreach my $file (keys %entries2) {
push @gSource2Extra, "$path/$file";
}
}
local ($gSource1, $gSource2) = @ARGV;
($gSource1 && $gSource2) || die("Specify two directories or ZIP files");
my ($gSource1IsZIP, $gSource2IsZIP);
local ($gSourceDir1, $gSourceDir2);
local (@gSource1Extra, @gSource2Extra);
if (-d $gSource1) {
$gSource1IsZIP = 0;
$gSourceDir1 = $gSource1;
} else {
$gSource1IsZIP = 1;
$gSourceDir1 = "temp1";
unJAR($gSource1, $gSourceDir1);
}
if (-d $gSource2) {
$gSource2IsZIP = 0;
$gSourceDir2 = $gSource2;
} else {
$gSource2IsZIP = 1;
$gSourceDir2 = "temp2";
unJAR($gSource2, $gSourceDir2);
}
compareDir(".");
if (@gSource1Extra) {
print "Files in $gSource1 not in $gSource2:\n";
map { print " $_\n"; } @gSource1Extra;
print "\n";
}
if (@gSource2Extra) {
print "Files in $gSource2 not in $gSource1:\n";
map { print " $_\n"; } @gSource2Extra;
print "\n";
}
$gSource1IsZIP && system("rm -rf $gSourceDir1");
$gSource2IsZIP && system("rm -rf $gSourceDir2");
exit $failure;

Просмотреть файл

@ -0,0 +1,5 @@
# moved from navigator/locale/navigator.properties
# valid collation options are: <empty string> or useCodePointOrder
intl.collationOption=
intl.charset.default=ISO-8859-1

Просмотреть файл

@ -0,0 +1,18 @@
#mac
#this file defines the on screen display names for the various modifier keys
#these are used in XP menus to show keyboard shortcuts
#the shift key - open up arrow symbol (ctrl-e)
VK_SHIFT=\u0005
#the command key - clover leaf symbol (ctrl-q)
VK_META=\u0011
#the option/alt key - splitting tracks symbol (ctrl-g)
VK_ALT=\u0007
#the control key. hat symbol (ctrl-f)
VK_CONTROL=\u0006
#the separator character used between modifiers (none on Mac OS)
MODIFIER_SEPARATOR=

Просмотреть файл

@ -0,0 +1,5 @@
# moved from navigator/locale/navigator.properties
# valid collation options are: <empty string> or useCodePointOrder
intl.collationOption=
intl.charset.default=ISO-8859-1

Просмотреть файл

@ -0,0 +1,18 @@
#default
#this file defines the on screen display names for the various modifier keys
#these are used in XP menus to show keyboard shortcuts
#the shift key
VK_SHIFT=Shift
#the command key
VK_META=Meta
#the alt key
VK_ALT=Alt
#the control key
VK_CONTROL=Ctrl
#the separator character used between modifiers
MODIFIER_SEPARATOR=+

Просмотреть файл

@ -0,0 +1,5 @@
# moved from navigator/locale/navigator.properties
# valid collation options are: <empty string> or useCodePointOrder
intl.collationOption=
intl.charset.default=ISO-8859-1

Просмотреть файл

@ -0,0 +1,18 @@
#default
#this file defines the on screen display names for the various modifier keys
#these are used in XP menus to show keyboard shortcuts
#the shift key
VK_SHIFT=Shift
#the command key
VK_META=Meta
#the alt key
VK_ALT=Alt
#the control key
VK_CONTROL=Ctrl
#the separator character used between modifiers
MODIFIER_SEPARATOR=+

Просмотреть файл

@ -0,0 +1,56 @@
<?xml version="1.0"?> <!-- -*- Mode: SGML -*- -->
<!--
- The contents of this file are subject to the Mozilla Public
- License Version 1.1 (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.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS
- IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
- implied. See the License for the specific language governing
- rights and limitations under the License.
-
- The Original Code is Mozilla Communicator.
-
- The Initial Developer of the Original Code is Netscape
- Communications Corp. Portions created by Netscape Communications
- Corp. are Copyright (C) 2000 Netscape Communications Corp. All
- Rights Reserved.
-
- Contributor(s): Tao Cheng <tao@netscape.com>
-
-->
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:NC="http://home.netscape.com/NC-rdf#">
<RDF:Description about='urn:clienturl:toolbar:mynetscape'>
<NC:title>My Netscape</NC:title>
<NC:content>http://my.netscape.com/</NC:content>
</RDF:Description>
<RDF:Description about='urn:clienturl:toolbar:home'>
<NC:title>Home</NC:title>
<NC:content>http://home.netscape.com/</NC:content>
</RDF:Description>
<RDF:Description about='urn:clienturl:toolbar:relnotes'>
<NC:title>Release Notes</NC:title>
<NC:content>http://www.mozilla.org/releases/</NC:content>
</RDF:Description>
<!-- View Menu -->
<RDF:Description about='urn:clienturl:viewmenu:intlwebcontent'>
<NC:title>International Languages and Web Content</NC:title>
<NC:content>http://www.mozilla.org/projects/l10n/mlp_status.html#contrib</NC:content>
</RDF:Description>
<!-- Composer -->
<RDF:Description about='urn:clienturl:composer:spellcheckers'>
<NC:title>Spellcheckers</NC:title>
<NC:content>http://dictionaries.mozdev.org/installation.html</NC:content>
</RDF:Description>
</RDF:RDF>

Просмотреть файл

@ -0,0 +1,6 @@
<!-- brand.dtd -->
<!ENTITY vendorURL "http://www.mozilla.org/">
<!ENTITY releaseURL "http://www.mozilla.org/releases/">
<!ENTITY getNewThemesURL "http://mozilla.org/themes/download/">
<!ENTITY content.version "1.5a">
<!ENTITY locale.dir "ltr">

Просмотреть файл

@ -0,0 +1,16 @@
#
# Localizable URLs
#
pluginStartupMessage=Starting Plugin for type
# plug-ins URLs
more_plugins_label=Netscape.com
more_plugins_url=http://home.netscape.com/plugins/index.html
plugindoc_label=plugindoc.mozdev.org
plugindoc_url=http://plugindoc.mozdev.org/
#
# brand.properties
#
getNewThemesURL=http://mozilla.org/themes/download/
smartBrowsingURL=http://www.mozilla.org/docs/end-user/internet-keywords.html

Просмотреть файл

@ -0,0 +1,29 @@
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (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.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 2000 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Tao Cheng <tao@netscape.com>
#
ar = ar-sa
de = de-DE
en = en-US
es = es-ES
fr = fr-FR
it = it-IT
ja = ja-JP
ko = ko-KR
pt = pt-PT
sv = sv-SE

Просмотреть файл

@ -0,0 +1,21 @@
<!-- extracted from charsetOverlay.xul -->
<!ENTITY charsetMenu.label "Character Encoding">
<!ENTITY charsetMenu.accesskey "C">
<!ENTITY charsetMenuAutodet.label "Auto-Detect">
<!ENTITY charsetMenuAutodet.accesskey "a">
<!ENTITY charsetMenuMore.label "More Encodings">
<!ENTITY charsetMenuMore.accesskey "m">
<!ENTITY charsetMenuMore1.label "West European">
<!ENTITY charsetMenuMore1.accesskey "w">
<!ENTITY charsetMenuMore2.label "East European">
<!ENTITY charsetMenuMore2.accesskey "E">
<!ENTITY charsetMenuMore3.label "East Asian">
<!ENTITY charsetMenuMore3.accesskey "A">
<!ENTITY charsetMenuMore4.label "SE &amp; SW Asian">
<!ENTITY charsetMenuMore4.accesskey "S">
<!ENTITY charsetMenuMore5.label "Middle Eastern">
<!ENTITY charsetMenuMore5.accesskey "M">
<!ENTITY charsetMenuUnicode.label "Unicode">
<!ENTITY charsetMenuUnicode.accesskey "U">
<!ENTITY charsetCustomize.label "Customize List...">
<!ENTITY charsetCustomize.accesskey "c">

Просмотреть файл

@ -0,0 +1,6 @@
<!ENTITY header.label "Brief Title">
<!ENTITY message.label "Some sample Text goes here.">
<!ENTITY editfield0.label "User Name:">
<!ENTITY editfield1.label "Password:">
<!ENTITY editfield2.label "Confirm Password:">
<!ENTITY checkbox.label "check">

Просмотреть файл

@ -0,0 +1,15 @@
Alert=Alert
Confirm=Confirm
ConfirmCheck=Confirm
Prompt=Prompt
PromptUsernameAndPassword=Prompt
PromptPassword=Prompt
Select=Select
OK=OK
Cancel=Cancel
Yes=&Yes
No=&No
Save=&Save
Revert=&Revert
DontSave=&Don't Save
ScriptDlgTitle=[JavaScript Application] %S

Просмотреть файл

@ -0,0 +1,70 @@
<!-- ***** BEGIN LICENSE BLOCK *****
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (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.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
-
- The Original Code is mozilla.org configuration viewer.
-
- The Initial Developer of the Original Code is
- Netscape Communications Corporation.
- Portions created by the Initial Developer are Copyright (C) 2002
- the Initial Developer. All Rights Reserved.
-
- Contributors:
-
- Alternatively, the contents of this file may be used under the terms of
- either the GNU General Public License Version 2 or later (the "GPL"), or
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- in which case the provisions of the GPL or the LGPL are applicable instead
- of those above. If you wish to allow use of your version of this file only
- under the terms of either the GPL or the LGPL, and not to allow others to
- use your version of this file under the terms of the NPL, indicate your
- decision by deleting the provisions above and replace them with the notice
- and other provisions required by the GPL or the LGPL. If you do not delete
- the provisions above, a recipient may use your version of this file under
- the terms of any one of the NPL, the GPL or the LGPL.
-
- ***** END LICENSE BLOCK ***** -->
<!ENTITY filterPrefs.label "Filter:">
<!ENTITY filterPrefs.accesskey "I">
<!ENTITY showAll.label "Show All">
<!ENTITY showAll.accesskey "W">
<!-- Columns -->
<!ENTITY prefColumn.label "Preference Name">
<!ENTITY lockColumn.label "Status">
<!ENTITY typeColumn.label "Type">
<!ENTITY valueColumn.label "Value">
<!-- Tooltips -->
<!ENTITY prefColumnHeader.tooltip "Click to sort">
<!ENTITY columnChooser.tooltip "Click to select columns to display">
<!-- Context Menu -->
<!ENTITY copyName.label "Copy Name">
<!ENTITY copyName.accesskey "C">
<!ENTITY copyValue.label "Copy Value">
<!ENTITY copyValue.accesskey "V">
<!ENTITY modify.label "Modify">
<!ENTITY modify.accesskey "M">
<!ENTITY toggle.label "Toggle">
<!ENTITY toggle.accesskey "T">
<!ENTITY reset.label "Reset">
<!ENTITY reset.accesskey "R">
<!ENTITY new.label "New">
<!ENTITY new.accesskey "N">
<!ENTITY string.label "String">
<!ENTITY string.accesskey "S">
<!ENTITY integer.label "Integer">
<!ENTITY integer.accesskey "I">
<!ENTITY boolean.label "Boolean">
<!ENTITY boolean.accesskey "B">

Просмотреть файл

@ -0,0 +1,54 @@
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is mozilla.org configuration viewer.
#
# The Initial Developer of the Original Code is
# Neil Rashbrook.
# Portions created by the Initial Developer are Copyright (C) 2003
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Neil Rashbrook <neil@parkwaycc.co.uk>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
title=about:config
# Lock column values
default=default
user=user set
locked=locked
# Type column values
string=string
int=integer
bool=boolean
# Preference prompts
# %S is replaced by one of the type column values above
new_title=New %S value
new_prompt=Enter the preference name
modify_title=Enter %S value

Просмотреть файл

@ -0,0 +1,50 @@
<!--
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (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.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is Mozilla Communicator client code, released
# March 31, 1998.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998-1999 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): ______________________________________.
-->
<!ENTITY console.title "JavaScript Console">
<!ENTITY errFile.label "Source File:">
<!ENTITY errLine.label "Line:">
<!ENTITY errColumn.label "Column:">
<!ENTITY all.label "All">
<!ENTITY all.accesskey "A">
<!ENTITY errors.label "Errors">
<!ENTITY errors.accesskey "E">
<!ENTITY warnings.label "Warnings">
<!ENTITY warnings.accesskey "W">
<!ENTITY messages.label "Messages">
<!ENTITY messages.accesskey "M">
<!ENTITY clear.label "Clear">
<!ENTITY clear.accesskey "C">
<!ENTITY evaluate.label "Evaluate">
<!ENTITY copyCmd.label "Copy">
<!ENTITY copyCmd.accesskey "C">
<!ENTITY copyCmd.commandkey "C">
<!ENTITY sortFirst.label "First > Last Sort Order">
<!ENTITY sortFirst.accesskey "f">
<!ENTITY sortLast.label "Last > First Sort Order">
<!ENTITY sortLast.accesskey "l">
<!ENTITY closeCmd.commandkey "w">
<!ENTITY focus1.commandkey "l">
<!ENTITY focus2.commandkey "d">

Просмотреть файл

@ -0,0 +1,8 @@
typeError=Error:
typeWarning=Warning:
typeException=Exception:
errFile=Source File: %S
errLine=Line: %S
errLineCol=Line: %S, Column: %S
errCode=Source Code:

Просмотреть файл

@ -0,0 +1,48 @@
<!-- -*- Mode: HTML -*-
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is mozilla.org charset encoding.
#
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 2003
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Stephen Lamm <slamm@netscape.com>
# Pierre Chanial <p_ch@verizon.net>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the LGPL or the GPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
#***** END LICENSE BLOCK *****
-->
<!-- LOCALIZATION NOTE Character Encoding Preferences Dialog: Do NOT localize the term "Character Encoding" -->
<!ENTITY title.label "Customize Character Encoding">
<!ENTITY left.header "Character Encoding">
<!ENTITY current.label "Active Character Encodings:">
<!ENTITY remove.label "Remove">
<!ENTITY additional.label "Available Character Encodings:">
<!ENTITY add.label "Add">

Просмотреть файл

@ -0,0 +1,11 @@
<!ENTITY dialog.title "Customize Toolbar">
<!ENTITY instructions.description "You can add or remove items by dragging to or from the toolbars.">
<!ENTITY show.label "Show:">
<!ENTITY iconsAndText.label "Icons and Text">
<!ENTITY icons.label "Icons">
<!ENTITY text.label "Text">
<!ENTITY useSmallIcons.label "Use Small Icons">
<!ENTITY restoreDefaultSet.label "Restore Default Set">
<!ENTITY addNewToolbar.label "Add New Toolbar">
<!ENTITY saveChanges.label "Done">
<!ENTITY undoChanges.label "Undo Changes">

Просмотреть файл

@ -0,0 +1,6 @@
enterToolbarTitle=New Toolbar
enterToolbarName=Enter a name for this toolbar:
enterToolbarDup=There is already a toolbar with the name "%S". Please enter a different name.
separatorTitle=Separator
springTitle=Flexible Space
spacerTitle=Space

Просмотреть файл

@ -0,0 +1,8 @@
button-accept=OK
button-cancel=Cancel
button-help=Help
button-disclosure=More Info
accesskey-accept=
accesskey-cancel=
accesskey-help=H
accesskey-disclosure=I

Просмотреть файл

@ -0,0 +1,46 @@
<!-- -*- Mode: HTML -*-
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is mozilla.org toolkit.
#
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 2002
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the NPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the NPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
#
# WARNING!!! This file is obsoleted by the dialog.xml widget
#
-->
<!-- OK Cancel Buttons -->
<!ENTITY okButton.label "OK">
<!ENTITY cancelButton.label "Cancel">
<!ENTITY helpButton.label "Help">

Просмотреть файл

@ -0,0 +1,21 @@
close=Close
unknown=Unknown Error
error=Close. Press Close button to close dialog.
FilePickerTitle=Save File
# LOCALIZATION NOTE (BadPluginTitle):
#
# This dialog is displayed when plugin throws unhandled exception
BadPluginTitle=Illegal Operation in Plugin
# LOCALIZATION NOTE (BadPluginMessage):
#
# This is the message for the BadPlugin dialog.
#
# Localizable URLs
BadPluginMessage=The plugin performed an illegal operation. You are strongly advised to restart Navigator.
# LOCALIZATION NOTE (BadPluginCheckboxMessage):
#
# This message tells the user that if they check this checkbox, they
# will never see this dialog again.
#
# Localizable URLs
BadPluginCheckboxMessage=Don't show this message again during this session.

Просмотреть файл

@ -0,0 +1,32 @@
<!ENTITY editMenu.label "Edit">
<!ENTITY editMenu.accesskey "e">
<!ENTITY undoCmd.label "Undo">
<!ENTITY undoCmd.key "Z">
<!ENTITY undoCmd.accesskey "u">
<!ENTITY redoCmd.label "Redo">
<!ENTITY redoCmd.key "Y">
<!ENTITY redoCmd.accesskey "r">
<!ENTITY cutCmd.label "Cut">
<!ENTITY cutCmd.key "X">
<!ENTITY cutCmd.accesskey "t">
<!ENTITY copyCmd.label "Copy">
<!ENTITY copyCmd.key "C">
<!ENTITY copyCmd.accesskey "c">
<!ENTITY pasteCmd.label "Paste">
<!ENTITY pasteCmd.key "V">
<!ENTITY pasteCmd.accesskey "p">
<!ENTITY deleteCmd.label "Delete">
<!ENTITY deleteCmd.key "D">
<!ENTITY deleteCmd.accesskey "d">
<!ENTITY selectAllCmd.label "Select All">
<!ENTITY selectAllCmd.key "A">
<!ENTITY selectAllCmd.accesskey "a">
<!ENTITY findCmd.label "Find">
<!ENTITY findCmd.key "F">
<!ENTITY findCmd.accesskey "F">
<!ENTITY findAgainCmd.label "Find Again">
<!ENTITY findAgainCmd.key "G">
<!ENTITY findAgainCmd.key2 "VK_F3">
<!ENTITY findAgainCmd.accesskey "g">
<!ENTITY findPreviousCmd.label "Find Previous">
<!ENTITY findPreviousCmd.accesskey "v">

Просмотреть файл

@ -0,0 +1,18 @@
<!ENTITY lookInMenuList.label "Look in:">
<!ENTITY lookInMenuList.accesskey "L">
<!ENTITY textInput.label "File name:">
<!ENTITY textInput.accesskey "n">
<!ENTITY filterMenuList.label "Files of type:">
<!ENTITY filterMenuList.accesskey "t">
<!ENTITY name.label "Name">
<!ENTITY size.label "Size">
<!ENTITY lastModified.label "Last Modified">
<!ENTITY permissions.label "Permissions">
<!ENTITY showHiddenFiles.label "Show hidden files and directories">
<!ENTITY showHiddenFiles.accesskey "S">
<!ENTITY noPermissionError.label "You do not have the permissions necessary to view this directory.">
<!ENTITY folderUp.tooltiptext "Go up a level">
<!ENTITY folderHome.tooltiptext "Go to home">
<!ENTITY folderNew.tooltiptext "Create new directory">

Просмотреть файл

@ -0,0 +1,54 @@
# LOCALIZATION NOTE FILE
# --do not localize the extensions, only the titles
allTitle=All Files
allFilter=*
htmlTitle=HTML Files
htmlFilter=*.html; *.htm; *.shtml; *.xhtml
textTitle=Text Files
textFilter=*.txt; *.text
imageTitle=Image Files
imageFilter=*.jpg; *.jpeg; *.gif; *.png; *.bmp; *.xbm; *.ico
xmlTitle=XML Files
xmlFilter=*.xml
xulTitle=XUL Files
xulFilter=*.xul
appsTitle=Applications
dirTextInputLabel=Directory name:
confirmTitle=Confirm
confirmFileReplacing=%S already exists.\nDo you want to replace it?
openButtonLabel=Open
saveButtonLabel=Save
selectFolderButtonLabel=Select
noButtonLabel=No
errorOpenFileDoesntExistTitle=Error opening %S
errorOpenFileDoesntExistMessage=File %S doesn't exist
errorDirDoesntExistTitle=Error accessing %S
errorDirDoesntExistMessage=Directory %S doesn't exist
errorDirNotReadableMessage=Directory %S is not readable or does not exist.
errorOpeningFileTitle=Error opening %S
openWithoutPermissionMessage_file=File %S is not readable
errorSavingFileTitle=Error saving %S
saveParentIsFileMessage=%S is a file, can't save %S
saveParentDoesntExistMessage=Path %S doesn't exist, can't save %S
saveWithoutPermissionMessage_file=File %S is not writable.
saveWithoutPermissionMessage_dir=Cannot create file. Directory %S is not writable.
errorNewDirDoesExistTitle=Error creating %S
errorNewDirDoesExistMessage=A file named %S already exists, directory cannot be created.
errorCreateNewDirTitle=Error creating %S
errorCreateNewDirMessage=Directory %S could not be created
errorCreateNewDirIsFileMessage=Directory cannot be created, %S is a file
errorCreateNewDirPermissionMessage=Directory cannot be created, %S not writable
promptNewDirTitle=Create new directory
promptNewDirMessage=Directory name:
errorPathProblemTitle=Unknown Error
errorPathProblemMessage=An unknown error occured (path %S)

Просмотреть файл

@ -0,0 +1,21 @@
<!-- extracted from finddialog.xul -->
<!ENTITY findDialog.title "Find in This Page">
<!ENTITY findDialogFrame.title "Find in This Frame">
<!ENTITY findField.label "Find what:">
<!ENTITY findField.accesskey "n">
<!ENTITY caseSensitiveCheckbox.label "Match case">
<!ENTITY caseSensitiveCheckbox.accesskey "c">
<!ENTITY wrapCheckbox.label "Wrap">
<!ENTITY wrapCheckbox.accesskey "W">
<!ENTITY backwardsCheckbox.label "Search backwards">
<!ENTITY backwardsCheckbox.accesskey "b">
<!ENTITY findField.tooltip "Type one or more words to search for">
<!ENTITY findButton.label "Find Next">
<!ENTITY findButton.accesskey "F">
<!ENTITY cancelButton.label "Cancel">
<!ENTITY up.label "Up">
<!ENTITY up.accesskey "U">
<!ENTITY down.label "Down">
<!ENTITY down.accesskey "D">
<!ENTITY direction.label "Direction">

Просмотреть файл

@ -0,0 +1,2 @@
notFoundWarning=The text you entered was not found.
notFoundTitle=Find

Просмотреть файл

@ -0,0 +1,13 @@
deleteHost=Delete all from %S
deleteDomain=Delete entire domain %S
deleteHostNoSelection=Delete host
deleteDomainNoSelection=Delete domain
finduri-AgeInDays-is-0=Today
finduri-AgeInDays-is-1=Yesterday
finduri-AgeInDays-is=%S days ago
finduri-AgeInDays-isgreater=Older than %S days
finduri-Hostname-is-=(no host)
load-js-data-url-error=For security reasons, javascript or data urls cannot be loaded from the history window or sidebar.

Просмотреть файл

@ -0,0 +1,7 @@
/*
* This file contains all localizable skin settings such as
* font, layout, and geometry
*/
window {
font: 3mm tahoma,arial,helvetica,sans-serif;
}

Просмотреть файл

@ -0,0 +1,27 @@
# all.js
#
# Localization Note: Cases of charset names must be preserved. If you're
# adding charsets to your localized version, please refer to
# intl/uconv/src/charsetalias.properties file for the list of canonical
# charset names and use canonical names exactly as listed there.
# Also note that "UTF-8" should always be included in intl.charsetmenu.browser.static
general.useragent.locale=en-US
font.language.group=x-western
intl.accept_languages=en-us, en
intl.charsetmenu.browser.static=ISO-8859-1, UTF-8
intl.charsetmenu.browser.more1=ISO-8859-1, ISO-8859-15, IBM850, x-mac-roman, windows-1252, ISO-8859-14, ISO-8859-7, x-mac-greek, windows-1253, x-mac-icelandic, ISO-8859-10, ISO-8859-3
intl.charsetmenu.browser.more2=ISO-8859-4, ISO-8859-13, windows-1257, IBM852, ISO-8859-2, x-mac-ce, windows-1250, x-mac-croatian, IBM855, ISO-8859-5, ISO-IR-111, KOI8-R, x-mac-cyrillic, windows-1251, IBM866, KOI8-U, x-mac-ukrainian, ISO-8859-16, x-mac-romanian
intl.charsetmenu.browser.more3=GB2312, x-gbk, gb18030, HZ-GB-2312, ISO-2022-CN, Big5, Big5-HKSCS, x-euc-tw, EUC-JP, ISO-2022-JP, Shift_JIS, EUC-KR, x-windows-949, x-johab, ISO-2022-KR
intl.charsetmenu.browser.more4=armscii-8, GEOSTD8, TIS-620, ISO-8859-11, windows-874, IBM857, ISO-8859-9, x-mac-turkish, windows-1254, x-viet-tcvn5712, VISCII, x-viet-vps, windows-1258, x-mac-devanagari, x-mac-gujarati, x-mac-gurmukhi
intl.charsetmenu.browser.more5=ISO-8859-6, windows-1256, IBM864, x-mac-arabic, x-mac-farsi, ISO-8859-8-I, windows-1255, ISO-8859-8, IBM862, x-mac-hebrew
# Localization Note: Never change the following entry.
intl.charsetmenu.browser.unicode=UTF-8, UTF-16LE, UTF-16BE, UTF-32LE, UTF-32BE, UTF-7
intl.charset.default=ISO-8859-1
intl.charset.detector=
intl.charsetmenu.mailedit=ISO-8859-1, ISO-8859-15, ISO-8859-6, armscii-8, geostd8, ISO-8859-13, ISO-8859-14, ISO-8859-2, GB2312, GB18030, Big5, KOI8-R, windows-1251, KOI8-U, ISO-8859-7, ISO-8859-8-I, windows-1255, ISO-2022-JP, EUC-KR, ISO-8859-10, ISO-8859-3, TIS-620, ISO-8859-9, UTF-8, VISCII
# valid collation options are: <empty string> or useCodePointOrder
intl.collationOption=
wallet.Server=http://www.mozilla.org/wallet/tables/
wallet.Samples=http://www.mozilla.org/wallet/samples/
# valid intl.menuitems.appendedacceskeys are: true or false, <empty string> (missing or empty preference equals false)
intl.menuitems.alwaysappendaccesskeys=

Просмотреть файл

@ -0,0 +1,68 @@
# LOCALIZATION NOTE : FILE This file contains the application's labels for keys on the keyboard.
# If you decide to translate this file, you should translate it based on
# the prevelant kind of keyboard for your target user.
# LOCALIZATION NOTE : There are two types of keys, those w/ text on their labels
# and those w/ glyphs.
# LOCALIZATION NOTE : VK_<...> represents a key on the keyboard.
#
# For more information please see bugzilla bug 90888.
# F1..F10 should probably not be translated unless there are keyboards that actually have other labels
# F11..F20 might be something else, but are really keyboard specific and not region/language specific
# there are actually two different F11/F12 keys, I don't know which one these labels represent.
# eg, F13..F20 on a sparc keyboard are labeled Props, Again .. Find, Cut
# sparc also has Stop, Again and F11/F12. VK_F11/VK_F12 probably map to Stop/Again
# LOCALIZATION NOTE : BLOCK Do not translate the next block
VK_F1=F1
VK_F2=F2
VK_F3=F3
VK_F4=F4
VK_F5=F5
VK_F6=F6
VK_F7=F7
VK_F8=F8
VK_F9=F9
VK_F10=F10
VK_F11=F11
VK_F12=F12
VK_F13=F13
VK_F14=F14
VK_F15=F15
VK_F16=F16
VK_F17=F17
VK_F18=F18
VK_F19=F19
VK_F20=F20
# LOCALIZATION NOTE : BLOCK end do not translate block
# LOCALIZATION NOTE : BLOCK GLYPHS, DO translate this block
VK_UP=Up Arrow
VK_DOWN=Down Arrow
VK_LEFT=Left Arrow
VK_RIGHT=Right Arrow
VK_PAGE_UP=Page Up
VK_PAGE_DOWN=Page Down
# LOCALIZATION NOTE : BLOCK end GLYPHS
# Enter, backspace, and Tab might have both glyphs and text
# if the keyboards usually have a glyph,
# if there is a meaningful translation,
# or if keyboards are localized
# then translate them or insert the appropriate glyph
# otherwise you should probably just translate the glyph regions
# LOCALIZATION NOTE : BLOCK maybe GLYPHS
VK_ENTER=Enter
VK_RETURN=Return
VK_TAB=Tab
VK_BACK=Backspace
VK_DELETE=Del
# LOCALIZATION NOTE : BLOCK end maybe GLYPHS
# LOCALIZATION NOTE : BLOCK typing state keys
VK_HOME=Home
VK_END=End
VK_ESCAPE=Esc
VK_INSERT=Ins
# LOCALIZATION NOTE : BLOCK end

Просмотреть файл

@ -0,0 +1,190 @@
aa = Afar
ab = Abkhazian
ae = Avestan
af = Afrikaans
ak = Akan
am = Amharic
an = Aragonese
ar = Arabic
as = Assamese
ast = Asturian
av = Avaric
ay = Aymara
az = Azerbaijani
ba = Bashkir
be = Belarusian
bg = Bulgarian
bh = Bihari
bi = Bislama
bm = Bambara
bn = Bengali
bo = Tibetan
br = Breton
bs = Bosnian
ca = Catalan
ce = Chechen
ch = Chamorro
co = Corsican
cr = Cree
cs = Czech
cu = Church Slavic
cv = Chuvash
cy = Welsh
da = Danish
de = German
dv = Divehi
dz = Bhutani
ee = Ewe
el = Greek
en = English
eo = Esperanto
es = Spanish
et = Estonian
eu = Basque
fa = Persian
ff = Fulah
fi = Finnish
fj = Fijian
fo = Faeroese
fr = French
fy = Frisian
ga = Irish
gd = Scots Gaelic
gl = Galician
gn = Guarani
gu = Gujarati
gv = Manx
ha = Hausa
he = Hebrew
hi = Hindi
ho = Hiri Motu
hr = Croatian
hsb = Upper Sorbian
ht = Haitian
hu = Hungarian
hy = Armenian
hz = Herero
ia = Interlingua
id = Indonesian
ie = Interlingue
ig = Igbo
ii = Sichuan Yi
ik = Inupiak
io = Ido
is = Icelandic
it = Italian
iu = Inuktitut
ja = Japanese
jv = Javanese
ka = Georgian
kg = Kongo
ki = Kikuyu
kj = Kuanyama
kk = Kazakh
kl = Greenlandic
km = Cambodian
kn = Kannada
ko = Korean
kok = Konkani
kr = Kanuri
ks = Kashmiri
ku = Kurdish
kv = Komi
kw = Cornish
ky = Kirghiz
la = Latin
lb = Luxembourgish
lg = Ganda
li = Limburgan
ln = Lingala
lo = Laothian
lt = Lithuanian
lu = Luba-Katanga
lv = Latvian
mg = Malagasy
mh = Marshallese
mi = Maori
mk = Macedonian
ml = Malayalam
mn = Mongolian
mo = Moldavian
mr = Marathi
ms = Malay
mt = Maltese
my = Burmese
na = Nauru
nb = Norwegian Bokm\u00e5l
nd = Ndebele, North
ne = Nepali
ng = Ndonga
nl = Dutch
nn = Norwegian Nynorsk
no = Norwegian
nr = Ndebele, South
nso = Sotho, Northern
nv = Navajo
ny = Chichewa
oc = Occitan
oj = Ojibwa
om = Oromo
or = Oriya
os = Ossetian
pa = Punjabi
pi = Pali
pl = Polish
ps = Pashto
pt = Portuguese
qu = Quechua
rm = Rhaeto-Romanic
rn = Kirundi
ro = Romanian
ru = Russian
rw = Kinyarwanda
sa = Sanskrit
sc = Sardinian
sd = Sindhi
se = Northern Sami
sg = Sangro
si = Singhalese
sk = Slovak
sl = Slovenian
sm = Samoan
sn = Shona
so = Somali
sq = Albanian
sr = Serbian
ss = Siswati
st = Sotho, Southern
su = Sudanese
sv = Swedish
sw = Swahili
ta = Tamil
te = Telugu
tg = Tajik
th = Thai
ti = Tigrinya
tk = Turkmen
tl = Tagalog
tn = Tswana
to = Tonga
tr = Turkish
ts = Tsonga
tt = Tatar
tw = Twi
ty = Tahitian
ug = Uighur
uk = Ukrainian
ur = Urdu
uz = Uzbek
ve = Venda
vi = Vietnamese
vo = Volap\u00fck
wa = Walloon
wen = Sorbian
wo = Wolof
xh = Xhosa
yi = Yiddish
yo = Yoruba
za = Zhuang
zh = Chinese
zu = Zulu

Просмотреть файл

@ -0,0 +1,7 @@
<!ENTITY license.part0 "is">
<!ENTITY license.part1 "by its">
<!ENTITY license.contrib "contributors">
<!ENTITY license.part2 "according to terms set out in the">
<!ENTITY license.and "and">
<!ENTITY license.part3 ". All Rights Reserved.">
<!ENTITY license.credits 'For full Mozilla credits, type "about:credits" into the Location bar.'>

Просмотреть файл

@ -0,0 +1,10 @@
<!ENTITY mozilla.quote
'And so at last the beast <em class="f">fell</em> and the unbelievers rejoiced.
But all was not lost, for from the ash rose a <em>great bird</em>.
The bird gazed down upon the unbelievers and cast <em class="f">fire</em>
and <em>thunder</em> upon them. For the beast had been
<em>reborn</em> with its strength <em>renewed</em>, and the
followers of <em>Mammon</em> cowered in horror.'>
<!ENTITY mozilla.from
'from <strong>The Book of Mozilla,</strong> 7:15'>

Просмотреть файл

@ -0,0 +1 @@
SortMenuItems=Sorted by %COLNAME%

Просмотреть файл

@ -0,0 +1,16 @@
# LOCALIZATION NOTE (plugins.properties):
# Those strings are inserted into an HTML page, so you all HTML characters
# have to be escaped in a way that they show up correctly in HTML!
title_label=About Plug-ins
installedplugins_label=Installed plug-ins
nopluginsareinstalled_label=No plug-ins are installed
findmore_label=Find more information about browser plug-ins at
installhelp_label=Help for installing plug-ins is available from
filename_label=File name:
mimetype_label=MIME Type
description_label=Description
suffixes_label=Suffixes
enabled_label=Enabled
yes_label=Yes
no_label=No

Просмотреть файл

@ -0,0 +1,52 @@
<!-- extracted from printjoboptions.xul -->
<!ENTITY printSetup.title "Page Setup">
<!ENTITY basic.tab "Format &amp; Options">
<!ENTITY formatGroup.label "Format">
<!ENTITY orientation.label "Orientation:">
<!ENTITY portrait "Portrait">
<!ENTITY landscape "Landscape">
<!ENTITY scale.label "Scale:">
<!ENTITY scalePercent "&#037;">
<!ENTITY shrinkToFit.label "Shrink To Fit Page Width">
<!ENTITY optionsGroup.label "Options">
<!ENTITY printBG.label "Print Background (colors &amp; images)">
<!ENTITY advanced.tab "Margins &amp; Header/Footer">
<!ENTITY marginGroup.label "Margins (#1)">
<!ENTITY marginUnits.inches "inches">
<!ENTITY marginUnits.metric "millimeters">
<!ENTITY marginTop.label "Top:">
<!ENTITY marginBottom.label "Bottom:">
<!ENTITY marginLeft.label "Left:">
<!ENTITY marginRight.label "Right:">
<!ENTITY headerFooter.label "Headers &amp; Footers">
<!ENTITY hfLeft.label "Left:">
<!ENTITY hfCenter.label "Center:">
<!ENTITY hfRight.label "Right:">
<!ENTITY hfTitle "Title">
<!ENTITY hfTitle.code "[&amp;T]">
<!ENTITY hfURL "URL">
<!ENTITY hfURL.code "[&amp;U]">
<!ENTITY hfDateAndTime "Date/Time">
<!ENTITY hfDateAndTime.code "&amp;D">
<!ENTITY hfPage "Page #">
<!ENTITY hfPage.code "[&amp;P]">
<!ENTITY hfPageAndTotal "Page # of #">
<!ENTITY hfPageAndTotal.code "[&amp;PT]">
<!ENTITY hfBlank "--blank--">
<!ENTITY hfCustom "Custom...">
<!ENTITY customPrompt.title "Custom...">
<!ENTITY customPrompt.prompt "Enter your custom header/footer text">

Просмотреть файл

@ -0,0 +1,66 @@
<!-- ***** BEGIN LICENSE BLOCK *****
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (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.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
-
- The Original Code is the print preview toolbar.
-
- The Initial Developer of the Original Code is
- Netscape Communications Corporation.
- Portions created by the Initial Developer are Copyright (C) 2002
- the Initial Developer. All Rights Reserved.
-
- Contributor(s):
- Samir Gehani <sgehani@netscape.com> (Original Author)
-
- Alternatively, the contents of this file may be used under the terms of
- either the GNU General Public License Version 2 or later (the "GPL"), or
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- in which case the provisions of the GPL or the LGPL are applicable instead
- of those above. If you wish to allow use of your version of this file only
- under the terms of either the GPL or the LGPL, and not to allow others to
- use your version of this file under the terms of the MPL, indicate your
- decision by deleting the provisions above and replace them with the notice
- and other provisions required by the LGPL or the GPL. If you do not delete
- the provisions above, a recipient may use your version of this file under
- the terms of any one of the MPL, the GPL or the LGPL.
-
- ***** END LICENSE BLOCK ***** -->
<!ENTITY print.label "Print...">
<!ENTITY print.accesskey "P">
<!ENTITY pageSetup.label "Page Setup...">
<!ENTITY pageSetup.accesskey "u">
<!ENTITY page.label "Page:">
<!ENTITY of.label "of">
<!ENTITY scale.label "Scale:">
<!ENTITY percent.label "&#037;">
<!ENTITY portrait.label "Portrait">
<!ENTITY portrait.accesskey "t">
<!ENTITY landscape.label "Landscape">
<!ENTITY landscape.accesskey "L">
<!ENTITY close.label "Close">
<!ENTITY close.accesskey "C">
<!ENTITY p30.label "30&#037;">
<!ENTITY p40.label "40&#037;">
<!ENTITY p50.label "50&#037;">
<!ENTITY p60.label "60&#037;">
<!ENTITY p70.label "70&#037;">
<!ENTITY p80.label "80&#037;">
<!ENTITY p90.label "90&#037;">
<!ENTITY p100.label "100&#037;">
<!ENTITY p125.label "125&#037;">
<!ENTITY p150.label "150&#037;">
<!ENTITY p175.label "175&#037;">
<!ENTITY p200.label "200&#037;">
<!ENTITY Custom.label "Custom...">
<!ENTITY ShrinkToFit.label "Shrink To Fit">
<!ENTITY customPrompt.title "Custom Scale...">

Просмотреть файл

@ -0,0 +1,6 @@
<!--LOCALIZATION NOTE printPreviewProgress.dtd Main UI for Print Preview Progress Dialog -->
<!ENTITY printWindow.title "Print Preview">
<!ENTITY title "Title:">
<!ENTITY spaces " ">
<!ENTITY preparing "Preparing...">
<!ENTITY progress "Progress:">

Просмотреть файл

@ -0,0 +1,18 @@
<!--LOCALIZATION NOTE printProgress.dtd Main UI for Print Progress Dialog -->
<!ENTITY printWindow.title "Printing">
<!ENTITY title "Title:">
<!ENTITY progress "Progress:">
<!ENTITY preparing "Preparing...">
<!ENTITY printComplete "Printing is Completed.">
<!ENTITY dialogCancel.label "Cancel">
<!ENTITY dialogClose.label "Close">
<!-- LOCALIZATION NOTE (percentPrint):
This string is used to format the text to the right of the progress
meter.
#1 will be replaced by the percentage of the file that has been saved -->
<!ENTITY percentPrint "#1&#037;">

Просмотреть файл

@ -0,0 +1,33 @@
<!-- extracted from printdialog.xul -->
<!ENTITY printButton.label "Print">
<!ENTITY printDialog.title "Print">
<!ENTITY fpDialog.title "Save File">
<!ENTITY printTo.label "Print To:">
<!ENTITY printerRadio.label "Printer">
<!ENTITY fileRadio.label "File">
<!ENTITY propertiesButton.label "Properties...">
<!ENTITY printer.label "Printer">
<!ENTITY printerInput.label "Printer:">
<!ENTITY fileInput.label "File:">
<!ENTITY chooseButton.label "Choose File...">
<!ENTITY printrangeGroup.label "Print Range">
<!ENTITY allpagesRadio.label "All Pages">
<!ENTITY rangeRadio.label "Pages">
<!ENTITY frompageInput.label "from">
<!ENTITY topageInput.label "to">
<!ENTITY selectionRadio.label "Selection">
<!ENTITY copies.label "Copies">
<!ENTITY numCopies.label "Number of copies:">
<!ENTITY printframeGroup.label "Print Frames">
<!ENTITY aslaidoutRadio.label "As laid out on the screen">
<!ENTITY selectedframeRadio.label "The selected frame">
<!ENTITY eachframesepRadio.label "Each frame separately">

Просмотреть файл

@ -0,0 +1,34 @@
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (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.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an AS
# IS basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
#-----------------------------------------------------------
# Note: IMPORTANT!
#
# Set "extend" to false to get the native platform dialog
#
# Set "extend" to true to have the native dialog extended with
# the "Print Frames" Frame group box
#-----------------------------------------------------------
#
extend=true
PrintFrames=Print Frames
Aslaid=As &laid out on the screen
selectedframe=The selected &frame
Eachframe=&Each frame separately
options=Options

Просмотреть файл

@ -0,0 +1,16 @@
<!-- extracted from printjoboptions.xul -->
<!ENTITY printJobOptions.title "Printer Properties">
<!ENTITY paperInput.label "Paper Size:">
<!ENTITY plexInput.label "Plex mode:">
<!ENTITY cmdInput.label "Print Command:">
<!ENTITY colorGroup.label "Color:">
<!ENTITY grayRadio.label "GrayScale">
<!ENTITY colorRadio.label "Color">
<!ENTITY edgeMarginInput.label "Gap from edge of paper to Margin (inches)">
<!ENTITY topInput.label "Top:">
<!ENTITY bottomInput.label "Bottom:">
<!ENTITY leftInput.label "Left:">
<!ENTITY rightInput.label "Right:">

Просмотреть файл

@ -0,0 +1,9 @@
letterSize=Letter (8 1/2 x 11 in.)
legalSize=Legal (8 1/2 x 14 in.)
exectiveSize=Executive (7 1/2 x 10 in.)
a5Size=DIN A5 (148 x 210 mm)
a4Size=DIN A4 (210 x 297 mm)
a3Size=DIN A3 (297 x 420 mm)
a2Size=DIN A2 (420 x 594 mm)
a1Size=DIN A1 (594 x 841 mm)
a0Size=DIN A0 (841 x 1189 mm)

Просмотреть файл

@ -0,0 +1,70 @@
ae = U.A.E.
bh = Bahrain
dz = Algeria
eg = Egypt
iq = Iraq
jo = Jordan
kw = Kuwait
lb = Lebanon
ly = Libya
ma = Morocco
om = Oman
qa = Qatar
sa = Saudi Arabia
sy = Syria
tn = Tunisia
ye = Yemen
at = Austria
de = Germany
lu = Luxembourg
li = Liechtenstein
au = Australia
bz = Belize
ca = Canada
gb = United Kingdom
ie = Ireland
jm = Jamaica
nz = New Zealand
ph = Philippines
tt = Trinidad
us = United States
za = South Africa
zw = Zimbabwe
ar = Argentina
bo = Bolivia
cl = Chile
co = Colombia
cr = Costa Rica
do = Dominican Republic
ec = Ecuador
es = Spain
gt = Guatemala
hn = Honduras
mx = Mexico
ni = Nicaragua
pa = Panama
pe = Peru
pr = Puerto Rico
py = Paraguay
sv = El Salvador
uy = Uruguay
ve = Venezuela
be = Belgium
ch = Switzerland
fr = France
mc = Monaco
br = Brazil
md = Moldova, Republic of
mo = Macao
fi = Finland
cn = China
hk = Hong Kong
sg = Singapore
tw = Taiwan
mk = Macedonia, F.Y.R. of
kp = North Korea
kr = South Korea
my = Malaysia
bn = Brunei Darussalam
pk = Pakistan
in = India

Просмотреть файл

@ -0,0 +1,12 @@
<!ENTITY untitledTab "(Untitled)">
<!ENTITY newTab.label "New Tab">
<!ENTITY newTab.accesskey "N">
<!ENTITY closeTab.label "Close Tab">
<!ENTITY closeTab.accesskey "c">
<!ENTITY closeOtherTabs.accesskey "o">
<!ENTITY closeOtherTabs.label "Close Other Tabs">
<!ENTITY reloadAllTabs.label "Reload All Tabs">
<!ENTITY reloadAllTabs.accesskey "A">
<!ENTITY reloadTab.label "Reload Tab">
<!ENTITY reloadTab.accesskey "r">
<!ENTITY newTabButton.tooltip "Open a new tab">

Просмотреть файл

@ -0,0 +1,14 @@
tabs.loading=Loading...
tabs.untitled=(Untitled)
tabs.closeTab=Close Tab
tabs.close=Close
browsewithcaret.checkMsg=Do not show me this dialog box again.
browsewithcaret.checkWindowTitle=Caret Browsing
browsewithcaret.checkLabel=Pressing F7 turns Caret Browsing on or off. This feature places a moveable cursor in web pages, allowing you to select text with the keyboard. Do you want to turn Caret Browsing on?
browsewithcaret.checkButtonLabel=Yes
tabs.closeWarningTitle=Confirm close
tabs.closeWarningOne=You are about to close %S open tab. Are you sure you want to continue?
tabs.closeWarningMultiple=You are about to close %S open tabs. Are you sure you want to continue?
tabs.closeButtonOne=Close tab
tabs.closeButtonMultiple=Close tabs
tabs.closeWarningPromptMe=Warn me when I attempt to close multiple tabs

Просмотреть файл

@ -0,0 +1,14 @@
<!ENTITY cutCmd.label "Cut">
<!ENTITY cutCmd.accesskey "t">
<!ENTITY copyCmd.label "Copy">
<!ENTITY copyCmd.accesskey "c">
<!ENTITY pasteCmd.label "Paste">
<!ENTITY pasteCmd.accesskey "p">
<!ENTITY undoCmd.label "Undo">
<!ENTITY undoCmd.accesskey "u">
<!ENTITY redoCmd.label "Redo">
<!ENTITY redoCmd.accesskey "r">
<!ENTITY selectAllCmd.label "Select All">
<!ENTITY selectAllCmd.accesskey "a">
<!ENTITY deleteCmd.label "Delete">
<!ENTITY deleteCmd.accesskey "d">

Просмотреть файл

@ -0,0 +1,45 @@
<!-- extracted from content/viewSource.xul -->
<!-- LOCALIZATION NOTE (mainWindow.title) : DONT_TRANSLATE -->
<!ENTITY mainWindow.title "&brandFullName;">
<!-- LOCALIZATION NOTE (mainWindow.titlemodifier) : DONT_TRANSLATE -->
<!ENTITY mainWindow.titlemodifier "&brandFullName;">
<!-- LOCALIZATION NOTE (mainWindow.titlemodifierseparator) : DONT_TRANSLATE -->
<!ENTITY mainWindow.titlemodifierseparator " - ">
<!ENTITY mainWindow.preface "Source of: ">
<!ENTITY fileMenu.label "File">
<!ENTITY fileMenu.accesskey "F">
<!ENTITY savePageCmd.label "Save Page As...">
<!ENTITY savePageCmd.accesskey "A">
<!ENTITY savePageCmd.commandkey "S">
<!ENTITY pageSetupCmd.label "Page Setup...">
<!ENTITY pageSetupCmd.accesskey "u">
<!ENTITY printPreviewCmd.label "Print Preview">
<!ENTITY printPreviewCmd.accesskey "v">
<!ENTITY printCmd.label "Print...">
<!ENTITY printCmd.accesskey "P">
<!ENTITY printCmd.commandkey "P">
<!ENTITY closeCmd.label "Close">
<!ENTITY closeCmd.accesskey "C">
<!ENTITY closeCmd.commandkey "W">
<!ENTITY textEnlarge.commandkey "+">
<!ENTITY textEnlarge.commandkey2 "=">
<!ENTITY textReduce.commandkey "-">
<!ENTITY textReset.commandkey "0">
<!ENTITY goToLineCmd.label "Go to Line...">
<!ENTITY goToLineCmd.accesskey "G">
<!ENTITY goToLineCmd.commandkey "l">
<!ENTITY viewMenu.label "View">
<!ENTITY viewMenu.accesskey "V">
<!ENTITY menu_wrapLongLines.title "Wrap Long Lines">
<!ENTITY menu_wrapLongLines.accesskey "W">
<!ENTITY menu_highlightSyntax.label "Syntax Highlighting">
<!ENTITY menu_highlightSyntax.accesskey "H">
<!ENTITY menu_textEnlarge.label "Increase Text Size">
<!ENTITY menu_textEnlarge.accesskey "I">
<!ENTITY menu_textReduce.label "Decrease Text Size">
<!ENTITY menu_textReduce.accesskey "D">

Просмотреть файл

@ -0,0 +1,7 @@
goToLineTitle = Go to line
goToLineText = Enter line number
invalidInputTitle = Invalid input
invalidInputText = The line number entered is invalid.
outOfRangeTitle = Line not found
outOfRangeText = The specified line was not found.
statusBarLineCol = Line %1$S, Col %2$S

Просмотреть файл

@ -0,0 +1,13 @@
button-back=< Back
button-next=Next >
button-finish=Finish
button-cancel=Cancel
button-back-gnome=Back
button-next-gnome=Next
button-finish-gnome=Finish
button-cancel-gnome=Cancel
default-first-title=Welcome to the %S
default-last-title=Completing the %S
default-first-title-mac=Introduction
default-last-title-mac=Conclusion

Просмотреть файл

@ -0,0 +1,7 @@
<!ENTITY dateStarted.label "Started:">
<!ENTITY dateEnded.label "Finished:">
<!ENTITY window.title "Properties">
<!ENTITY downloadedFrom.label "From:">
<!ENTITY path.label "To:">
<!ENTITY acceptButton.label "Close">
<!ENTITY cmd.close.commandKey "w">

Просмотреть файл

@ -0,0 +1,47 @@
<!ENTITY done.label "Done">
<!ENTITY canceled.label "Canceled">
<!ENTITY installing.label "Installing...">
<!ENTITY starting.label "Starting...">
<!ENTITY failed.label "Failed">
<!ENTITY downloads.title "Downloads">
<!ENTITY cmd.pause.label "Pause">
<!ENTITY cmd.pause.accesskey "P">
<!ENTITY cmd.resume.label "Resume">
<!ENTITY cmd.resume.accesskey "R">
<!ENTITY cmd.cancel.label "Cancel">
<!ENTITY cmd.cancel.accesskey "C">
<!ENTITY cmd.show.label "Open Containing Folder">
<!ENTITY cmd.show.accesskey "F">
<!ENTITY cmd.open.label "Open">
<!ENTITY cmd.open.accesskey "O">
<!ENTITY cmd.openWith.label "Open With...">
<!ENTITY cmd.openWith.accesskey "h">
<!ENTITY cmd.retry.label "Retry">
<!ENTITY cmd.retry.accesskey "R">
<!ENTITY cmd.remove.label "Remove">
<!ENTITY cmd.remove.accesskey "e">
<!ENTITY cmd.properties.label "Properties">
<!ENTITY cmd.properties.accesskey "i">
<!ENTITY cmd.info.commandKey "i">
<!ENTITY cmd.close.commandKey "w">
<!ENTITY cmd.close2.commandKey "j">
<!ENTITY cmd.close2Unix.commandKey "y">
<!ENTITY cmd.cleanUp.label "Clean Up">
<!ENTITY cmd.cleanUp.tooltip "Removes completed, canceled and failed downloads from the list">
<!ENTITY cmd.cleanUp.accesskey "a">
<!ENTITY cmd.change.label "Change...">
<!ENTITY cmd.change.accesskey "C">
<!ENTITY cmd.change.tooltip "Change how and where to save files to">
<!ENTITY closeWhenDone.label "Close when downloads complete">
<!ENTITY closeWhenDone.tooltip "Closes the Downloads window when all files are done downloading">
<!ENTITY filesSavedTo.label "All files downloaded to:">
<!ENTITY showFolder.label "Show this Folder">

Просмотреть файл

@ -0,0 +1,46 @@
transferred=%1SKB of %2SKB
downloading=Downloading
notStarted=Not Started
failed=Failed
finished=Finished
canceled=Canceled
downloadErrorAlertTitle=Download Error
quitCancelDownloadsAlertTitle=Cancel All Downloads?
quitCancelDownloadsAlertMsg=If you exit now, 1 download will be canceled. Are you sure you want to exit?
quitCancelDownloadsAlertMsgMultiple=If you exit now, %S downloads will be canceled. Are you sure you want to exit?
quitCancelDownloadsAlertMsgMac=If you quit now, 1 download will be canceled. Are you sure you want to quit?
quitCancelDownloadsAlertMsgMacMultiple=If you quit now, %S downloads will be canceled. Are you sure you want to quit?
offlineCancelDownloadsAlertTitle=Cancel All Downloads?
offlineCancelDownloadsAlertMsgMultiple=If you go offline now, %S downloads will be canceled. Are you sure you want to go offline?
offlineCancelDownloadsAlertMsg=If you go offline now, 1 download will be canceled. Are you sure you want to go offline?
cancelDownloadsOKText=Cancel 1 Download
cancelDownloadsOKTextMultiple=Cancel %S Downloads
dontQuitButtonWin=Don't Exit
dontQuitButtonMac=Don't Quit
dontGoOfflineButton=Stay Online
downloadsCompleteTitle=Downloads Complete
downloadsCompleteMsg=All files have finished downloading.
statusFormatKBKB=#1 of #2 KB
statusFormatKBMB=#1 KB of #2 MB
statusFormatMBMB=#1 of #2 MB
statusFormatUnknownKB=#1 KB
statusFormatUnknownMB=#1 MB
remain=remain
unknownFilesize=unknown file size
statusFormat=#1 at #2 KB/sec; #3
longTimeFormat=#1:#2:#3
shortTimeFormat=#2:#3
fileDoesNotExistOpenTitle=Cannot Open %S
fileDoesNotExistShowTitle=Cannot Show %S
fileDoesNotExistError=%S does not exist. It may have been renamed, moved, or deleted since it was downloaded.
chooseAppFilePickerTitle=Open With...
downloadsTitle=%S%% of 1 file - Downloads
downloadsTitleMultiple=%S%% of %S files - Downloads
fileExecutableSecurityWarning="%S" is an executable file. Executable files may contain viruses or other malicious code that could harm your computer. Use caution when opening this file. Are you sure you want to launch "%S"?
fileExecutableSecurityWarningTitle=Open Executable File?
fileExecutableSecurityWarningDontAsk=Don't ask me this again
displayNameDesktop=Desktop

Просмотреть файл

@ -0,0 +1,13 @@
<!ENTITY changeAction.title "Change Action">
<!ENTITY whenDownloading.label "When downloading files of type:">
<!ENTITY always.label "automatically:">
<!ENTITY openDefault.label "Open them in the Default application:">
<!ENTITY openApplication.label "Open them in this application:">
<!ENTITY changeApp.label "Change...">
<!ENTITY changeApp.accesskey "c">
<!ENTITY customAppPath.label "Click 'Change ...' to choose an application.">
<!ENTITY saveToDisk.label "Save to Disk">
<!ENTITY changeAppWindowTitle.label "Choose Application...">

Просмотреть файл

@ -0,0 +1,27 @@
<!ENTITY lHeader "Downloads">
<!ENTITY askOnSave.label "Download Folder">
<!ENTITY alwaysAsk.label "Ask me where to save every file">
<!ENTITY neverAsk.label "Save all files to this folder:">
<!ENTITY desktop.label "Desktop">
<!ENTITY downloads.label "My Downloads">
<!ENTITY choose.label "Other...">
<!ENTITY showFolder.label "Show Folder">
<!ENTITY downloadManagerWindow.label "Download Manager">
<!ENTITY showWhenStarting.label "Show Download Manager window when a download begins.">
<!ENTITY closeWhenDone.label "Close the Download Manager when all downloads are complete.">
<!ENTITY fileTypes.label "File Types">
<!-- XXX this text string could improve -->
<!ENTITY fileTypesDescription.label "Automatically perform the associated action with each of the following file types:">
<!ENTITY fileTypeColName.label "File Type">
<!ENTITY fileHandlerColName.label "Application">
<!ENTITY editFileHandler.label "Change Action...">
<!ENTITY editFileHandler.accesskey "a">
<!ENTITY removeFileHandler.label "Remove">
<!ENTITY removeFileHandler.accesskey "r">
<!ENTITY plugins.label "Plug-Ins...">
<!ENTITY plugins.accesskey "p">

Просмотреть файл

@ -0,0 +1,64 @@
<!-- -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is Mozilla.org Code.
#
# The Initial Developer of the Original Code is
# Doron Rosenberg.
# Portions created by the Initial Developer are Copyright (C) 2001
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Ben Goodger <ben@bengoodger.com>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
-->
<!ENTITY intro.label "You have chosen to open">
<!ENTITY from.label "from:">
<!ENTITY actionQuestion.label "What should &brandShortName; do with this file?">
<!ENTITY openWith.label "Open with">
<!ENTITY openWith.accesskey "o">
<!ENTITY other.label "Other...">
<!ENTITY save.label "Save to Disk">
<!ENTITY save.accesskey "s">
<!ENTITY rememberChoice.label "Do this automatically for files like this from now on.">
<!ENTITY rememberChoice.accesskey "a">
<!ENTITY settingsChange.label "Settings can be changed in the Downloads section of Tools, Options.">
<!ENTITY settingsChangeMac.label "Settings can be changed in the Downloads section of &brandShortName;, Preferences.">
<!ENTITY settingsChangeUnix.label "Settings can be changed in the Downloads section of Edit, Preferences.">
<!ENTITY whichIsA.label "which is a:">
<!ENTITY chooseHandlerMac.label "Choose...">
<!ENTITY chooseHandlerMac.accesskey "C">
<!ENTITY chooseHandler.label "Browse...">
<!ENTITY chooseHandler.accesskey "B">

Просмотреть файл

@ -0,0 +1,50 @@
# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is Mozilla.org Code.
#
# The Initial Developer of the Original Code is
# Doron Rosenberg.
# Portions created by the Initial Developer are Copyright (C) 2001
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Ben Goodger <ben@bengoodger.com>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
title=Opening %S
saveDialogTitle=Enter name of file to save to...
defaultApp=%S (default)
chooseAppFilePickerTitle=Choose Helper Application
badApp=The application you chose ("%S") could not be found. Check the file name or choose another application.
badApp.title=Application not found
selectDownloadDir=Select Download Folder
fileEnding=%S file
saveToDisk=Save to Disk
openWith=Open with %S
myDownloads=My Downloads
removeActions=Remove Actions
removeActionsMsg=The selected Actions will no longer be performed when files of the affected types are downloaded. Are you sure you want to remove these Actions?

Просмотреть файл

@ -0,0 +1,5 @@
<!ENTITY creator.label "Created By:">
<!ENTITY contributors.label "Contributors:">
<!ENTITY homepage.label "Visit Home Page">

Просмотреть файл

@ -0,0 +1,64 @@
<!ENTITY extensions.title "Extensions">
<!ENTITY cmd.info.commandKey "i">
<!ENTITY cmd.options.commandKey ",">
<!ENTITY cmd.close.commandKey "w">
<!-- Command Bar items -->
<!ENTITY cmd.uninstall.label "Uninstall">
<!ENTITY cmd.uninstall.tooltip "Uninstalls the selected Extension">
<!ENTITY cmd.uninstall.accesskey "i">
<!ENTITY cmd.update.label "Update">
<!ENTITY cmd.update.accesskey "U">
<!ENTITY cmd.update.tooltip "Checks for Updates to your Extensions">
<!ENTITY cmd.useTheme.label "Use Theme">
<!ENTITY cmd.useTheme.accesskey "T">
<!ENTITY cmd.useTheme.tooltip "Changes &brandShortName;'s Theme">
<!-- the following command bar items are used by thunderbird only -->
<!ENTITY cmd.install.label "Install">
<!ENTITY cmd.install.tooltip "Install an Extension">
<!ENTITY cmd.install.accesskey "n">
<!-- Context Menu Options: Extension -->
<!ENTITY cmd.options.label "Options">
<!ENTITY cmd.options.accesskey "O">
<!ENTITY cmd.options.tooltip "Set Options for the selected Extension">
<!ENTITY cmd.optionsUnix.label "Preferences">
<!ENTITY cmd.optionsUnix.accesskey "r">
<!ENTITY cmd.homepage.label "Visit Home Page">
<!ENTITY cmd.homepage.accesskey "H">
<!ENTITY cmd.about.label "About this Extension">
<!ENTITY cmd.about.accesskey "A">
<!ENTITY cmd.enable.label "Enable">
<!ENTITY cmd.enable.accesskey "E">
<!ENTITY cmd.disable.label "Disable">
<!ENTITY cmd.disable.accesskey "D">
<!ENTITY cmd.moveToTop.label "Move to Top">
<!ENTITY cmd.moveToTop.accesskey "T">
<!ENTITY cmd.moveUp.label "Move Up">
<!ENTITY cmd.moveUp.accesskey "p">
<!ENTITY cmd.moveDn.label "Move Down">
<!ENTITY cmd.moveDn.accesskey "w">
<!-- Extension Items -->
<!ENTITY options.tooltip "Options">
<!ENTITY optionsUnix.tooltip "Preferences">
<!ENTITY about.tooltip "About">
<!ENTITY homepage.tooltip "Home Page">
<!ENTITY extensionItem.toBeDisabled.label "This item will be disabled after you restart &brandShortName;.">
<!ENTITY extensionItem.toBeEnabled.label "This item will be enabled after you restart &brandShortName;.">
<!ENTITY extensionItem.toBeInstalled.label "This item will be installed after you restart &brandShortName;.">
<!ENTITY extensionItem.toBeUninstalled.label "This item will be uninstalled after you restart &brandShortName;.">
<!ENTITY extensionItem.done.label "Install Success">
<!ENTITY extensionItem.waiting.label "Waiting...">
<!ENTITY extensionItem.installing.label "Installing...">
<!ENTITY getMoreExtensions.label "Get More Extensions">
<!ENTITY getMoreExtensions.tooltip "Get More Extensions from update.mozilla.org">
<!ENTITY getMoreThemes.label "Get More Themes">
<!ENTITY getMoreThemes.tooltip "Get More Themes from update.mozilla.org">
<!ENTITY previewNoThemeSelected.label "No Theme Selected">
<!ENTITY previewNoPreviewImage.label "This Theme does not have a Preview Image">

Просмотреть файл

@ -0,0 +1,76 @@
aboutWindowTitle=About %S
aboutWindowCloseButton=Close
aboutWindowVersionString=version %S
aboutExtension=About %S...
restartBeforeEnableTitle=Enable Extension
restartBeforeDisableTitle=Disable Extension
restartBeforeEnableMessage=%S will be enabled the next time you restart %S.
restartBeforeDisableMessage=%S will be disabled the next time you restart %S.
restartBeforeUninstallTitle=Uninstall
restartBeforeUninstallMessage=%S will be uninstalled the next time you restart %S.
queryUninstallExtensionMessage=If you uninstall %S, the functionality it offers will no longer be available. Do you want to uninstall %S?
queryUninstallThemeMessage=Do you want to uninstall %S?
queryUninstallTitle=Uninstall %S
extensions.update.url=https://update.mozilla.org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&appID=%APP_ID%&appVersion=%APP_VERSION%
extensions.getMoreExtensionsURL=https://update.mozilla.org/extensions/?application=%APPID%
extensions.getMoreThemesURL=https://update.mozilla.org/themes/?application=%APPID%
themesTitle=Themes
extensionsTitle=Extensions
globalItemList=The following items are available to all users. \nYou can start Firefox with -lock-item "{GUID}" to prevent users from uninstalling or disabling an item. To unlock an item, start Firefox with -unlock-item "{GUID}"
globalItemListExtensions=\n\nGlobally Available Extensions:\n==============================\n\n
globalItemListThemes=\n\nGlobally Available Themes:\n==========================\n\n
installSuccess=Installed Successfully
statusFormatKBKB=#1 of #2 KB
statusFormatKBMB=#1 KB of #2 MB
statusFormatMBMB=#1 of #2 MB
disabledObsoleteTitle=Old Extensions
disabledObsoleteMessage=Any old extensions that you have installed have been disabled.
theme=Theme
extension=Extension
incompatibleTitle=Incompatible %S
incompatibleMessage=%S %S could not be installed because it is not compatible with this version of %S. (%S %S will only work with %S versions from %S to %S)
incompatibleMessageSingleAppVersion=%S %S could not be installed because it is not compatible with this version of %S. (%S %S will only work with %S %S)
incompatibleMessageNoApp=%S %S could not be installed because it is not compatible with %S.
incompatibleOlder=versions 0.8 or older.
incompatibleThemeName=this Theme
incompatibleExtension=Disabled - not compatible with %S %S
missingFileTitle=Missing File
missingFileMessage=%S could not load this item because the file %S was missing.
missingFileConsoleMessage=Failed to install from %S because %S was not provided at the top level of the jar/xpi file.
malformedMessage=%S could not install this item because "%S" (provided by the item) is malformed. Please contact the author about this problem.
malformedTitle=Malformed File
malformedRegistrationTitle=Chrome Registration Failed
malformedRegistrationMessage=%S could not install this item because of a failure in Chrome Registration. Please contact the author about this problem, or click View Details for more information.
malformedRegistrationConsoleMessage=Chrome Registration failed for Extension '%S' when calling nsIXULChromeRegistry::%S with this chrome path: %S (profile extension = %S). Perhaps this path does not exist within the chrome JAR file, or the contents.rdf file at that location is malformed?
malformedRegistrationDetailsButton=View Details
invalidVersionMessage=%S could not install "%S" because its version information ("%S") is invalid. Please contact the author about this problem.
invalidVersionTitle=Invalid Version
errorInstallTitle=Error
errorInstallMessage=%S could not download the file at \n\n%S\n\nbecause: %S
# The following are used by Thunderbird only in order to provide a way to load
# extension and JAR files.
extensionFilter=Extensions (*.xpi)
themesFilter=Themes (*.jar)
installThemePickerTitle=Select a theme to install
installExtensionPickerTitle=Select an extension to install
cmdUninstallTooltipTheme=Uninstalls the selected Theme
cmdUpdateTooltipTheme=Checks for Updates to your Themes
cmdInstallTooltipTheme=Install a Theme
dssSwitchAfterRestart=Restart %S to use.

Просмотреть файл

@ -0,0 +1,4 @@
<!ENTITY finalize.title "Finishing Extension Installation...">
<!ENTITY intro.label "&brandShortName; is finishing installing extensions. This could take a minute...">

Просмотреть файл

@ -0,0 +1,9 @@
<!ENTITY mismatch.title "Incompatible Extensions">
<!ENTITY intro1.label "The following extensions are not compatible with the new version
of &brandShortName; you have just installed.">
<!ENTITY intro2.label "They have been disabled until compatible versions are
installed.">
<!ENTITY intro3.label "&brandShortName; can check for and install newer, compatible
versions of these extensions.">

Просмотреть файл

@ -0,0 +1,5 @@
<!ENTITY update.title "Checking for Updates">
<!ENTITY intro.label "&brandShortName; is now checking for updates to your extensions...">

Просмотреть файл

@ -0,0 +1,20 @@
<!ENTITY pluginWizard.title "Plugin Finder Service">
<!ENTITY pluginWizard.checkingForPlugins.description.label "&brandShortName; is now checking for available plugins...">
<!ENTITY pluginWizard.availablePluginsPage.title "Available Plugin Downloads">
<!ENTITY pluginWizard.availablePluginsPage.description.label "The following plugins are available:">
<!ENTITY pluginWizard.availablePluginsPage.continueMsg.label "Press Next to install these plugins.">
<!ENTITY pluginWizard.availablePluginsPage.installerUI "Some plugins may require additional information from you during installation.">
<!ENTITY pluginWizard.licensePage.title "Plugin Licenses">
<!ENTITY pluginWizard.licensePage.accept.label "I agree.">
<!ENTITY pluginWizard.licensePage.deny.label "I do not agree (plugin will not be installed).">
<!ENTITY pluginWizard.installPluginsPage.title "Installing Plugins">
<!ENTITY pluginWizard.installPluginsPage.description.label "&brandShortName; is installing plugins...">
<!ENTITY pluginWizard.finalPage.description.label "&brandShortName; finished installing the missing plugins:">
<!ENTITY pluginWizard.finalPage.moreInfo.label "Find out more about Plugins or manually find missing plugins.">
<!ENTITY pluginWizard.finalPage.restart.label "&brandShortName; needs to be restarted for the plugin(s) to work.">

Просмотреть файл

@ -0,0 +1,25 @@
pluginLicenseAgreement.label=To install %S, you need to agree to the following:
pluginInstallation.download.start=Downloading %S...
pluginInstallation.download.finish=Finished downloading %S.
pluginInstallation.install.start=Installing %S...
pluginInstallation.install.finish=Successfully installed %S.
pluginInstallation.install.error=Failed to install %S (%S).
pluginInstallation.complete=Finished installing plugins.
pluginInstallationSummary.success=Installed
pluginInstallationSummary.failed=Failed
pluginInstallationSummary.licenseNotAccepted=License not accepted
pluginInstallationSummary.notAvailable=Not Available
pluginInstallationSummary.manualInstall.label=Manual Install
pluginInstallationSummary.manualInstall.tooltip=Manually install the plugin.
pluginInstallation.noPluginsFound=No suitable plugins were found.
pluginInstallation.unknownPlugin=Unknown Plugin
missingPlugin.label=Click here to download plugin.
pfs.datasource.url=https://update.mozilla.org/plugins/PluginFinderService.php?mimetype=%PLUGIN_MIMETYPE%&appID=%APP_ID%&appVersion=%APP_VERSION%&clientOS=%CLIENT_OS%&chromeLocale=%CHROME_LOCALE%

Просмотреть файл

@ -0,0 +1,19 @@
<!ENTITY newprofile.title "Create Profile Wizard">
<!ENTITY window.size "width: 45em; height: 32em;">
<!-- First wizard page -->
<!ENTITY profileCreationExplanation_1.text "&brandShortName; stores information about your settings and preferences in your personal profile.">
<!ENTITY profileCreationExplanation_2.text "If you are sharing this copy of &brandShortName; with other users, you can use profiles to keep each user's information separate. To do this, each user should create his or her own profile.">
<!ENTITY profileCreationExplanation_3.text "If you are the only person using this copy of &brandShortName;, you must have at least one profile. If you would like, you can create multiple profiles for yourself to store different sets of settings and preferences. For example, you may want to have separate profiles for business and personal use.">
<!ENTITY profileCreationExplanation_4.text "To begin creating your profile, click Next.">
<!-- Second wizard page -->
<!ENTITY profileCreationIntro.text "If you create several profiles you can tell them apart by the profile names. You may use the name provided here or use one of your own.">
<!ENTITY profilePrompt.label "Enter new profile name:">
<!ENTITY profilePrompt.accesskey "E">
<!ENTITY profileDirExplanation.text "Your user settings, preferences, bookmarks and mail will be stored in:">
<!ENTITY profileDefaultName "Default User">
<!ENTITY button.choosefolder.label "Choose Folder...">
<!ENTITY button.choosefolder.accesskey "C">
<!ENTITY button.usedefault.label "Use Default Folder">
<!ENTITY button.usedefault.accesskey "U">

Просмотреть файл

@ -0,0 +1,49 @@
<!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
<!--
The contents of this file are subject to the Netscape Public
License Version 1.1 (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.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
The Original Code is mozilla.org code.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
Ben Goodger (28/10/99)
-->
<!ENTITY windowtitle.label "&brandShortName; - Choose User Profile">
<!ENTITY profilename.label "Profile Name:">
<!ENTITY start.label "Start &brandShortName;">
<!ENTITY exit.label "Exit">
<!ENTITY availprofiles.label "Available Profiles">
<!ENTITY newButton.label "Create Profile...">
<!ENTITY newButton.accesskey "C">
<!ENTITY renameButton.label "Rename Profile...">
<!ENTITY renameButton.accesskey "R">
<!ENTITY deleteButton.label "Delete Profile...">
<!ENTITY deleteButton.accesskey "D">
<!-- manager entities -->
<!ENTITY pmDescription.label "&brandShortName; stores information about your settings, preferences, and other user items in your user profile.">
<!ENTITY offlineState.label "Work offline">
<!ENTITY offlineState.accesskey "o">
<!ENTITY autoSelect.label "Don't ask at startup">
<!ENTITY autoSelect.accesskey "s">

Просмотреть файл

@ -0,0 +1,30 @@
# LOCALIZATION NOTE: Do not translate <html:br/>
profileTooltip=Profile: '%S' - Path: '%S'
pleaseSelectTitle=Select Profile
pleaseSelect=Please select a profile to begin %S, or create a new profile.
profileLockedTitle=Profile In Use
profileLocked=%S cannot use the profile "%S" because it is in use.\n\nPlease choose another profile or create a new one.
renameProfileTitle=Rename Profile
renameProfilePrompt=Rename the profile "%S" to:
profileNameInvalidTitle=Invalid profile name
profileNameInvalid=The profile name "%S" is not allowed.
chooseFolder=Choose Profile Folder
profileNameEmpty=An empty profile name is not allowed.
invalidChar=The character "%S" is not allowed in profile names. Please choose a different name.
deleteTitle=Delete Profile
deleteProfile=Deleting a profile will remove the profile from the list of available profiles and cannot be undone.\nYou may also choose to delete the profile data files, including your saved mail, settings, and certificates. This option will delete the folder "%S" and cannot be undone.\nWould you like to delete the profile data files?
deleteFiles=Delete Files
dontDeleteFiles=Don't Delete Files
profileCreationFailed=Profile couldn't be created. Probably the chosen folder isn't writable.
profileCreationFailedTitle=Profile Creation failed
profileExists=A profile with this name already exists. Please choose another name.
profileExistsTitle=Profile Exists
profileFinishText=Click Finish to create this new profile.

Просмотреть файл

@ -0,0 +1,5 @@
<!ENTITY errors.title "Errors">
<!ENTITY errors.intro.title "The following components could not be installed due to errors
(the file could not be downloaded, was corrupt, or for some
other reason).">

Просмотреть файл

@ -0,0 +1,87 @@
<!ENTITY updateWizard.title "&brandShortName; Update">
<!ENTITY mismatch.title "Incompatible Components">
<!ENTITY mismatch.intro1.label "The following components are not compatible with the new version
of &brandShortName; you have just installed:">
<!ENTITY mismatch.intro2.label "They have been disabled until compatible versions are
installed.">
<!ENTITY mismatch.intro3.label "&brandShortName; can check for and install newer, compatible
versions of these components.">
<!ENTITY checking.title "Checking for Updates">
<!ENTITY checking.intro.label "&brandShortName; is now checking for available updates...">
<!ENTITY checking.status "This may take a few minutes...">
<!ENTITY version.title "Checking for Compatibility Updates">
<!ENTITY version.intro.label "&brandShortName; is now checking for compatibility updates to your Extensions and Themes...">
<!ENTITY version.status "This may take a few minutes...">
<!ENTITY found.title "Updates Found">
<!ENTITY found.intro.label "&brandShortName; found the following available updates:">
<!ENTITY from.label "from: ">
<!ENTITY found.updatetype.patches.accesskey "C">
<!ENTITY found.updatetype.components.accesskey "O">
<!ENTITY found.updatetype.addons.accesskey "E">
<!ENTITY found.updatetype.languages.accesskey "L">
<!ENTITY found.criticalUpdates.label "The following Critical Updates are available for &brandShortName;:">
<!ENTITY found.criticalUpdates.info "You should install these updates immediately to protect your computer from attack.">
<!ENTITY found.app.infoLink "More Information...">
<!ENTITY found.components.label "The following components and plugins are available to install:">
<!ENTITY found.components.info "Installing these components may improve your browsing experience.">
<!ENTITY found.addons.label "The following updates are available to Extensions and Themes that you already have installed">
<!ENTITY found.languages.label "The following language packs are available: ">
<!ENTITY installing.title "Installing Updates">
<!ENTITY installing.intro.label "Now downloading and installing updates...">
<!ENTITY installing.disclaimer.label "XXXben - this will not work until we have a scriptable API to XPInstall.">
<!ENTITY noupdates.title "No Updates Found">
<!ENTITY noupdates.intro.user.label "&brandShortName; was not able to find any available updates.">
<!ENTITY noupdates.intro.mismatch.label "&brandShortName; was not able to find any available updates -
compatible versions may not be available at this time.">
<!ENTITY noupdates.intro2.mismatch.label "&brandShortName; will check periodically and inform you when
compatible versions become available.">
<!ENTITY noupdates.intro3.mismatch.label "&brandShortName; can check periodically and inform you when
compatible versions become available.">
<!ENTITY noupdates.enableChecking.label "Allow &brandShortName; to check for updates.">
<!ENTITY finished.title "Update Complete">
<!ENTITY finished.updated.label "&brandShortName; has installed the available updates. You will have to restart &brandShortName; for some updates to take effect.">
<!ENTITY finished.remaining.label "Some incompatible components could not be updated, perhaps
because compatible versions are not available at this time.
&brandShortName; will check periodically and inform you
when updated versions become available.">
<!ENTITY finished.remaining2.label "Some incompatible components could not be updated, perhaps
because compatible versions are not available at this time.
&brandShortName; can check periodically and inform you
when updated versions become available.">
<!ENTITY finished.error.label "&brandShortName; did not succeed in downloading and
installing some updates.">
<!ENTITY finished.enableChecking.label "Allow &brandShortName; to check for updates.">
<!ENTITY finished.mismatch.label "Click Finish to continue starting &brandShortName;.">
<!ENTITY optional.title "Optional Components">
<!ENTITY optional.intro.label "Choose additional components you want to install, then click Install Now.">
<!ENTITY errors.title "Problems During Update">
<!ENTITY errors.intro.label "&brandShortName; encountered problems when updating your
software, and as a result not all components could be updated.">
<!ENTITY errors.details.label "Details">
<!ENTITY errors.details.accesskey "D">
<!ENTITY updateCheckError.description "&brandShortName; encountered problems when trying to find
updates for some items.">
<!ENTITY updateCheckError.label "Details">
<!ENTITY updateCheckError.accesskey "D">
<!ENTITY resolveMaxVersion.title "Checking for Compatible Extensions and Themes...">
<!ENTITY resolveMaxVersion.intro1.label "&brandShortName; is checking for compatibility updates to your Extensions and Themes...">
<!ENTITY restart.title "Upgrade Complete">
<!ENTITY restart.updated.label "&brandShortName; successfully downloaded and installed updates. You will have to restart &brandShortName; to complete the update.">
<!ENTITY resetHomepage.label "Use &brandShortName; Start as my Home Page">
<!ENTITY resetHomepage.accesskey "H">

Просмотреть файл

@ -0,0 +1,52 @@
mismatchCheckNow=Check Now
mismatchCheckNowAccesskey=C
mismatchDontCheck=Don't Check
mismatchDontCheckAccesskey=D
installButtonText=Install Now
installButtonTextAccesskey=I
nextButtonText=Next >
nextButtonTextAccesskey=N
cancelButtonText=Cancel
cancelButtonTextAccesskey=C
app.update.url=https://update.mozilla.org/update/firefox/en-US.rdf
updatesAvailableTitle=New Updates Available
updatesAvailableText=Click Here to View
checkingPrefix=Checking for Updates to %S ...
downloadingPrefix=Downloading: %S
installingPrefix=Installing: %S
closeButton=Close
installErrorDescription=The following components could not be installed due to errors (the file could not be downloaded, was corrupt, or for some other reason).
checkingErrorDescription=%S could not check for updates to the following components (either the update server(s) did not respond, or the update service(s) were not found).
installErrorItemFormat=%S (%S)
versionUpdateComplete=Version Compatibility Update Complete
updatesAvailableTooltip-0=Update(s) Available
updatesAvailableTooltip-1=Update(s) Available
updatesAvailableTooltip-2=Critical Update(s) Available
updatesCheckForUpdatesTooltip=Double-click here to check for updates
installTextNoFurtherActions=Choose the ones you want to install and click Install Now to install them.
installTextFurtherCations=Choose the ones you want to install and click Next to continue.
appNameAndVersionFormat=%S %S
updateTypePatches=Critical Updates (%S)
updateTypeComponents=Optional Components (%S)
updateTypeExtensions=Extensions and Themes (%S)
updateTypeLangPacks=Language Packs (%S)
foundAppLabel=%S %S is available. We strongly recommend that you install this upgrade as soon as possible.
foundAppFeatures=%S %S features:
foundAppInfoLink=More information about %S %S ...
foundInstructions=Choose the ones you want to install and click Install Now to install them.
foundInstructionsAppComps=Choose the ones you want to install and click Next to continue.
appupdateperformedtitle=Restart Required
appupdateperformedmessage=%S has been updated this session. Please restart %S before performing any more updates.
updatesdisabledtitle=Update Disabled
updatesdisabledmessage=Update has been disabled by your Administrator.

Просмотреть файл

@ -0,0 +1,8 @@
<!-- extracted from institems.xul -->
<!ENTITY dialog.title "Software Installation">
<!ENTITY warningText2.label "Malicious software can damage your computer or violate your privacy.">
<!ENTITY warningText3.label "You should only install software from sources that you trust.">
<!ENTITY from.label "from:">

Просмотреть файл

@ -0,0 +1,9 @@
Unsigned=Unsigned
itemWarningIntroMultiple=A web site is requesting permission to install the following %S items:
itemWarningIntroSingle=A web site is requesting permission to install the following item:
installButtonDisabledLabel=Install (%S)
installButtonLabel=Install Now
installComplete=Software Installation is complete. You will have to restart %S for changes to take effect.
installCompleteTitle=Installation Complete

Просмотреть файл

@ -0,0 +1,51 @@
<!--
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is Mozilla Password Manager.
#
# The Initial Developer of the Original Code is
# Brian Ryner.
# Portions created by the Initial Developer are Copyright (C) 2003
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Brian Ryner <bryner@brianryner.com>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
-->
<!ENTITY windowtitle.label "Password Manager">
<!ENTITY tab.signonsstored.label "Passwords Saved">
<!ENTITY tab.signonsnotstored.label "Passwords Never Saved">
<!ENTITY spiel.signonsstored.label "Password Manager has saved login information for the following sites:">
<!ENTITY spiel.signonsnotstored.label "Password Manager will never save login information for the following sites:">
<!ENTITY treehead.site.label "Site">
<!ENTITY treehead.username.label "Username">
<!ENTITY treehead.password.label "Password">
<!ENTITY remove.label "Remove">
<!ENTITY removeall.label "Remove All">

Просмотреть файл

@ -0,0 +1,49 @@
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is Mozilla Password Manager.
#
# The Initial Developer of the Original Code is
# Brian Ryner.
# Portions created by the Initial Developer are Copyright (C) 2003
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Brian Ryner <bryner@brianryner.com>
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
rememberValue = Use Password Manager to remember this value.
rememberPassword = Use Password Manager to remember this password.
savePasswordTitle = Confirm
savePasswordText = Password Manager can remember this logon and enter it automatically the next time you return to this web site.\nDo you want Password Manager to remember this logon?
neverForSite = Never for this site
close = Close
passwordChangeTitle = Confirm Password Change
passwordChangeText = Would you like to have Password Manager change the stored password for %S?
userSelectText = Please confirm which user you are changing the password for
hidePasswords=Hide Passwords
showPasswords=Show Passwords
noMasterPasswordPrompt=Are you sure you wish to show your passwords?

Просмотреть файл

@ -0,0 +1 @@
#define MOZ_LANG_TITLE English (US)

Просмотреть файл

@ -0,0 +1,90 @@
[String Resources]
;------------------------------------------------------------------------------
; UI strings
;------------------------------------------------------------------------------
NEXT=Next >
BACK=< Back
CANCEL=Cancel
ACCEPT=Accept
DECLINE=Decline
INSTALL=Install
PAUSE=Pause
RESUME=Resume
DEFAULT_TITLE=Mozilla Installer
DEST_DIR=Destination Directory
BROWSE=Change...
SELECT_DIR=Select a directory
DOESNT_EXIST=Directory %s doesn't exist. Create it?
YES_LABEL=Yes
NO_LABEL=No
OK_LABEL=OK
DELETE_LABEL=Delete Directory
CANCEL_LABEL=Cancel
ERROR=Error [%d]: %s
FATAL_ERROR=Fatal error [%d]: %s
DESCRIPTION=Description
WILL_INSTALL=Setup will install the following components:
TO_LOCATION=to the following location:
PREPARING=Preparing %s...
EXTRACTING=Extracting %s...
INSTALLING_XPI=Installing %s...
PROCESSING_FILE=Processing file %d of %d...
NO_PERMS=Choose another directory because you do not have permission to install to: %s
DL_SETTINGS=Download Settings
SAVE_MODULES=Save installer modules upon download
PROXY_SETTINGS=Proxy Settings...
PS_LABEL0=Proxy Host [required]:
PS_LABEL1=Proxy Port [required]:
PS_LABEL2=Proxy Username [optional]:
PS_LABEL3=Proxy Password [optional]:
ERROR_TITLE=Error!
DS_AVAIL=Disk Space Available = %ld KB
DS_REQD=Disk Space Required = %ld KB
NO_DISK_SPACE=Please select a directory on a disk with enough space to install or free some disk space on the selected disk.
CXN_DROPPED=A network connection failure occured. Please check your network connection and press the 'Resume' button. Alternatively, press the 'Cancel' button to quit the installer.
CRC_CHECK=Some files failed to download correctly. Retrying.
CRC_FAILED=Installation has failed due to multiple CRC failures.
DOWNLOADING=Downloading:
FROM=From:
TO=To:
STATUS=Status:
DL_STATUS_STR=%d KB of %d KB (at %d KB/sec)
USAGE_MSG=Usage: %s [options]%s [options] can be any of the following combination:%s -h: This help.%s -ma: Run setup in Auto mode: show progress UI,%s but assume defaults without user intervention.%s -ms: Run setup in Silent mode: show no UI and have%s no user intervention.%s -ira: Ignore the [RunAppX] sections%s
UNKNOWN=Unknown
;------------------------------------------------------------------------------
; Error strings
;------------------------------------------------------------------------------
-601=Out of memory
-602=Invalid param
-603=Invalid member variable
-604=Invalid pointer
-605=Parse key has no value
-606=Failed to read readme
-607=Failed to read license
-608=Out of bounds in Component/Setup Type list
-609=Mismatched ref counts
-610=No components in the INI file
-611=No setup types in the INI file
-612=URL at this index already exists
-613=Couldn't create the directory
-614=FTP URL malformed
-615=Download failed
-616=Extraction of XPCOM failed
-617=Failed to fork a process
-618=Couldn't open xpistub library
-619=Couldn't get symbol in library
-620=A xpistub call failed
-621=An Installer module %s (.xpi) failed to install
-622=Copy of an installer module (.xpi) failed
-623=Destination directory doesn't exist
-624=Can't make destination directory. Please try another directory.
-625=A previous installation exists.
-626=Insufficient permission
-627=Insufficient disk space
-628=Multiple CRC Failure

Просмотреть файл

@ -0,0 +1,22 @@
WIN_INSTALLER_CHARSET = CP1252
# possibilities are:
# ANSI_CHARSET CP1252
# BALTIC_CHARSET CP1257
# CHINESEBIG5_CHARSET CP950
# EASTEUROPE_CHARSET CP1250
# GB2312_CHARSET CP936
# GREEK_CHARSET CP1253
# HANGUL_CHARSET CP949
# RUSSIAN_CHARSET CP1251
# SHIFTJIS_CHARSET CP932
# TURKISH_CHARSET CP1254
# VIETNAMESE_CHARSET CP1258
# Korean language edition of Windows:
# JOHAB_CHARSET CP1361
# Middle East language edition of Windows:
# ARABIC_CHARSET CP1256
# HEBREW_CHARSET CP1255
# Thai language edition of Windows:
# THAI_CHARSET CP874

Просмотреть файл

@ -0,0 +1,137 @@
[General]
FONTNAME=MS Sans Serif
FONTSIZE=8
CHARSET=0
;Here is a partial list CHAR_SETS
; ANSI_CHARSET = 0
; DEFAULT_CHARSET = 1
; SYMBOL_CHARSET = 2
; SHIFTJIS_CHARSET = 128
; GB2312_CHARSET = 134
; HANGEUL_CHARSET = 129
; CHINESEBIG5_CHARSET = 136
; OEM_CHARSET 255
OK_=&OK
OK=OK
CANCEL=Cancel
CANCEL_=&Cancel
NEXT_=&Next >
BACK_=< &Back
IGNORE_=&Ignore
PROXY_MESSAGE=To configure a Proxy server for this download, click the Connection... button.
PROXY_BUTTON=&Connection...
PROXYSETTINGS=Proxy Settings:
PROXYSETTINGS_=&Proxy Settings
SERVER=Server:
PORT=Port:
USERID=User id:
PASSWORD=Password:
SELECTDIRECTORY=Select a directory
DIRECTORIES_=&Directories:
DRIVES_=Dri&ves:
STATUS=Remaining:
FILE=File:
URL=URL:
TO=To Path:
ACCEPT_=&Accept
DECLINE_=&Decline
PROGRAMFOLDER_=&Program Folder:
EXISTINGFOLDERS_=E&xisting Folders:
SETUPMESSAGE=Setup has finished copying files to your computer. Before you can use $ProductNameInternal$, you must restart Windows or your computer. Choose one of the following options and click OK to finish setup.
RESTART=Restart
YESRESTART=Yes, I want to restart my computer now.
NORESTART=No, I will restart my computer later.
ADDITIONALCOMPONENTS_=&Additional Components:
DESCRIPTION=Description
TOTALDOWNLOADSIZE=Total download size:
SPACEAVAILABLE=Space Available:
COMPONENTS_=C&omponents:
BROWSEINFO=Choose a Folder to install $ProductName$ into:
DESTINATIONDIRECTORY=Install Folder
BROWSE_=B&rowse...
DOWNLOADSIZE=Download Size: %u KB
CURRENTSETTINGS=Current Settings:
INSTALLFOLDER=...to the following location:
ADDTLCOMPWRAPPER=- %s
PRIMCOMPOTHERS=%s, and:
PRIMCOMPNOOTHERS=%s
INSTALL_=&Install
DELETE_=&Delete
CONTINUE_=&Continue
SKIP_=&Skip
README=Re&ad Me
PAUSE_=&Pause
RESUME_=&Resume
CHECKED=Checked
UNCHECKED=Unchecked
EXTRACTING=Extracting...
[Messages]
ERROR_DIALOG_CREATE=Could not create %s dialog.
ERROR_FAILED=%s failed.
ERROR_FILE_NOT_FOUND=File not found: %s
ERROR_GET_SYSTEM_DIRECTORY_FAILED=GetSystemDirectory() failed.
ERROR_GET_WINDOWS_DIRECTORY_FAILED =GetWindowsDirectory() failed.
DLGQUITTITLE=Exit Setup
DLGQUITMSG=You have not finished installing $ProductName$. If you exit Setup now, $ProductName$ will not be installed. Are you sure you want to cancel Setup?
DLG_REBOOT_TITLE=Restarting Windows
ERROR_GETPROCADDRESS=GetProcAddress() of %s failed.
ERROR_WRITEPRIVATEPROFILESTRING=WritePrivateProfileString() failed for file %s
MSG_RETRIEVE_CONFIGINI=Please wait while Setup retrieves its configuration script from the web...
ERROR_CREATE_TEMP_DIR=Setup was unable to create the TEMP directory: %s
DLGBROWSETITLE=Select a directory
ERROR_DETERMINING_DISK_SPACE=Could not determine available disk space for: %s
DLG_DISK_SPACE_CHECK_TITLE=Disk space check
DLG_DISK_SPACE_CHECK_CRUTIAL_MSG=Setup has detected insufficient disk space to continue with installation on %s for the path: %sRequired: %sAvailable: %sClick Retry if more disk space has been made available, or click Cancel to cancel Setup.
DLG_DISK_SPACE_CHECK_MSG=Setup has detected insufficient disk space to continue with installation process on %s for the path: %sRequired: %sAvailable: %sClick OK to go back and choose a different destination path.
ERROR_CREATE_DIRECTORY=Could not create folder: %sMake sure you have access to create the folder.
ERROR_MESSAGE_TITLE=$ProductNameInternal$ Setup Error
STR_FILE_NUMBER=File count:
STR_FILENAME=Filename:
MSG_SMARTUPDATE_START=Preparing Install, please wait...
MSG_CONFIGURING=Configuring %s, please wait...
ERROR_XPI_INSTALL=Error occurred during installation
ERROR_SETUP_REQUIREMENT=$ProductName$ can only run on Windows 95 or newer. Setup will now exit.
DLG_EXTRACTING_TITLE=$ProductName$ Setup - Install Progress
STR_PROCESSINGFILE=Preparing file: %s
STR_INSTALLING=Currently installing %s
STR_COPYINGFILE=Copying file: %s
MB_WARNING_STR=Warning
MB_MESSAGE_STR=Message
MB_ATTENTION_STR=Attention
MSG_CREATE_DIRECTORY=The following directory does not exist:%sWould you like to create it?
STR_CREATE_DIRECTORY=Create Directory?
ERROR_PROGRAM_FOLDER_NAME=Invalid Program folder name entered.
CB_DEFAULT=Default
ERROR_DESTINATION_PATH=Invalid path entered.
STR_SETUP_TYPE=Setup Type:
STR_SELECTED_COMPONENTS=Selected Components:
STR_DESTINATION_DIRECTORY=Destination Directory:
STR_PROGRAM_FOLDER=Program Folder:
STR_DELETING_DESTINATION_DIR=Deleting destination directory to be able to upgrade, please wait...
STR_SETUP=Setup
STR_DOWNLOAD_SITE=Download Site:
STR_SAVE_INSTALLER_FILES=Save downloaded and Setup program files to:
MSG_INIT_SETUP=Initializing Setup, please wait...
STR_MESSAGEBOX_TITLE=%s Setup
ERROR_GETVERSION=GetVersionEx() failed!
DLG_USAGE_TITLE=Usage
STATUS_EXTRACTING=Extracting %s
STATUS_LAUNCHING_SETUP=Launching Setup...
ERROR_FILE_WRITE=Unable to write file %s
TITLE=Installation
ERROR_OUT_OF_MEMORY=Out of memory!
ERROR_DLL_LOAD=Could not load %s
ERROR_STRING_LOAD=Could not load string resource ID %d
ERROR_STRING_NULL=Null pointer encountered.
ERROR_GLOBALALLOC=Memory allocation error.
MSG_FORCE_QUIT_PROCESS=Setup has detected that %s (%s) is still running. Click OK to quit %s and proceed with installation. Alternatively, use the Windows Task Manager to quit %s, and then click OK to continue with installation.
MSG_FORCE_QUIT_PROCESS_FAILED=Setup will now exit. Setup could not continue because %s (%s) is still running. Try manually quitting %s using Windows Task Manager, and then run Setup again.
ERROR_PATH_WITHIN_WINDIR=$ProductName$ cannot be installed into a folder that is inside the Windows folder. Please choose a different folder.

Просмотреть файл

@ -0,0 +1,26 @@
<?xml version="1.0"?>
#filter substitution
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- list all the locale being supplied by this package -->
<RDF:Seq about="urn:mozilla:locale:root">
<RDF:li resource="urn:mozilla:locale:@AB_CD@"/>
</RDF:Seq>
<!-- locale information -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@">
<chrome:packages>
<RDF:Seq about="urn:mozilla:locale:@AB_CD@:packages">
<RDF:li resource="urn:mozilla:locale:@AB_CD@:global-platform"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
<!-- Version Information. State that we work only with major version of this
package. -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@:global-platform"
chrome:localeVersion="@MOZILLA_LOCALE_VERSION@"/>
</RDF:RDF>

Просмотреть файл

@ -0,0 +1,26 @@
<?xml version="1.0"?>
#filter substitution
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- list all the locale being supplied by this package -->
<RDF:Seq about="urn:mozilla:locale:root">
<RDF:li resource="urn:mozilla:locale:@AB_CD@"/>
</RDF:Seq>
<!-- locale information -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@">
<chrome:packages>
<RDF:Seq about="urn:mozilla:locale:@AB_CD@:packages">
<RDF:li resource="urn:mozilla:locale:@AB_CD@:global-region" />
</RDF:Seq>
</chrome:packages>
</RDF:Description>
<!-- Version Information. State that we work only with major version of this
package. -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@:global-region"
chrome:localeVersion="@MOZILLA_REGION_VERSION@" />
</RDF:RDF>

Просмотреть файл

@ -0,0 +1,29 @@
<?xml version="1.0"?>
#filter substitution
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- list all the skins being supplied by this package -->
<RDF:Seq about="urn:mozilla:locale:root">
<RDF:li resource="urn:mozilla:locale:@AB_CD@"/>
</RDF:Seq>
<!-- locale information -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@"
chrome:displayName="@MOZ_LANG_TITLE@"
chrome:name="@AB_CD@"
chrome:localeVersion="@MOZILLA_LOCALE_VERSION@">
<chrome:packages>
<RDF:Seq about="urn:mozilla:locale:@AB_CD@:packages">
<RDF:li resource="urn:mozilla:locale:@AB_CD@:global"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
<!-- Version Information. State that we work only with major version of this
package. -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@:global"
chrome:localeVersion="@MOZILLA_LOCALE_VERSION@"/>
</RDF:RDF>

Просмотреть файл

@ -0,0 +1,26 @@
<?xml version="1.0"?>
#filter substitution
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- list all the packages being supplied by this jar -->
<RDF:Seq about="urn:mozilla:locale:root">
<RDF:li resource="urn:mozilla:locale:@AB_CD@"/>
</RDF:Seq>
<!-- package information -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@">
<chrome:packages>
<RDF:Seq about="urn:mozilla:locale:@AB_CD@:packages">
<RDF:li resource="urn:mozilla:locale:@AB_CD@:mozapps"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
<!-- version information -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@:mozapps"
chrome:localeVersion="@MOZILLA_LOCALE_VERSION@"/>
</RDF:RDF>

Просмотреть файл

@ -0,0 +1,26 @@
<?xml version="1.0"?>
#filter substitution
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- list all the packages being supplied by this jar -->
<RDF:Seq about="urn:mozilla:locale:root">
<RDF:li resource="urn:mozilla:locale:@AB_CD@"/>
</RDF:Seq>
<!-- locale information -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@">
<chrome:packages>
<RDF:Seq about="urn:mozilla:locale:@AB_CD@:packages">
<RDF:li resource="urn:mozilla:locale:@AB_CD@:passwordmgr"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
<!-- Version Information. State that we work only with major version of this
package. -->
<RDF:Description about="urn:mozilla:locale:@AB_CD@:passwordmgr"
chrome:localeVersion="@MOZILLA_LOCALE_VERSION@"/>
</RDF:RDF>

83
toolkit/locales/jar.mn Normal file
Просмотреть файл

@ -0,0 +1,83 @@
#filter substitution
@AB_CD@.jar:
* locale/global/contents.rdf (generic/chrome/global/contents.rdf)
+ locale/global/accept2locale.properties (@AB_CD@/chrome/global/accept2locale.properties)
+ locale/global/charsetOverlay.dtd (@AB_CD@/chrome/global/charsetOverlay.dtd)
+ locale/global/commonDialog.dtd (@AB_CD@/chrome/global/commonDialog.dtd)
+ locale/global/commonDialogs.properties (@AB_CD@/chrome/global/commonDialogs.properties)
+ locale/global/config.dtd (@AB_CD@/chrome/global/config.dtd)
+ locale/global/config.properties (@AB_CD@/chrome/global/config.properties)
* locale/global/console.dtd (@AB_CD@/chrome/global/console.dtd)
+ locale/global/console.properties (@AB_CD@/chrome/global/console.properties)
* locale/global/customizeCharset.dtd (@AB_CD@/chrome/global/customizeCharset.dtd)
+ locale/global/customizeToolbar.dtd (@AB_CD@/chrome/global/customizeToolbar.dtd)
+ locale/global/customizeToolbar.properties (@AB_CD@/chrome/global/customizeToolbar.properties)
* locale/global/dialogOverlay.dtd (@AB_CD@/chrome/global/dialogOverlay.dtd)
locale/global/downloadProgress.properties (@AB_CD@/chrome/global/downloadProgress.properties)
+ locale/global/editMenuOverlay.dtd (@AB_CD@/chrome/global/editMenuOverlay.dtd)
locale/global/filepicker.dtd (@AB_CD@/chrome/global/filepicker.dtd)
locale/global/filepicker.properties (@AB_CD@/chrome/global/filepicker.properties)
+ locale/global/finddialog.dtd (@AB_CD@/chrome/global/finddialog.dtd)
+ locale/global/finddialog.properties (@AB_CD@/chrome/global/finddialog.properties)
+ locale/global/intl.css (@AB_CD@/chrome/global/intl.css)
+ locale/global/intl.properties (@AB_CD@/chrome/global/intl.properties)
+ locale/global/keys.properties (@AB_CD@/chrome/global/keys.properties)
+ locale/global/languageNames.properties (@AB_CD@/chrome/global/languageNames.properties)
locale/global/license.dtd (@AB_CD@/chrome/global/license.dtd)
locale/global/mozilla.dtd (@AB_CD@/chrome/global/mozilla.dtd)
+ locale/global/nsTreeSorting.properties (@AB_CD@/chrome/global/nsTreeSorting.properties)
locale/global/plugins.properties (@AB_CD@/chrome/global/plugins.properties)
locale/global/printdialog.properties (@AB_CD@/chrome/global/printdialog.properties)
+ locale/global/printdialog.dtd (@AB_CD@/chrome/global/printdialog.dtd)
+ locale/global/printjoboptions.dtd (@AB_CD@/chrome/global/printjoboptions.dtd)
+ locale/global/printjoboptions.properties (@AB_CD@/chrome/global/printjoboptions.properties)
+ locale/global/printPageSetup.dtd (@AB_CD@/chrome/global/printPageSetup.dtd)
+ locale/global/printPreview.dtd (@AB_CD@/chrome/global/printPreview.dtd)
+ locale/global/printPreviewProgress.dtd (@AB_CD@/chrome/global/printPreviewProgress.dtd)
+ locale/global/printProgress.dtd (@AB_CD@/chrome/global/printProgress.dtd)
+ locale/global/regionNames.properties (@AB_CD@/chrome/global/regionNames.properties)
+ locale/global/dialog.properties (@AB_CD@/chrome/global/dialog.properties)
+ locale/global/tabbrowser.dtd (@AB_CD@/chrome/global/tabbrowser.dtd)
+ locale/global/tabbrowser.properties (@AB_CD@/chrome/global/tabbrowser.properties)
+ locale/global/textcontext.dtd (@AB_CD@/chrome/global/textcontext.dtd)
+ locale/global/viewSource.dtd (@AB_CD@/chrome/global/viewSource.dtd)
+ locale/global/viewSource.properties (@AB_CD@/chrome/global/viewSource.properties)
+ locale/global/wizard.properties (@AB_CD@/chrome/global/wizard.properties)
locale/global/history/history.properties (@AB_CD@/chrome/global/history/history.properties)
* locale/global-region/contents.rdf (generic/chrome/global-region/contents.rdf)
+ locale/global-region/region.dtd (@AB_CD@/chrome/global-region/region.dtd)
+ locale/global-region/region.properties (@AB_CD@/chrome/global-region/region.properties)
+ locale/global-region/builtinURLs.rdf (@AB_CD@/chrome/global-region/builtinURLs.rdf)
* locale/global-platform/contents.rdf (generic/chrome/global-platform/contents.rdf)
locale/global-platform/mac/platformKeys.properties (@AB_CD@/chrome/global-platform/mac/platformKeys.properties)
locale/global-platform/unix/platformKeys.properties (@AB_CD@/chrome/global-platform/unix/platformKeys.properties)
locale/global-platform/win/platformKeys.properties (@AB_CD@/chrome/global-platform/win/platformKeys.properties)
locale/global-platform/mac/intl.properties (@AB_CD@/chrome/global-platform/mac/intl.properties)
locale/global-platform/unix/intl.properties (@AB_CD@/chrome/global-platform/unix/intl.properties)
locale/global-platform/win/intl.properties (@AB_CD@/chrome/global-platform/win/intl.properties)
* locale/mozapps/contents.rdf (generic/chrome/mozapps/contents.rdf)
* locale/mozapps/downloads/unknownContentType.properties (@AB_CD@/chrome/mozapps/downloads/unknownContentType.properties)
* locale/mozapps/downloads/unknownContentType.dtd (@AB_CD@/chrome/mozapps/downloads/unknownContentType.dtd)
locale/mozapps/downloads/pref-downloads.dtd (@AB_CD@/chrome/mozapps/downloads/pref-downloads.dtd)
locale/mozapps/downloads/editAction.dtd (@AB_CD@/chrome/mozapps/downloads/editAction.dtd)
locale/mozapps/downloads/downloads.dtd (@AB_CD@/chrome/mozapps/downloads/downloads.dtd)
locale/mozapps/downloads/downloads.properties (@AB_CD@/chrome/mozapps/downloads/downloads.properties)
locale/mozapps/downloads/downloadProperties.dtd (@AB_CD@/chrome/mozapps/downloads/downloadProperties.dtd)
locale/mozapps/extensions/extensions.dtd (@AB_CD@/chrome/mozapps/extensions/extensions.dtd)
locale/mozapps/extensions/extensions.properties (@AB_CD@/chrome/mozapps/extensions/extensions.properties)
locale/mozapps/extensions/about.dtd (@AB_CD@/chrome/mozapps/extensions/about.dtd)
locale/mozapps/extensions/finalize.dtd (@AB_CD@/chrome/mozapps/extensions/finalize.dtd)
locale/mozapps/plugins/plugins.dtd (@AB_CD@/chrome/mozapps/plugins/plugins.dtd)
locale/mozapps/plugins/plugins.properties (@AB_CD@/chrome/mozapps/plugins/plugins.properties)
locale/mozapps/profile/createProfileWizard.dtd (@AB_CD@/chrome/mozapps/profile/createProfileWizard.dtd)
locale/mozapps/profile/profileSelection.properties (@AB_CD@/chrome/mozapps/profile/profileSelection.properties)
locale/mozapps/profile/profileSelection.dtd (@AB_CD@/chrome/mozapps/profile/profileSelection.dtd)
locale/mozapps/update/update.dtd (@AB_CD@/chrome/mozapps/update/update.dtd)
locale/mozapps/update/update.properties (@AB_CD@/chrome/mozapps/update/update.properties)
locale/mozapps/update/errors.dtd (@AB_CD@/chrome/mozapps/update/errors.dtd)
locale/mozapps/xpinstall/xpinstallConfirm.dtd (@AB_CD@/chrome/mozapps/xpinstall/xpinstallConfirm.dtd)
locale/mozapps/xpinstall/xpinstallConfirm.properties (@AB_CD@/chrome/mozapps/xpinstall/xpinstallConfirm.properties)
* locale/passwordmgr/contents.rdf (generic/chrome/passwordmgr/contents.rdf)
* locale/passwordmgr/passwordmgr.properties (@AB_CD@/chrome/passwordmgr/passwordmgr.properties)
* locale/passwordmgr/passwordManager.dtd (@AB_CD@/chrome/passwordmgr/passwordManager.dtd)