aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/l10n/be.js2
-rw-r--r--lib/l10n/be.json2
-rw-r--r--lib/private/Calendar/Manager.php10
3 files changed, 12 insertions, 2 deletions
diff --git a/lib/l10n/be.js b/lib/l10n/be.js
index 2f708b7e024..0efbee1bab9 100644
--- a/lib/l10n/be.js
+++ b/lib/l10n/be.js
@@ -1,7 +1,9 @@
OC.L10N.register(
"lib",
{
+ "Authentication" : "Аўтэнтыфікацыя",
"Files" : "Файлы",
+ "_%n year ago_::_%n years ago_" : ["%n год таму","%n гады таму","%n гадоў таму","%n гадоў таму"],
"seconds ago" : "с таму",
"Templates" : "Шаблоны",
"__language_name__" : "Беларуская",
diff --git a/lib/l10n/be.json b/lib/l10n/be.json
index 9b5b6f1be14..05b751c18ae 100644
--- a/lib/l10n/be.json
+++ b/lib/l10n/be.json
@@ -1,5 +1,7 @@
{ "translations": {
+ "Authentication" : "Аўтэнтыфікацыя",
"Files" : "Файлы",
+ "_%n year ago_::_%n years ago_" : ["%n год таму","%n гады таму","%n гадоў таму","%n гадоў таму"],
"seconds ago" : "с таму",
"Templates" : "Шаблоны",
"__language_name__" : "Беларуская",
diff --git a/lib/private/Calendar/Manager.php b/lib/private/Calendar/Manager.php
index 0e2a3f5f679..7da1379809d 100644
--- a/lib/private/Calendar/Manager.php
+++ b/lib/private/Calendar/Manager.php
@@ -403,7 +403,10 @@ class Manager implements IManager {
}
if (empty($found)) {
- $this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar ' . $principalUri . 'and UID' . $vEvent->{'UID'}->getValue());
+ $this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar', [
+ 'principalUri' => $principalUri,
+ 'eventUid' => $vEvent->{'UID'}->getValue(),
+ ]);
return false;
}
@@ -518,7 +521,10 @@ class Manager implements IManager {
}
if (empty($found)) {
- $this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar ' . $principalUri . 'and UID' . $vEvent->{'UID'}->getValue());
+ $this->logger->warning('iMip message event could not be processed because no corresponding event was found in any calendar', [
+ 'principalUri' => $principalUri,
+ 'eventUid' => $vEvent->{'UID'}->getValue(),
+ ]);
return false;
}