[Isocial-svn] SF.net SVN: isocial: [54] public/stylesheets
Status: Pre-Alpha
Brought to you by:
aguidrevitch
From: <agu...@us...> - 2008-03-09 17:38:29
|
Revision: 54 http://isocial.svn.sourceforge.net/isocial/?rev=54&view=rev Author: aguidrevitch Date: 2008-03-09 10:38:17 -0700 (Sun, 09 Mar 2008) Log Message: ----------- link to events application added Modified Paths: -------------- app/locales/layout/en.php app/locales/layout/ru.php app/views/shared/loggedin/compiled/sidebar.tpl.php app/views/shared/loggedin/sidebar.tpl public/stylesheets/Application.css Added Paths: ----------- public/images/calendar.png Modified: app/locales/layout/en.php =================================================================== --- app/locales/layout/en.php 2008-03-09 16:40:08 UTC (rev 53) +++ app/locales/layout/en.php 2008-03-09 17:38:17 UTC (rev 54) @@ -19,5 +19,6 @@ $dictionary['PhotoApp'] = 'Photos'; $dictionary['GroupApp'] = 'Groups'; +$dictionary['EventApp'] = 'Events'; ?> Modified: app/locales/layout/ru.php =================================================================== --- app/locales/layout/ru.php 2008-03-09 16:40:08 UTC (rev 53) +++ app/locales/layout/ru.php 2008-03-09 17:38:17 UTC (rev 54) @@ -26,5 +26,6 @@ $dictionary['PhotoApp'] = 'Фото'; $dictionary['GroupApp'] = 'Группы'; +$dictionary['EventApp'] = 'События'; ?> Modified: app/views/shared/loggedin/compiled/sidebar.tpl.php =================================================================== --- app/views/shared/loggedin/compiled/sidebar.tpl.php 2008-03-09 16:40:08 UTC (rev 53) +++ app/views/shared/loggedin/compiled/sidebar.tpl.php 2008-03-09 17:38:17 UTC (rev 54) @@ -13,5 +13,6 @@ </div> <div id="applications"> <a href="/photo" class="photoapp"><?php echo $text_helper->translate('PhotoApp', array()); ?></a> - <a href="/groups" class="groupsapp"><?php echo $text_helper->translate('GroupApp', array()); ?></a> + <a href="/group" class="groupapp"><?php echo $text_helper->translate('GroupApp', array()); ?></a> + <a href="/event" class="eventapp"><?php echo $text_helper->translate('EventApp', array()); ?></a> </div> \ No newline at end of file Modified: app/views/shared/loggedin/sidebar.tpl =================================================================== --- app/views/shared/loggedin/sidebar.tpl 2008-03-09 16:40:08 UTC (rev 53) +++ app/views/shared/loggedin/sidebar.tpl 2008-03-09 17:38:17 UTC (rev 54) @@ -13,5 +13,6 @@ </div> <div id="applications"> <a href="/photo" class="photoapp">_{PhotoApp}</a> - <a href="/groups" class="groupsapp">_{GroupApp}</a> + <a href="/group" class="groupapp">_{GroupApp}</a> + <a href="/event" class="eventapp">_{EventApp}</a> </div> \ No newline at end of file Added: public/images/calendar.png =================================================================== (Binary files differ) Property changes on: public/images/calendar.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: public/stylesheets/Application.css =================================================================== --- public/stylesheets/Application.css 2008-03-09 16:40:08 UTC (rev 53) +++ public/stylesheets/Application.css 2008-03-09 17:38:17 UTC (rev 54) @@ -273,10 +273,14 @@ background: url('/images/photo.png') no-repeat 0px; } -.groupsapp { +.groupapp { background: url('/images/group.png') no-repeat 0px; } +.eventapp { + background: url('/images/calendar.png') no-repeat 0px; +} + .linksarea a { padding: 2px 5px 2px 5px; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |