From 5391cd9c3f67ca6da517f8dc885b53171a657832 Mon Sep 17 00:00:00 2001 From: Alfred Egger Date: Fri, 1 May 2020 14:39:42 +0200 Subject: [PATCH] Fix plural in text strings --- templates/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/main.php b/templates/main.php index 7eafecb..30d5898 100644 --- a/templates/main.php +++ b/templates/main.php @@ -118,7 +118,7 @@ use \OCA\OcSms\Lib\CountryCodes;
{{ selectedContact.label }}
{{ selectedContact.opt_numbers }}
-
t('%s message(s) shown of %s message(s) stored in database.', array( '{{ messages.length }}', '{{ totalMessageCount }}')));?>
+
t('%s messages shown of %s messages stored in database.', array( '{{ messages.length }}', '{{ totalMessageCount }}')));?>