File: data.currency.pl

package info (click to toggle)
liblocale-codes-perl 3.85-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,768 kB
  • sloc: perl: 137,979; sh: 22; makefile: 2
file content (60 lines) | stat: -rw-r--r-- 2,132 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
#!/usr/bin/perl -w
# Copyright (c) 2010-2025 Sullivan Beck.  All rights reserved.
# This program is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.

$Data{'currency'}{'link'} =
  [
  ];

################################################################################

$Data{'currency'}{'iso'}{'orig'}{'name'} = {
   "CFA Franc BCEAO "      => "CFA Franc BCEAO",
   "CFA Franc BEAC "       => "CFA Franc BEAC",
   "Ngultrum "             => "Ngultrum",
   "Unidades de fomento "  => "Unidades de fomento",
   "Pa’anga"               => "Pa'anga",
   "Pa\x{2019}anga"        => "Pa'anga",
   "Pa anga"   => "Pa'anga",
   "US Dollar (Next day) " => "US Dollar (Next day)",
   "US Dollar (Same day) " => "US Dollar (Same day)",
   "Bond Markets Unit European Monetary Unit (E.M.U.-6) "
                           => "Bond Markets Unit European Monetary Unit (E.M.U.-6)",
   "?LAND ISLANDS"      => "Aland Islands",
   "C?TE D'IVOIRE"      => "Cote d'Ivoire",
   "CURA?AO"            => "Curacao",
   "INTERNATIONAL MONETARY FUND (IMF)?"
                           => "International Monetary Fund (IMF)?",
   "KOREA, DEMOCRATIC PEOPLE’S REPUBLIC OF"
                           => "Korea, Democratic People's Republic of",
   "LAO PEOPLE’S DEMOCRATIC REPUBLIC"
                           => "Lao People's Democratic Republic",
   "R?UNION"            => "Reunion",
   "SAINT BARTH?LEMY"   => "Saint Barthelemy",
   "Bolívar"            => "Bolivar",
   "Bol\x{ed}var"       => "Bolivar",
   "Bolvar Soberano"   => "Bolivar Soberano",
};

$Data{'currency'}{'iso'}{'ignore'} = {
   "name"   => {
                "Codes specifically reserved for testing purposes"   => 1,
                "The codes assigned for transactions where no currency is involved"    => 1,
               },
   "num"    => {},
   "alpha"  => {},
};

1;

# Local Variables:
# mode: cperl
# indent-tabs-mode: nil
# cperl-indent-level: 3
# cperl-continued-statement-offset: 2
# cperl-continued-brace-offset: 0
# cperl-brace-offset: 0
# cperl-brace-imaginary-offset: 0
# cperl-label-offset: 0
# End: