Merge branch 'next' into edit-wot-trust
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 1 Jan 2011 23:57:17 +0000 (00:57 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 1 Jan 2011 23:57:17 +0000 (00:57 +0100)
1  2 
src/main/resources/i18n/sone.en.properties
src/main/resources/static/css/sone.css

@@@ -159,10 -159,6 +159,10 @@@ View.Post.Reply.DeleteLink=Delet
  View.Post.LikeLink=Like
  View.Post.UnlikeLink=Unlike
  
 +View.Trust.Label=Trust:
 +View.Trust.IncreaseTrustLink=↑
 +View.Trust.DecreaseTrustLink=↓
 +
  WebInterface.DefaultText.StatusUpdate=What’s on your mind?
  WebInterface.DefaultText.Message=Write a Message…
  WebInterface.DefaultText.Reply=Write a Reply…
@@@ -180,12 -176,15 +180,15 @@@ WebInterface.SelectBox.Yes=Ye
  WebInterface.SelectBox.No=No
  WebInterface.ClickToShow.Replies=Click here to show hidden replies.
  
+ Notification.ClickHereToRead=Click here to read the full text of the notification.
  Notification.FirstStart.Text=This seems to be the first time you start Sone. To start, create a new Sone from a web of trust identity and start following other Sones.
  Notification.Startup.Text=Sone is currently starting up. It may take a while to retrieve all identities and Sones from the web of trust. If you are missing some elements, please be patient, they will probably reappear very soon.
  Notification.ConfigNotRead.Text=The configuration file “sone.properties” could not be read, probably because it was not saved correctly. This can happen on versions prior to Sone 0.3.3 and there is nothing you can do about it.
  Notification.Button.Dismiss=Dismiss
  Notification.NewSone.Text=New Sones have been discovered:
+ Notification.NewPost.ShortText=New posts have been discovered.
  Notification.NewPost.Text=New posts have been discovered by the following Sones:
+ Notification.NewReply.ShortText=New replies have been discovered.
  Notification.NewReply.Text=New replies have been discovered by the following Sones:
  Notification.SoneIsBeingRescued.Text=The following Sones are currently being rescued:
  Notification.SoneRescued.Text=The following Sones have been rescued:
@@@ -73,10 -73,6 +73,6 @@@ textarea 
        float: right;
  }
  
- #sone #notification-area .notification > div {
-       display: inline;
- }
  #sone #notification-area .notification .post-count {
        margin-left: 1ex;
  }
        min-height: 48px;
  }
  
 +#sone .trust {
 +      font-size: 85%;
 +      text-align: center;
 +}
 +
 +#sone .trust .explicit {
 +      color: rgb(0, 128, 0);
 +}
 +
 +#sone .trust .implicit {
 +      color: rgb(128, 128, 128);
 +}
 +
  #sone .post .author, #sone .post .recipient {
        display: inline;
        font-weight: bold;
        color: #666;
  }
  
 -#sone .post .delete, #sone .post .likes, #sone .post .like, #sone .post .unlike {
 +#sone .post .delete, #sone .post .likes, #sone .post .like, #sone .post .unlike, #sone .post .increase-trust, #sone .post .decrease-trust {
        display: inline;
        font: inherit;
 +      margin: 0px;
  }
  
  #sone .post .likes.hidden {
        display: none;
  }
  
 -#sone .post .delete button, #sone .post .like button, #sone .post .unlike button {
 +#sone .post .delete button, #sone .post .like button, #sone .post .unlike button, #sone .post .increase-trust button, #sone .post .decrease-trust button {
        border: 0px;
        background: none;
        padding: 0px;
        color: rgb(28, 131, 191);
        font: inherit;
 +      margin: 0px;
  }
  
 -#sone .post .delete button:hover, #sone .post .like button:hover, #sone .post .unlike button:hover {
 +#sone .post .delete button:hover, #sone .post .like button:hover, #sone .post .unlike button:hover, #sone .post .increase-trust button:hover, #sone .post .decrease-trust button:hover {
        border: 0px;
        background: none;
        padding: 0px;
        color: green;
  }
  
 +#sone .post .trust {
 +      display: inline;
 +}
 +
 +#sone .post .trust:before {
 +      content: ' · ';
 +}
 +
 +#sone .trust .explicit, #sone .trust .implicit {
 +      font: inherit;
 +      display: inline;
 +}
 +
  #sone .post .replies {
        clear: both;
        padding-top: 0.2ex;