Skip to content

Commit 21d3542

Browse files
committed
1.0.2
- Added missing translation - Fixed LICENSE
1 parent 616d131 commit 21d3542

File tree

9 files changed

+9
-5
lines changed

9 files changed

+9
-5
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) <Year> <Your Name>
3+
Copyright (c) 2025 Fernando Gutiérrez
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Kirby X-Ray provides a comprehensive overview of the content present on your site and individual pages, allowing you to inspect and evaluate them at a glance.",
44
"license": "MIT",
55
"type": "kirby-plugin",
6-
"version": "1.0.1",
6+
"version": "1.0.2",
77
"keywords": [
88
"xray",
99
"x-ray",

extensions/translations/de.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
'beebmx.kirby-x-ray.cache.clear' => 'Cache löschen',
77
'beebmx.kirby-x-ray.cache.cleared' => 'Der Cache wurde geleert',
88
'beebmx.kirby-x-ray.cache.empty' => 'Der Cache wurde bereits geleert',
9+
'beebmx.kirby-x-ray.filter' => 'Filtern',
910
'beebmx.kirby-x-ray.inspect' => 'Überprüfen',
1011
'beebmx.kirby-x-ray.resource' => 'Ressource',
1112
'beebmx.kirby-x-ray.resources' => 'Ressourcen',

extensions/translations/en.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
'beebmx.kirby-x-ray.cache.clear' => 'Clear cache',
77
'beebmx.kirby-x-ray.cache.cleared' => 'The cache has been cleared',
88
'beebmx.kirby-x-ray.cache.empty' => 'The cache has already been cleared',
9+
'beebmx.kirby-x-ray.filter' => 'Filter',
910
'beebmx.kirby-x-ray.inspect' => 'Inspect',
1011
'beebmx.kirby-x-ray.resource' => 'Resource',
1112
'beebmx.kirby-x-ray.resources' => 'Resources',

extensions/translations/es.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
'beebmx.kirby-x-ray.cache.clear' => 'Borrar caché',
77
'beebmx.kirby-x-ray.cache.cleared' => 'El caché ha sido borrado',
88
'beebmx.kirby-x-ray.cache.empty' => 'El caché ya ha sido borrado',
9+
'beebmx.kirby-x-ray.filter' => 'Filtrar',
910
'beebmx.kirby-x-ray.inspect' => 'Inspeccionar',
1011
'beebmx.kirby-x-ray.resource' => 'Recurso',
1112
'beebmx.kirby-x-ray.resources' => 'Recursos',

extensions/translations/es_419.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
'beebmx.kirby-x-ray.cache.clear' => 'Borrar caché',
77
'beebmx.kirby-x-ray.cache.cleared' => 'El caché ha sido borrado',
88
'beebmx.kirby-x-ray.cache.empty' => 'El caché ya ha sido borrado',
9+
'beebmx.kirby-x-ray.filter' => 'Filtrar',
910
'beebmx.kirby-x-ray.inspect' => 'Inspeccionar',
1011
'beebmx.kirby-x-ray.resource' => 'Recurso',
1112
'beebmx.kirby-x-ray.resources' => 'Recursos',

index.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/components/List/Resource.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
const buttons = computed(() => [
4040
{
4141
icon: 'filter',
42-
text: window.panel.$t('filter'),
42+
text: window.panel.$t('beebmx.kirby-x-ray.filter'),
4343
click: () => dropdown.value.toggle(),
4444
},
4545
{ icon: showSearch.value ? 'cancel-small' : 'search', text: window.panel.$t('search'), click: () => onSearchToggle() },

0 commit comments

Comments
 (0)