Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
56083919
Commit
56083919
authored
11 years ago
by
Jakob Sack
Browse files
Options
Downloads
Patches
Plain Diff
make l10n libs capable of handling plural translations
parent
e13d1d0c
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/l10n.php
+20
-0
20 additions, 0 deletions
lib/l10n.php
lib/l10n/string.php
+8
-3
8 additions, 3 deletions
lib/l10n/string.php
with
28 additions
and
3 deletions
lib/l10n.php
+
20
−
0
View file @
56083919
...
...
@@ -166,6 +166,26 @@ class OC_L10N{
return
new
OC_L10N_String
(
$this
,
$text
,
$parameters
);
}
/**
* @brief Translating
* @param $text_singular String the string to translate for exactly one object
* @param $text_plural String the string to translate for n objects
* @param $count Integer Number of objects
* @param array $parameters default:array() Parameters for sprintf
* @return \OC_L10N_String Translation or the same text
*
* Returns the translation. If no translation is found, $text will be
* returned. %n will be replaced with the number of objects.
*/
public
function
tp
(
$text_singular
,
$text_plural
,
$count
,
$parameters
=
array
())
{
if
(
$count
==
1
){
return
new
OC_L10N_String
(
$this
,
$text_singular
,
$parameters
,
$count
);
}
else
{
return
new
OC_L10N_String
(
$this
,
$text_plural
,
$parameters
,
$count
);
}
}
/**
* @brief Translating
* @param $textArray The text array we need a translation for
...
...
This diff is collapsed.
Click to expand it.
lib/l10n/string.php
+
8
−
3
View file @
56083919
...
...
@@ -8,18 +8,23 @@
class
OC_L10N_String
{
protected
$l10n
;
public
function
__construct
(
$l10n
,
$text
,
$parameters
)
{
public
function
__construct
(
$l10n
,
$text
,
$parameters
,
$count
=
1
)
{
$this
->
l10n
=
$l10n
;
$this
->
text
=
$text
;
$this
->
parameters
=
$parameters
;
$this
->
count
=
$count
;
}
public
function
__toString
()
{
$translations
=
$this
->
l10n
->
getTranslations
();
$text
=
$this
->
text
;
if
(
array_key_exists
(
$this
->
text
,
$translations
))
{
return
vsprintf
(
$translations
[
$this
->
text
]
,
$this
->
parameters
)
;
$text
=
$translations
[
$this
->
text
];
}
return
vsprintf
(
$this
->
text
,
$this
->
parameters
);
// Replace %n first (won't interfere with vsprintf)
$text
=
str_replace
(
'%n'
,
$this
->
count
,
$text
);
return
vsprintf
(
$text
,
$this
->
parameters
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment