Browse Source

- Finished replacing ->t() by ->__()

pull/16/head
Christine Ho 11 years ago
parent
commit
16755cbf12
  1. 2
      app/widgets/Bookmark/_bookmark_url_add.tpl
  2. 6
      app/widgets/WidgetCommon/_post_toolbox.tpl
  3. 2
      app/widgets/WidgetCommon/_submit_form.tpl
  4. 2
      locales/locales.ini

2
app/widgets/Bookmark/_bookmark_url_add.tpl

@ -8,7 +8,7 @@
<input name="url" placeholder="{$c->__('url.url')}"/>
</div>
<div class="element large mini">
<input name="name" placeholder="{$c->t('url.name')}"/>
<input name="name" placeholder="{$c->__('url.name')}"/>
</div>
</fieldset>
<div class="menu">

6
app/widgets/WidgetCommon/_post_toolbox.tpl

@ -1,7 +1,6 @@
<div class="tools">
{$c->__("post.share")} :
<a
title="{$c->t("your post will appear in your Movim public feed")}"
onclick="{$privacy_post_black}" >
{$c->__('post.share_everyone')}</a>,
<a
@ -13,7 +12,7 @@
this.parentNode.querySelector('#deleteyes').style.display = 'inline';
this.parentNode.querySelector('#deleteno').style.display = 'inline';
"
title="{$c->t("Delete this post")}">
title="{$c->__('post.delete')}">
{$c->__('post.delete')}
</a>
<a
@ -28,8 +27,7 @@
onclick="
this.parentNode.querySelector('#deleteyes').style.display = 'none';
this.style.display = 'none';
"
onclick="">
">
{$c->__('button.no')}
</a>
</div>

2
app/widgets/WidgetCommon/_submit_form.tpl

@ -73,7 +73,7 @@
<td>
<input type="hidden" id="latlonpos" name="latlonpos"/>
<a
title="{$c->t("Submit")}"
title="{$c->__('button.submit')}"
href="#"
id="feedmessagesubmit"
onclick="{$publish_item}

2
locales/locales.ini

@ -274,7 +274,7 @@ post.share_your_contacts= 'Your contacts'
post.delete = 'Delete this post'
post.updated = 'Updated'
post.content_not_found = 'Content not found'
post.default_title = 'Contact publication'
post.default_title = 'Contact publication'
[api]
api.error = 'The API is not reachable, try again later'
Loading…
Cancel
Save