mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 01:03:31 +02:00
fixes #1235 capitalized words in actions
In album edit page, the actions had every word capitalized, so I removed text-transform:capitalize from theme.css, then added translation for french and UK but with Capitlalized actions names who where modified in cat_modify template
This commit is contained in:
@@ -251,19 +251,19 @@ function cropImage() {
|
||||
{/if}
|
||||
|
||||
{if isset($U_MANAGE_ELEMENTS) }
|
||||
<a class="icon-picture" href="{$U_MANAGE_ELEMENTS}">{'manage album photos'|@translate}</a>
|
||||
<a class="icon-picture" href="{$U_MANAGE_ELEMENTS}">{'Manage album photos'|@translate}</a>
|
||||
{/if}
|
||||
|
||||
<a class="icon-plus-circled" href="{$U_ADD_PHOTOS_ALBUM}">{'Add Photos'|translate}</a>
|
||||
|
||||
<a class="icon-sitemap" href="{$U_CHILDREN}">{'manage sub-albums'|@translate}</a>
|
||||
<a class="icon-sitemap" href="{$U_CHILDREN}">{'Manage sub-albums'|@translate}</a>
|
||||
|
||||
{if isset($U_SYNC) }
|
||||
<a class="icon-exchange" href="{$U_SYNC}">{'Synchronize'|@translate}</a>
|
||||
{/if}
|
||||
|
||||
{if isset($U_DELETE) }
|
||||
<a class="icon-trash deleteAlbum" href="#">{'delete album'|@translate}</a>
|
||||
<a class="icon-trash deleteAlbum" href="#">{'Delete album'|@translate}</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -476,7 +476,6 @@ LI.menuLi {
|
||||
}
|
||||
|
||||
#catHeader .catAction a {
|
||||
text-transform: capitalize;
|
||||
color: #888;
|
||||
font-size: 14px;
|
||||
white-space: nowrap;
|
||||
|
||||
Reference in New Issue
Block a user