Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
BUG: fixed translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Marion committed Mar 28, 2011
1 parent c8fa411 commit 40f7c91
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/views/community/index.phtml
Expand Up @@ -27,7 +27,7 @@
<?php
if(empty($this->userCommunities))
{
echo "<h4>{$this->t("No communty available")}.<a class='createCommunity' >{$this->t("Create your own community")}!</a> </h4>";
echo "<h4>{$this->t("No community available")}. <a class='createCommunity' >{$this->t("Create your own community")}!</a> </h4>";
}
?>
</div>
Expand Down
4 changes: 2 additions & 2 deletions public/css/user/user.settings.css
Expand Up @@ -53,8 +53,8 @@ div#tabsSettings .ui-state-default{

div#tabsSettings .ui-tabs-panel {
position: relative !important;
left: -15px!important;
border-top: 1px solid #F3F1EC;
left: -75px!important;
border: 1px solid grey;
width: 99%;
}

Expand Down
13 changes: 9 additions & 4 deletions public/js/layout/main.js
Expand Up @@ -267,14 +267,18 @@ function loadDialog(name,url)

function showDialog(title,button)
{
var x= $('div.HeaderSearch').position().left+150;
console.log(x);
var y= 100;
if(button)
{
$( "div.MainDialog" ).dialog({
resizable: false,
width:450,
modal: false,
draggable:true,
title: title ,
draggable:false,
title: title,
position: [x,y],
buttons: { "Ok": function() { $(this).dialog("close"); } }
});

Expand All @@ -285,8 +289,9 @@ function showDialog(title,button)
resizable: false,
width:450,
modal: false,
draggable:true,
title: title
draggable:false,
title: title ,
position: [x,y]
});
}
}
Expand Down

0 comments on commit 40f7c91

Please sign in to comment.