File: Strings_SBCS.pm

package info (click to toggle)
linuxdoc-tools 0.9.86-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,312 kB
  • sloc: ansic: 16,247; perl: 3,769; sh: 1,134; makefile: 813; lex: 566; lisp: 309
file content (109 lines) | stat: -rw-r--r-- 2,337 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#
#  Strings_SBCS.pm
#
#  Language support. Single Byte Character Set strings translations.
#
# The module, in its source file, contains a data structure, indexed
# by the English strings, that has all available single byte
# translations.
#
# Be careful, this file mixes different single byte encodings, latin1,
# euc-jp and euc-kr.
#
# For UTF-8 translations of strings look at Data::Strings_UTF8.pm
#
# By the time this grows big, we'll make up something else.
#
#  Copyright (C) 1997, Cees de Groot
#  Copyright (C) 2020, Agustin Martin
# -------------------------------------------------------------------------

package LinuxDocTools::Data::Strings_SBCS;

use strict;

our $translations
  = {
     "Previous"
     => {
	 "nl" => "Terug",
	 "de" => "Zurck",
	 "es" => "Pgina anterior",
	 "fr" => "Page prcdente",
	 "da" => "Forrige",
	 "no" => "Forrige",
	 "se" => "Fregende",
	 "pt" => "Pgina anterior",
	 "ca" => "Pgina anterior",
	 "it" => "Indietro",
	 "ro" => "napoi",
	 "ja" => "Υڡ",
	 "pl" => "Poprzedni",
	 "ko" => "",
	 "fi" => "Edellinen"
	},
     "Next"
     => {
	 "nl" => "Verder",
	 "de" => "Weiter",
	 "es" => "Pgina siguiente",
	 "fr" => "Page suivante",
	 "da" => "Nste",
	 "no" => "Neste",
	 "se" => "Nsta",
	 "pt" => "Pgina seguinte",
	 "ca" => "Pgina segent",
	 "it" => "Avanti",
	 "ro" => "nainte",
	 "ja" => "Υڡ",
	 "pl" => "Nastny",
	 "ko" => "",
	 "fi" => "Seuraava"
	},
     "Contents"
     => {
	 "nl" => "Inhoud",
	 "de" => "Inhalt",
	 "es" => "ndice general",
	 "fr" => "Table des matires",
	 "da" => "Indhold",
	 "no" => "Innhold",
	 "se" => "Innehllsfrteckning",
	 "pt" => "ndice",
	 "ca" => "ndex",
	 "it" => "Indice",
	 "ro" => "Cuprins",
	 "ja" => "ܼ",
	 "pl" => "Spis Trei",
	 "ko" => "",
	 "fi" => "Sisllys"
	},
     "Table of Contents"
     => {
	 "nl" => "Inhoudsopgave",
	 "de" => "Inhaltsverzeichnis",
	 "es" => "ndice general",
	 "fr" => "Table des matires",
	 "da" => "Indholdsfortegnelse",
	 "no" => "Innholdsfortegnelse",
	 "se" => "Innehllsfrteckning",
	 "pt" => "ndice geral",
	 "ca" => "ndex general",
	 "it" => "Indice Generale",
	 "ro" => "Cuprins",
	 "ja" => "ܼ",
	 "pl" => "Spis Trei",
	 "ko" => "",
	 "fi" => "Sisllysluettelo"
	}
    };

=back

=head1 AUTHOR

Cees de Groot, C<E<lt>cg@pobox.comE<gt>>

=cut

1;