Skip to content

Commit 90fe64b

Browse files
committed
Fix test includes and update translation files
1 parent 4a5550c commit 90fe64b

3 files changed

Lines changed: 3 additions & 79 deletions

File tree

Lines changed: 1 addition & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1 @@
1-
{
2-
"header.nav.home": "Inicio",
3-
"header.nav.blog": "Blog",
4-
"header.nav.about": "Acerca de",
5-
"header.nav.contact": "Contacto",
6-
"header.nav.search": "Buscar",
7-
"sidebar.search.title": "Buscar",
8-
"sidebar.search.placeholder": "¿Qué estás buscando?",
9-
"sidebar.latest_posts.title": "Últimas publicaciones",
10-
"sidebar.categories.title": "Categorías",
11-
"sidebar.archives.title": "Archivos",
12-
"sidebar.tags.title": "Etiquetas",
13-
"home.hero.discover_more": "Descubre más",
14-
"home.hero.admin_panel": "Ir al panel de administrador",
15-
"home.hero.scroll_down": "Desplázate hacia abajo",
16-
"home.intro.welcome": "Bienvenido a ScriptLog",
17-
"home.intro.description": "Tu entrada a un blog personal",
18-
"home.latest_posts.title": "Lo último del blog",
19-
"home.divider.view_more": "Ver más",
20-
"single.comment.leave_reply": "Deja un comentario",
21-
"single.comment.label": "Escribe tu comentario",
22-
"single.comment.placeholder": "Ingresa tu comentario",
23-
"single.comment.submit": "Enviar comentario",
24-
"form.name.label": "Nombre",
25-
"form.name.placeholder": "Ingresa nombre",
26-
"form.email.label": "Email (no se publicará)",
27-
"form.email.placeholder": "Ingresa email",
28-
"footer.copyright": "Todos los derechos reservados",
29-
"cookie_consent.banner.title": "Valoramos tu privacidad",
30-
"cookie_consent.banner.description": "utiliza cookies para mejorar tu experiencia de navegación.",
31-
"cookie_consent.buttons.accept": "Aceptar todo",
32-
"cookie_consent.buttons.reject": "Rechazar todo",
33-
"cookie_consent.buttons.learn_more": "Más información",
34-
"cookie_consent.privacy.link": "Política de privacidad",
35-
"404.title": "404",
36-
"404.message": "La página que buscas no se encontró.",
37-
"404.back_home": "Volver al inicio",
38-
"privacy.page_title": "Política de privacidad",
39-
"privacy.last_updated": "Última actualización",
40-
"privacy.information_we_collect": "Información que recopilamos",
41-
"privacy.how_we_use": "Cómo usamos su información",
42-
"privacy.data_security": "Seguridad de datos",
43-
"privacy.your_rights": "Sus derechos",
44-
"privacy.contact_us": "Contáctenos",
45-
"privacy.account_info": "Información de cuenta",
46-
"privacy.user_content": "Contenido generado por el usuario",
47-
"privacy.technical_info": "Información técnica",
48-
"privacy.provide_services": "Para proporcionar, operar y mantener nuestros servicios.",
49-
"privacy.customer_support": "Para gestionar su cuenta y brindarle soporte al cliente.",
50-
"privacy.improve_security": "Para mejorar la seguridad y el rendimiento de nuestro software.",
51-
"privacy.monitor_usage": "Para monitorear el uso y analizar tendencias para mejorar la experiencia del usuario.",
52-
"privacy.password_hashing": "Hash de contraseña",
53-
"privacy.data_encryption": "Cifrado de datos",
54-
"privacy.xss_csrf_protection": "Protección XSS y CSRF",
55-
"privacy.prepared_statements": "Declaraciones preparadas",
56-
"privacy.access_rights": "Tiene derecho a acceder, actualizar o eliminar la información que tenemos sobre usted.",
57-
"form.submit": "Enviar",
58-
"form.cancel": "Cancelar",
59-
"form.save": "Guardar",
60-
"form.delete": "Eliminar",
61-
"form.edit": "Editar",
62-
"form.search": "Buscar...",
63-
"form.email": "Email",
64-
"form.password": "Contraseña",
65-
"form.comment": "Comentario",
66-
"button.read_more": "Leer más",
67-
"button.subscribe": "Suscribirse",
68-
"error.not_found": "Página no encontrada",
69-
"error.server_error": "Error del servidor",
70-
"pagination.previous": "Anterior",
71-
"pagination.next": "Siguiente",
72-
"category.uncategorized": "Sin categoría",
73-
"post.by": "Por",
74-
"post.on": "el",
75-
"post.read_more": "Leer más",
76-
"post.share": "Compartir"
77-
}
1+
[]

tests/integration/UserDaoTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @version 1.0
99
*/
1010

11-
require_once __DIR__ . '/../../lib/utility/scriptlog-password.php';
11+
require_once __DIR__ . '/../../src/lib/utility/scriptlog-password.php';
1212

1313
use PHPUnit\Framework\TestCase;
1414

tests/unit/ThemeI18nTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
// Include the theme functions
19-
require_once __DIR__ . '/../../public/themes/blog/functions.php';
19+
require_once __DIR__ . '/../../src/public/themes/blog/functions.php';
2020

2121
class ThemeI18nTest extends TestCase
2222
{

0 commit comments

Comments
 (0)