summaryrefslogtreecommitdiffstats
path: root/apps/comments/l10n/es_DO.js
blob: 824a5b19e630c3df970cf4cea43b57568b8d54bc (plain)
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
OC.L10N.register(
    "comments",
    {
    "Comments" : "Comentarios",
    "Unknown user" : "Usuario desconocido",
    "New comment …" : "Comentario nuevo ...",
    "Delete comment" : "Borrar comentario",
    "Post" : "Publicar",
    "Cancel" : "Cancelar",
    "Edit comment" : "Editar comentario",
    "[Deleted user]" : "[Usuario borrado]",
    "No comments yet, start the conversation!" : "¡Aún no hay comentarios, inicia la conversación!",
    "More comments …" : "Más comentarios ...",
    "Save" : "Guardar",
    "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}",
    "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}",
    "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}",
    "Error occurred while posting comment" : "Se presentó un error al publicar el comentario",
    "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"],
    "Comment" : "Comentario",
    "You commented" : "Comentaste",
    "%1$s commented" : "%1$s comentó",
    "{author} commented" : "{author} comentó",
    "You commented on %1$s" : "Usted comentó en %1$s",
    "You commented on {file}" : "Hiciste un comentario de {file}",
    "%1$s commented on %2$s" : "%1$s comentó en %2$s",
    "{author} commented on {file}" : "{author} comentó en {file}",
    "<strong>Comments</strong> for files" : "<strong>Comentarios</strong> de los archivos",
    "%1$s mentioned you in a comment on “%2$s”" : "%1$s te mencionó en un comentario en “%2$s”",
    "{user} mentioned you in a comment on “{file}”" : "{user} te mencionó en un comentario en “{file}”",
    "A (now) deleted user mentioned you in a comment on “%s”" : "Un usuario (ahora) borrado te mencionó en un commentario en “%s”",
    "A (now) deleted user mentioned you in a comment on “{file}”" : "Un usuario (ahora) borrado te mencionó en un commentario en “{file}”"
},
"nplurals=2; plural=(n != 1);");
esktopClientProvider * @param string $userAgent * @expectedException \Sabre\DAV\Exception\Forbidden * @expectedExceptionMessage Unsupported client version. */ public function testBeforeHandlerException($userAgent) { /** @var \Sabre\HTTP\RequestInterface $request */ $request = $this->getMock('\Sabre\HTTP\RequestInterface'); $request ->expects($this->once()) ->method('getHeader') ->with('User-Agent') ->will($this->returnValue($userAgent)); $this->config ->expects($this->once()) ->method('getSystemValue') ->with('minimum.supported.desktop.version', '1.7.0') ->will($this->returnValue('1.7.0')); $this->blockLegacyClientVersionPlugin->beforeHandler($request); } /** * @return array */ public function newAndAlternateDesktopClientProvider() { return [ ['Mozilla/5.0 (1.7.0) mirall/1.7.0'], ['mirall/1.8.3'], ['mirall/1.7.2'], ['mirall/1.7.0'], ['Mozilla/5.0 (Bogus Text) mirall/1.9.3'], ]; } /** * @dataProvider newAndAlternateDesktopClientProvider * @param string $userAgent */ public function testBeforeHandlerSuccess($userAgent) { /** @var \Sabre\HTTP\RequestInterface $request */ $request = $this->getMock('\Sabre\HTTP\RequestInterface'); $request ->expects($this->once()) ->method('getHeader') ->with('User-Agent') ->will($this->returnValue($userAgent)); $this->config ->expects($this->once()) ->method('getSystemValue') ->with('minimum.supported.desktop.version', '1.7.0') ->will($this->returnValue('1.7.0')); $this->blockLegacyClientVersionPlugin->beforeHandler($request); } public function testBeforeHandlerNoUserAgent() { /** @var \Sabre\HTTP\RequestInterface $request */ $request = $this->getMock('\Sabre\HTTP\RequestInterface'); $request ->expects($this->once()) ->method('getHeader') ->with('User-Agent') ->will($this->returnValue(null)); $this->blockLegacyClientVersionPlugin->beforeHandler($request); } }