diff --git a/tools/www-tpl/default-es/base/ads_container.tpl b/tools/www-tpl/default-es/base/ads_container.tpl new file mode 100644 index 0000000..c7b510f --- /dev/null +++ b/tools/www-tpl/default-es/base/ads_container.tpl @@ -0,0 +1,4 @@ + +

Keep it (un)real!

+ +
\ No newline at end of file diff --git a/tools/www-tpl/default-es/base/flash_check.tpl b/tools/www-tpl/default-es/base/flash_check.tpl new file mode 100644 index 0000000..1a4a406 --- /dev/null +++ b/tools/www-tpl/default-es/base/flash_check.tpl @@ -0,0 +1,33 @@ + +
+ Esta alerta no aparecera si tienes flash activado. + +
+ + + +{% endif %} +--> \ No newline at end of file diff --git a/tools/www-tpl/default-es/base/footer.tpl b/tools/www-tpl/default-es/base/footer.tpl new file mode 100644 index 0000000..7543a66 --- /dev/null +++ b/tools/www-tpl/default-es/base/footer.tpl @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/tools/www-tpl/default-es/base/frontpage_header.tpl b/tools/www-tpl/default-es/base/frontpage_header.tpl new file mode 100644 index 0000000..46c362c --- /dev/null +++ b/tools/www-tpl/default-es/base/frontpage_header.tpl @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/tools/www-tpl/default-es/base/hc_status.tpl b/tools/www-tpl/default-es/base/hc_status.tpl new file mode 100644 index 0000000..30afe38 --- /dev/null +++ b/tools/www-tpl/default-es/base/hc_status.tpl @@ -0,0 +1,48 @@ +{% if session.loggedIn %} + +
+
+ {% if playerDetails.hasClubSubscription() %} +

Tienes {{ hcDays }} días de {{ site.siteName }} Club restantes.

+

Has sido miembro de {{ site.siteName }} Club por {{ hcSinceMonths }} meses

+ {% else %} +

No formas parte del {{ site.siteName }} Club

+ {% endif %} +
+
+
+ +
+ +
+
+{% else %} +
+Logeate para ver tu status del {{ site.siteName }} Club
+ +{% endif %} \ No newline at end of file diff --git a/tools/www-tpl/default-es/base/header.tpl b/tools/www-tpl/default-es/base/header.tpl new file mode 100644 index 0000000..6d9aa0e --- /dev/null +++ b/tools/www-tpl/default-es/base/header.tpl @@ -0,0 +1,184 @@ +{% if session.loggedIn == false %} + +
+ +
+ +
+ +{% else %} + +
+
+ +
+ +{% endif %} diff --git a/tools/www-tpl/default-es/base/tag_cloud.tpl b/tools/www-tpl/default-es/base/tag_cloud.tpl new file mode 100644 index 0000000..c53967c --- /dev/null +++ b/tools/www-tpl/default-es/base/tag_cloud.tpl @@ -0,0 +1,13 @@ +{% autoescape 'html' %} +{% if tagCloud|length > 0 %} + +{% else %} +No hay YoSoys disponibles. +{% endif %} +{% endautoescape %} \ No newline at end of file diff --git a/tools/www-tpl/default-es/base/tag_search.tpl b/tools/www-tpl/default-es/base/tag_search.tpl new file mode 100644 index 0000000..54eb4d2 --- /dev/null +++ b/tools/www-tpl/default-es/base/tag_search.tpl @@ -0,0 +1,87 @@ + +
+ {% if tagList.size() equals 0 %} +

No hay resultados.

+ {% else %} +

{{ pageId }} - {{ totalTagUsers|length }} / {{ totalCount }}

+ {% endif %} + {{ tagSearchAdd }} +

+ + + + {% autoescape 'html' %} + {% set num = 0 %} + {% if tagList.size() > 0 %} + {% for habboTag in tagList %} + {% set num = num + 1 %} + {% set tags = habboTag.getTagList() %} + + {% if num % 2 == 0 %} + + {% else %} + + {% endif %} + + {% if habboTag.getUserId() > 0 %} + {% set player = habboTag.getUserData() %} + + + {% endif %} + {% if habboTag.getGroupId() > 0 %} + {% set group = habboTag.getGroupData() %} + + + {% endif %} + + {% endfor %} + {% endif %} + {% endautoescape %} + +
+ + + {{ player.getName() }}
+ {{ player.getMotto }} + + +
+ + + {{ group.getName() }}
+ {{ group.getDescription() }} + + +
+

+ {% if showFirst %} + << + {% endif %} + {% if showOldest %} + {{ pageId - 2 }} + {% endif %} + {% if showOlder %} + {{ pageId - 1 }} + {% endif %} + {{ pageId }} + {% if showNewer %} + {{ pageId + 1 }} + {% endif %} + {% if showNewest %} + {{ pageId + 2 }} + {% endif %} + {% if showLast %} + >> + {% endif %} +

\ No newline at end of file