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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
<?php
namespace Gettext\Generators;
use Gettext\Translations;
class Po extends Generator implements GeneratorInterface { public static $options = [ 'noLocation' => false, ];
/** * {@parentDoc}. */ public static function toString(Translations $translations, array $options = []) { $options += static::$options;
$pluralForm = $translations->getPluralForms(); $pluralSize = is_array($pluralForm) ? ($pluralForm[0] - 1) : null; $lines = ['msgid ""', 'msgstr ""'];
foreach ($translations->getHeaders() as $name => $value) { $lines[] = sprintf('"%s: %s\\n"', $name, $value); }
$lines[] = '';
//Translations foreach ($translations as $translation) { if ($translation->hasComments()) { foreach ($translation->getComments() as $comment) { $lines[] = '# '.$comment; } }
if ($translation->hasExtractedComments()) { foreach ($translation->getExtractedComments() as $comment) { $lines[] = '#. '.$comment; } }
if (!$options['noLocation'] && $translation->hasReferences()) { foreach ($translation->getReferences() as $reference) { $lines[] = '#: '.$reference[0].(!is_null($reference[1]) ? ':'.$reference[1] : null); } }
if ($translation->hasFlags()) { $lines[] = '#, '.implode(',', $translation->getFlags()); }
if ($translation->hasContext()) { $lines[] = 'msgctxt '.self::convertString($translation->getContext()); }
self::addLines($lines, 'msgid', $translation->getOriginal());
if ($translation->hasPlural()) { self::addLines($lines, 'msgid_plural', $translation->getPlural()); self::addLines($lines, 'msgstr[0]', $translation->getTranslation());
foreach ($translation->getPluralTranslations($pluralSize) as $k => $v) { self::addLines($lines, 'msgstr['.($k + 1).']', $v); } } else { self::addLines($lines, 'msgstr', $translation->getTranslation()); }
$lines[] = ''; }
return implode("\n", $lines); }
/** * Escapes and adds double quotes to a string. * * @param string $string * * @return string */ private static function multilineQuote($string) { $lines = explode("\n", $string); $last = count($lines) - 1;
foreach ($lines as $k => $line) { if ($k === $last) { $lines[$k] = self::convertString($line); } else { $lines[$k] = self::convertString($line."\n"); } }
return $lines; }
/** * Add one or more lines depending whether the string is multiline or not. * * @param array &$lines * @param string $name * @param string $value */ private static function addLines(array &$lines, $name, $value) { $newLines = self::multilineQuote($value);
if (count($newLines) === 1) { $lines[] = $name.' '.$newLines[0]; } else { $lines[] = $name.' ""';
foreach ($newLines as $line) { $lines[] = $line; } } }
/** * Convert a string to its PO representation. * * @param string $value * * @return string */ public static function convertString($value) { return '"'.strtr( $value, [ "\x00" => '', '\\' => '\\\\', "\t" => '\t', "\n" => '\n', '"' => '\\"', ] ).'"'; } }
|