Merge branch 'master' into follow

Conflicts:
	config/assets.yml
	public/stylesheets/sass/_mixins.scss
	spec/models/user/posting_spec.rb
This commit is contained in:
danielgrippi 2011-05-16 14:55:57 -07:00
commit 7eaca0346c
157 changed files with 1436 additions and 845 deletions

View file

@ -11,8 +11,8 @@ gem 'ohai', '0.5.8', :require => false #Chef dependency
gem 'nokogiri', '1.4.3.1' gem 'nokogiri', '1.4.3.1'
#Security #Security
gem 'devise', '1.1.3' gem 'devise', '1.3.1'
gem 'devise_invitable', :git => 'git://github.com/zhitomirskiyi/devise_invitable.git', :branch => '0.3.5' gem 'devise_invitable', '0.5.0'
#Authentication #Authentication
gem 'omniauth', '0.1.6' gem 'omniauth', '0.1.6'

View file

@ -50,14 +50,6 @@ GIT
multi_xml (~> 0.2.0) multi_xml (~> 0.2.0)
simple_oauth (~> 0.1.2) simple_oauth (~> 0.1.2)
GIT
remote: git://github.com/zhitomirskiyi/devise_invitable.git
revision: 85abb5fef4ab4f74db818ed3d8104c2f7d24b94e
branch: 0.3.5
specs:
devise_invitable (0.3.5)
devise (~> 1.1.0)
PATH PATH
remote: vendor/gems/jasmine remote: vendor/gems/jasmine
specs: specs:
@ -166,9 +158,13 @@ GEM
culerity (0.2.15) culerity (0.2.15)
daemons (1.1.2) daemons (1.1.2)
database_cleaner (0.6.0) database_cleaner (0.6.0)
devise (1.1.3) devise (1.3.1)
bcrypt-ruby (~> 2.1.2) bcrypt-ruby (~> 2.1.2)
warden (~> 0.10.7) orm_adapter (~> 0.0.3)
warden (~> 1.0.3)
devise_invitable (0.5.0)
devise (~> 1.3.1)
rails (<= 3.2, >= 3.0.0)
diff-lcs (1.1.2) diff-lcs (1.1.2)
erubis (2.6.6) erubis (2.6.6)
abstract (>= 1.0.0) abstract (>= 1.0.0)
@ -301,6 +297,7 @@ GEM
oa-oauth (= 0.1.6) oa-oauth (= 0.1.6)
oa-openid (= 0.1.6) oa-openid (= 0.1.6)
open4 (1.0.1) open4 (1.0.1)
orm_adapter (0.0.5)
polyglot (0.3.1) polyglot (0.3.1)
pyu-ruby-sasl (0.0.3.2) pyu-ruby-sasl (0.0.3.2)
rack (1.2.2) rack (1.2.2)
@ -336,20 +333,20 @@ GEM
vegas (~> 0.1.2) vegas (~> 0.1.2)
rest-client (1.6.1) rest-client (1.6.1)
mime-types (>= 1.16) mime-types (>= 1.16)
rspec (2.5.0) rspec (2.6.0)
rspec-core (~> 2.5.0) rspec-core (~> 2.6.0)
rspec-expectations (~> 2.5.0) rspec-expectations (~> 2.6.0)
rspec-mocks (~> 2.5.0) rspec-mocks (~> 2.6.0)
rspec-core (2.5.1) rspec-core (2.6.0)
rspec-expectations (2.5.0) rspec-expectations (2.6.0)
diff-lcs (~> 1.1.2) diff-lcs (~> 1.1.2)
rspec-instafail (0.1.7) rspec-instafail (0.1.7)
rspec-mocks (2.5.0) rspec-mocks (2.6.0)
rspec-rails (2.5.0) rspec-rails (2.6.0)
actionpack (~> 3.0) actionpack (~> 3.0)
activesupport (~> 3.0) activesupport (~> 3.0)
railties (~> 3.0) railties (~> 3.0)
rspec (~> 2.5.0) rspec (~> 2.6.0)
ruby-debug (0.10.4) ruby-debug (0.10.4)
columnize (>= 0.1) columnize (>= 0.1)
ruby-debug-base (~> 0.10.4.0) ruby-debug-base (~> 0.10.4.0)
@ -387,12 +384,12 @@ GEM
typhoeus (0.2.4) typhoeus (0.2.4)
mime-types mime-types
mime-types mime-types
tzinfo (0.3.26) tzinfo (0.3.27)
uuidtools (2.1.2) uuidtools (2.1.2)
vegas (0.1.8) vegas (0.1.8)
rack (>= 1.0.0) rack (>= 1.0.0)
warden (0.10.7) warden (1.0.4)
rack (>= 1.0.0) rack (>= 1.0)
webmock (1.6.2) webmock (1.6.2)
addressable (>= 2.2.2) addressable (>= 2.2.2)
crack (>= 0.1.7) crack (>= 0.1.7)
@ -418,8 +415,8 @@ DEPENDENCIES
cloudfiles (= 1.4.10) cloudfiles (= 1.4.10)
cucumber-rails (= 0.3.2) cucumber-rails (= 0.3.2)
database_cleaner (= 0.6.0) database_cleaner (= 0.6.0)
devise (= 1.1.3) devise (= 1.3.1)
devise_invitable! devise_invitable (= 0.5.0)
em-websocket! em-websocket!
excon (= 0.2.4) excon (= 0.2.4)
factory_girl_rails factory_girl_rails

119
INSTALL_ON_OSX Normal file
View file

@ -0,0 +1,119 @@
#to make this work, run
#rake install --rakefile INSTALL_ON_OSX
require 'rake'
task :install do
puts "this currently is untested, prepare for tragedy"
puts "****************************************************************************"
puts "****************************** HELLO! *************************************"
puts "****************************************************************************"
puts ""
puts "We're going to install a ton of stuff to get Diaspora running on your box."
puts "Grab a tasty beverage - this might take a while. Then let's get started!"
print "Hit enter once you have a drink! "
input = STDIN.gets
BREW_INSTALLED = installed?('brew')
RVM_INSTALLED = installed?('rvm')
MYSQL_INSTALLED = installed?('mysql')
REDIS_INSTALLED = installed?('redis-server')
IMAGEMAGICK_INSTALLED = installed?('mogrify')
XCODE_INSTALLED = installed?('gcc')
unless XCODE_INSTALLED
puts "Sadly, you need to install XCode before running this script. :("
puts "You can get it from your OSX install DVD, or download it from Apple's developer page."
Process.exit
end
puts "Hooray! You have XCode already!"
unless BREW_INSTALLED
puts "Installing homebrew..."
system("ruby -e \"$(curl -fsSL https://gist.github.com/raw/323731/install_homebrew.rb)\"")
end
system("brew update")
puts "homebrew is installed. Great job!"
unless RVM_INSTALLED
puts "Installing rvm..."
system("curl -s https://rvm.beginrescueend.com/install/rvm -o rvm-installer ; chmod +x rvm-installer ; ./rvm-installer")
system("echo '[[ -s \"$HOME/.rvm/scripts/rvm\" ]] && . \"$HOME/.rvm/scripts/rvm\" # Load RVM function' >> ~/.bash_profile")
system("rm rvm-installer")
if `. ~/.bash_profile; type rvm | head -1` != "rvm is a function\n"
puts "Meh, rvm install failed. Come talk to us in irc, at http://webchat.freenode.net/?channels=diaspora"
Process.exit
end
end
puts "rvm is installed. Great job!"
puts "Installing ruby enterprise edition (ree)..."
system(". ~/.bash_profile; rvm install ree")
$stdout.flush
puts "Setting up your gemset and .rvmrc..."
system(". ~/.bash_profile; rvm use ree; rvm gemset create diaspora")
system("echo 'rvm use ree@diaspora' >> .rvmrc")
puts "Done installing ree, creating gemset, and setting up .rvmrc!"
unless IMAGEMAGICK_INSTALLED
puts 'Installing imagemagick...'
system("brew install imagemagick")
end
puts 'imagemagick is installed. Great job!'
unless MYSQL_INSTALLED
puts 'Installing mysql...'
system("brew install mysql")
puts 'Configuring for first time use. Type in your Mac password when it asks.'
system("unset TMPDIR")
system("sudo mysql_install_db --verbose --user=`whoami` --basedir=\"$(brew --prefix mysql)\" --datadir=/usr/local/var/mysql --tmpdir=/tmp")
system("mkdir -p ~/Library/LaunchAgents")
plist_file = `brew list mysql | grep plist`.strip
system("cp #{plist_file} ~/Library/LaunchAgents/com.mysql.mysqld.plist")
system("launchctl load -w ~/Library/LaunchAgents/com.mysql.mysqld.plist")
end
puts 'mysql is installed. Great job!'
unless REDIS_INSTALLED
puts 'Installing redis...'
system("brew install redis")
end
puts 'redis is installed. Great job!'
puts 'Installing bundler...'
system(". ~/.bash_profile; rvm use ree@diaspora; gem install bundler")
puts 'bundler is installed. Great Job!'
puts 'Installing diaspora gems...'
system(". ~/.bash_profile; rvm use ree@diaspora; bundle install")
puts "Creating and migrating your database..."
system(". ~/.bash_profile; rvm use ree@diaspora; rake db:create; rake db:migrate")
puts "Setting up your default app configuration..."
system("cp config/app_config.yml.example config/app_config.yml")
puts "Setting up your default database configuration..."
system("cp config/database.yml.example config/database.yml")
puts "****************************************************************************"
puts "***************************** CONGRATS! ***********************************"
puts "****************************************************************************"
puts ""
puts "Everything is installed! How was that beer?"
puts "Run the following commands to start up the Diaspora server:"
puts ""
puts "source ~/.bash_profile"
puts "cd .."
puts "cd diaspora"
puts "script/server"
puts ""
puts "Next time, all you'll need to do is script/server."
puts "Once you've started script/server, visit your local Diaspora in your browser at http://localhost:3000"
end
def installed?(program)
`which #{program}`=='' ? false : true
end

View file

@ -73,4 +73,4 @@ Also, be sure to join the official [mailing list](http://eepurl.com/Vebk).
If you wish to contact us privately about any exploits in Diaspora you may If you wish to contact us privately about any exploits in Diaspora you may
find, you can email find, you can email
[exploits@joindiaspora.com](mailto:exploits@joindiaspora.com). [exploits@joindiaspora.com](mailto:exploits@joindiaspora.com), [corresponding public key (keyID: 77485064)](http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0xCC6CAED977485064).

View file

@ -20,9 +20,11 @@ class PhotosController < ApplicationController
if @contact if @contact
@aspects_with_person = @contact.aspects @aspects_with_person = @contact.aspects
@contacts_of_contact = @contact.contacts @contacts_of_contact = @contact.contacts
@contacts_of_contact_count = @contact.contacts.count
else else
@contact = Contact.new @contact = Contact.new
@contacts_of_contact = [] @contacts_of_contact = []
@contacts_of_contact_count = 0
end end
@posts = current_user.posts_from(@person).where(:type => 'Photo').paginate(:page => params[:page]) @posts = current_user.posts_from(@person).where(:type => 'Photo').paginate(:page => params[:page])

View file

@ -5,13 +5,13 @@
class SessionsController < Devise::SessionsController class SessionsController < Devise::SessionsController
after_filter :enqueue_update, :only => :create after_filter :enqueue_update, :only => :create
protected protected
def enqueue_update def enqueue_update
if current_user if current_user
current_user.services.each{|s| current_user.services.each do |s|
Resque.enqueue(Job::UpdateServiceUsers, s.id) if s.respond_to? :save_friends Resque.enqueue(Job::UpdateServiceUsers, s.id) if s.respond_to? :save_friends
} end
end end
end end
end end

View file

@ -21,6 +21,7 @@ class UsersController < ApplicationController
def update def update
password_changed = false
u = params[:user] u = params[:user]
@user = current_user @user = current_user
@ -32,9 +33,10 @@ class UsersController < ApplicationController
if u[:email_preferences] if u[:email_preferences]
@user.update_user_preferences(u[:email_preferences]) @user.update_user_preferences(u[:email_preferences])
flash[:notice] = I18n.t 'users.update.email_notifications_changed' flash[:notice] = I18n.t 'users.update.email_notifications_changed'
# change passowrd # change password
elsif u[:current_password] && u[:password] && u[:password_confirmation] elsif u[:current_password] && u[:password] && u[:password_confirmation]
if @user.update_with_password(u) if @user.update_with_password(u)
password_changed = true
flash[:notice] = I18n.t 'users.update.password_changed' flash[:notice] = I18n.t 'users.update.password_changed'
else else
flash[:error] = I18n.t 'users.update.password_not_changed' flash[:error] = I18n.t 'users.update.password_not_changed'
@ -58,7 +60,11 @@ class UsersController < ApplicationController
render :nothing => true, :status => 204 render :nothing => true, :status => 204
} }
format.all{ format.all{
redirect_to edit_user_path if password_changed
redirect_to new_user_session_path
else
redirect_to edit_user_path
end
} }
end end
end end

View file

@ -11,6 +11,7 @@ class Invitation < ActiveRecord::Base
validates_presence_of :sender, :recipient, :aspect validates_presence_of :sender, :recipient, :aspect
def self.invite(opts = {}) def self.invite(opts = {})
opts[:identifier].downcase! if opts[:identifier]
return false if opts[:identifier] == opts[:from].email return false if opts[:identifier] == opts[:from].email
existing_user = self.find_existing_user(opts[:service], opts[:identifier]) existing_user = self.find_existing_user(opts[:service], opts[:identifier])
@ -74,7 +75,8 @@ class Invitation < ActiveRecord::Base
opts[:from].save! opts[:from].save!
invitee.reload invitee.reload
end end
invitee.invite!(:email => (opts[:service] == 'email')) invitee.skip_invitation = (opts[:service] != 'email')
invitee.invite!
log_string = "event=invitation_sent to=#{opts[:identifier]} service=#{opts[:service]} " log_string = "event=invitation_sent to=#{opts[:identifier]} service=#{opts[:service]} "
log_string << "inviter=#{opts[:from].diaspora_handle} inviter_uid=#{opts[:from].id} inviter_created_at_unix=#{opts[:from].created_at.to_i}" if opts[:from] log_string << "inviter=#{opts[:from].diaspora_handle} inviter_uid=#{opts[:from].id} inviter_created_at_unix=#{opts[:from].created_at.to_i}" if opts[:from]
Rails.logger.info(log_string) Rails.logger.info(log_string)

View file

@ -20,9 +20,9 @@ class Person < ActiveRecord::Base
has_one :profile has_one :profile
delegate :last_name, :to => :profile delegate :last_name, :to => :profile
before_save :downcase_diaspora_handle before_validation :downcase_diaspora_handle
def downcase_diaspora_handle def downcase_diaspora_handle
diaspora_handle.downcase! diaspora_handle.downcase! unless diaspora_handle.blank?
end end
has_many :contacts #Other people's contacts for this person has_many :contacts #Other people's contacts for this person
@ -39,7 +39,7 @@ class Person < ActiveRecord::Base
before_validation :clean_url before_validation :clean_url
validates_presence_of :url, :profile, :serialized_public_key validates_presence_of :url, :profile, :serialized_public_key
validates_uniqueness_of :diaspora_handle, :case_sensitive => false validates_uniqueness_of :diaspora_handle
scope :searchable, joins(:profile).where(:profiles => {:searchable => true}) scope :searchable, joins(:profile).where(:profiles => {:searchable => true})
@ -229,7 +229,7 @@ class Person < ActiveRecord::Base
def remove_all_traces def remove_all_traces
Notification.joins(:notification_actors).where(:notification_actors => {:person_id => self.id}).all.each{ |n| n.destroy} Notification.joins(:notification_actors).where(:notification_actors => {:person_id => self.id}).all.each{ |n| n.destroy}
end end
def fix_profile def fix_profile
Webfinger.new(self.diaspora_handle).fetch Webfinger.new(self.diaspora_handle).fetch
self.reload self.reload

View file

@ -15,11 +15,11 @@ class User < ActiveRecord::Base
:recoverable, :rememberable, :trackable, :validatable, :recoverable, :rememberable, :trackable, :validatable,
:timeoutable :timeoutable
before_validation :strip_and_downcase_username, :on => :create before_validation :strip_and_downcase_username
before_validation :set_current_language, :on => :create before_validation :set_current_language, :on => :create
validates_presence_of :username validates_presence_of :username
validates_uniqueness_of :username, :case_sensitive => false validates_uniqueness_of :username
validates_format_of :username, :with => /\A[A-Za-z0-9_]+\z/ validates_format_of :username, :with => /\A[A-Za-z0-9_]+\z/
validates_length_of :username, :maximum => 32 validates_length_of :username, :maximum => 32
validates_inclusion_of :language, :in => AVAILABLE_LANGUAGE_CODES validates_inclusion_of :language, :in => AVAILABLE_LANGUAGE_CODES
@ -76,12 +76,13 @@ class User < ActiveRecord::Base
self.language = I18n.locale.to_s if self.language.blank? self.language = I18n.locale.to_s if self.language.blank?
end end
def self.find_for_authentication(conditions={}) def self.find_for_database_authentication(conditions={})
conditions = conditions.dup
conditions[:username] = conditions[:username].downcase conditions[:username] = conditions[:username].downcase
if conditions[:username] =~ /^([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})$/i # email regex if conditions[:username] =~ /^([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})$/i # email regex
conditions[:email] = conditions.delete(:username) conditions[:email] = conditions.delete(:username)
end end
super(conditions) where(conditions).first
end end
def can_add?(person) def can_add?(person)

View file

@ -7,9 +7,9 @@
= t('all_aspects') = t('all_aspects')
- else - else
= @aspect = @aspect
%h1
= link_to t('.post_a_message'), '#publisher_page', :id => 'publisher_button' = link_to t('.post_a_message'), '#publisher_page', :id => 'publisher_button'
#main_stream.stream #main_stream.stream
= render 'shared/stream', :posts => @posts = render 'shared/stream', :posts => @posts
-if @posts.length > 0 -if @posts.length > 0

View file

@ -21,6 +21,9 @@
= stylesheet_link_tag "blueprint/screen", :media => 'screen' = stylesheet_link_tag "blueprint/screen", :media => 'screen'
= stylesheet_link_tag "blueprint/print", :media => 'print' = stylesheet_link_tag "blueprint/print", :media => 'print'
= stylesheet_link_tag "login", :media => 'screen'
= include_stylesheets :default, :media => 'all' = include_stylesheets :default, :media => 'all'
- if rtl? - if rtl?
= include_stylesheets :rtl, :media => 'all' = include_stylesheets :rtl, :media => 'all'

View file

@ -51,12 +51,10 @@
#content{:data => {:role => 'page', :theme => 'c'}} #content{:data => {:role => 'page', :theme => 'c'}}
#header #header
- if current_user - if current_user
.left
= link_to(image_tag('icons/list_white.png'), '#menu', :id => "menu_button")
.right .right
= link_to(image_tag('icons/list_white.png'), '#menu', :id => "menu_button")
= link_to(image_tag('icons/search_white.png'), people_path) = link_to(image_tag('icons/search_white.png'), people_path)
= link_to(image_tag('white@2x.png', :height => 22, :width => 136), aspects_path) = link_to(image_tag('white@2x.png', :height => 22, :width => 136, :id => 'header_title'), aspects_path)
= yield = yield

View file

@ -3,65 +3,51 @@
-# the COPYRIGHT file. -# the COPYRIGHT file.
= content_for :head do = content_for :head do
= include_javascripts :login
:css :css
header{ display:none; } header{ display:none; }
footer{ position: absolute; bottom: 12px; } footer{ position: absolute; bottom: 6px; }
:javascript
$(document).ready( function(){
$("#user_username").focus();
$("form").submit(function(){
$(this).fadeOut(200, function(){
$('#logo').animate({
'margin-top': '+=80'
}, 250, function(){
$("#spinner").fadeIn(300);
});
});
$(".login_error").remove();
});
});
.container{:style => 'text-align:center;'} .container{:style => 'text-align:center;'}
#login #login
= image_tag('logo_caps.png', :id => 'logo', :width => 143, :height => 21) %p
%br = image_tag('asterisk.png', :id => 'asterisk', :class => 'logo', :height => 154, :width => 154)
%br %p
= image_tag('logo_caps.png', :id => 'logo', :width => 98, :height => 14)
- flash.each do |name, msg| - flash.each do |name, msg|
= content_tag :p, msg, :class => "login_error" = content_tag :p, msg, :class => "login_error"
= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| = form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f|
%p %p
= f.label :username , t('username') = f.label :username , t('username')
= f.text_field :username = f.text_field :username, :tabindex => 1
%span.pod_location %br
="@#{AppConfig[:pod_uri].host}"
%br
%br
%p %p
= f.label :password , t('password') = f.label :password , t('password')
= f.password_field :password = f.password_field :password, :tabindex => 2
%span
- if devise_mapping.recoverable? && controller_name != 'passwords'
= link_to t('devise.shared.links.forgot_your_password'), new_password_path(resource_name)
- else
\.
%br
- if !AppConfig[:registrations_closed] && devise_mapping.registerable? && controller_name != 'registrations'
= link_to t('devise.shared.links.sign_up'), new_registration_path(resource_name)
- else
\.
%p.submit - if devise_mapping.recoverable? && controller_name != 'passwords'
= f.submit t('devise.sessions.new.sign_in') = link_to t('devise.shared.links.forgot_your_password'), new_password_path(resource_name), :id => "forgot_password_link", :class => 'hidden', :tabindex => 5
%br
%p#controls.hidden
%span#remember_me %span#remember_me
- if devise_mapping.rememberable? - if devise_mapping.rememberable?
= f.check_box :remember_me = f.check_box :remember_me, :tabindex => 3
= f.label :remember_me, t('devise.sessions.new.remember_me') = f.label :remember_me, t('devise.sessions.new.remember_me')
- else %br
\. = f.submit t('devise.sessions.new.sign_in'), :tabindex => 4
= image_tag 'ajax-loader.gif', :id => "spinner", :class => "hidden"
- if !AppConfig[:registrations_closed] && devise_mapping.registerable? && controller_name != 'registrations'
%br
%br
%br
%br
= link_to t('devise.shared.links.sign_up'), new_registration_path(resource_name)

View file

@ -92,11 +92,16 @@ default:
#s3_secret: 'secret' #s3_secret: 'secret'
#s3_bucket: 'my_photos' #s3_bucket: 'my_photos'
# If you want normal Rails logs, set this to false in the appropriate environment.
# It is false by default in development and test.
enable_splunk_logging: true
development: development:
enable_splunk_logging: false
test: test:
pod_url: "http://example.org/" pod_url: "http://example.org/"
socket_port: 8081 socket_port: 8081
enable_splunk_logging: false
production: production:

View file

@ -9,7 +9,6 @@ require 'rails/all'
# you've limited to :test, :development, or :production. # you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env) if defined?(Bundler) Bundler.require(:default, Rails.env) if defined?(Bundler)
require File.expand_path('../../lib/log_overrider', __FILE__)
require File.expand_path('../../lib/fake', __FILE__) require File.expand_path('../../lib/fake', __FILE__)
module Diaspora module Diaspora

View file

@ -38,6 +38,8 @@ javascripts:
- public/javascripts/content-updater.js - public/javascripts/content-updater.js
- public/javascripts/search.js - public/javascripts/search.js
- public/javascripts/contact-edit.js - public/javascripts/contact-edit.js
login:
- public/javascripts/login.js
mobile: mobile:
- public/javascripts/vendor/jquery152.min.js - public/javascripts/vendor/jquery152.min.js
- public/javascripts/custom-mobile-scripting.js - public/javascripts/custom-mobile-scripting.js

View file

@ -1 +1,5 @@
if AppConfig[:enable_splunk_logging]
require File.expand_path('../../../lib/log_overrider', __FILE__)
end
Rails.logger.class.send(:include, SplunkLogging) Rails.logger.class.send(:include, SplunkLogging)

View file

@ -4,6 +4,15 @@
# Use this hook to configure devise mailer, warden hooks and so forth. The first # Use this hook to configure devise mailer, warden hooks and so forth. The first
# four configuration values can also be set straight in your models. # four configuration values can also be set straight in your models.
class ActionController::Responder
def to_mobile
default_render
rescue ActionView::MissingTemplate => e
navigation_behavior(e)
end
end
Devise.setup do |config| Devise.setup do |config|
# Configure the e-mail address which will be shown in DeviseMailer. # Configure the e-mail address which will be shown in DeviseMailer.
if AppConfig[:smtp_sender_address] if AppConfig[:smtp_sender_address]
@ -11,9 +20,9 @@ Devise.setup do |config|
else else
unless Rails.env == 'test' unless Rails.env == 'test'
Rails.logger.warn("No smtp sender address set, mail may fail.") Rails.logger.warn("No smtp sender address set, mail may fail.")
puts "WARNING: No smtp sender address set, mail may fail." puts "WARNING: No smtp sender address set, mail may fail."
end end
config.mailer_sender = "please-change-me@config-initializers-devise.com" config.mailer_sender = "please-change-me@config-initializers-devise.com"
end end
# ==> ORM configuration # ==> ORM configuration
@ -27,7 +36,7 @@ Devise.setup do |config|
# authenticating an user, both parameters are required. Remember that those # authenticating an user, both parameters are required. Remember that those
# parameters are used only when authenticating and not when retrieving from # parameters are used only when authenticating and not when retrieving from
# session. If you need permissions, you should implement that in a before filter. # session. If you need permissions, you should implement that in a before filter.
config.authentication_keys = [ :username ] config.authentication_keys = [:username]
# Tell if authentication through request.params is enabled. True by default. # Tell if authentication through request.params is enabled. True by default.
# config.params_authenticatable = true # config.params_authenticatable = true
@ -56,7 +65,7 @@ Devise.setup do |config|
# Time interval where the invitation token is valid (default: 0). # Time interval where the invitation token is valid (default: 0).
# If invite_for is 0 or nil, the invitation will never expire. # If invite_for is 0 or nil, the invitation will never expire.
# config.invite_for = 2.weeks # config.invite_for = 2.weeks
# ==> Configuration for :confirmable # ==> Configuration for :confirmable
# The time you want to give your user to confirm his account. During this time # The time you want to give your user to confirm his account. During this time
# he will be able to access your application without confirming. Default is nil. # he will be able to access your application without confirming. Default is nil.
@ -130,6 +139,7 @@ Devise.setup do |config|
# If you have any extra navigational formats, like :iphone or :mobile, you # If you have any extra navigational formats, like :iphone or :mobile, you
# should add them to the navigational formats lists. Default is [:html] # should add them to the navigational formats lists. Default is [:html]
# config.navigational_formats = [:html, :iphone] # config.navigational_formats = [:html, :iphone]
config.navigational_formats = [:"*/*", "*/*", :html, :mobile]
# ==> Warden configuration # ==> Warden configuration
# If you want to use other strategies, that are not (yet) supported by Devise, # If you want to use other strategies, that are not (yet) supported by Devise,

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ ar:
subject: "تعليمات التأكيد" subject: "تعليمات التأكيد"
you_can_confirm: "يمكنك تأكيد حسابك عبر الرابط التالي" you_can_confirm: "يمكنك تأكيد حسابك عبر الرابط التالي"
hello: "مرحبا %{email}!" hello: "مرحبا %{email}!"
invitation: invitation_instructions:
accept: "قبول الدعوة" accept: "Accept invitation"
ignore: "إذا كنت لا تريد قبول الدعوة, رجاء تجاهل هذه الرسالة" ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "لن يتم إنشاء حسابك حتى تنقر على الرابط أعلاه وتسجل دخولك" no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "دعوة من صديق للإنضمام إلى دياسبرا" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", at %{url}, يمكنك قبولها عبر الرابط التالي." accept_at: ", at %{url}, يمكنك قبولها عبر الرابط التالي."
has_invited_you: "%{name} يدعوك للإنضمام إلى دياسبرا" has_invited_you: "%{name} يدعوك للإنضمام إلى دياسبرا"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,10 +28,10 @@ bg:
subject: "Инструкции за потвърждаване" subject: "Инструкции за потвърждаване"
you_can_confirm: "Можете да потвърдите акаунта си чрез линка по-долу:" you_can_confirm: "Можете да потвърдите акаунта си чрез линка по-долу:"
hello: "Здравейте %{email}!" hello: "Здравейте %{email}!"
invitation: invitation_instructions:
accept: "Приеман поканата" accept: "Accept invitation"
ignore: "Ако не желаете да приемете поканата, моля игнорирайте писмото." ignore: "Ако не желаете да приемете поканата, моля игнорирайте писмото."
no_account_till: "Акаунтът няма да бъде създаден докато не посетите връзката по-горе и не се регистрирате." no_account_till: "Акаунтът няма да бъде създаден докато не посетите горната връзката и се регистрирате."
subject: "Поканени сте да се присъедините към Diaspora!" subject: "Поканени сте да се присъедините към Diaspora!"
inviters: inviters:
accept_at: ", на адрес %{url}. Можете да приемете поканата чрез линка по-долу." accept_at: ", на адрес %{url}. Можете да приемете поканата чрез линка по-долу."

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ br:
subject: "Titouroù-kadarnaat" subject: "Titouroù-kadarnaat"
you_can_confirm: "Moaien zo deoc'h kadarnaat ho kont gant al liamm dindan:" you_can_confirm: "Moaien zo deoc'h kadarnaat ho kont gant al liamm dindan:"
hello: "Demat, %{email}!" hello: "Demat, %{email}!"
invitation: invitation_instructions:
accept: "Roit ho asant da'r bedadenn" accept: "Accept invitation"
ignore: "M'ho peus ket c'hoant bezañ pedet n'ho peus ket nemet leuskel ar postel-mañ a-gostez." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Ne vo ket krouet ho hont keit ma n'ho po ket kliket war al liamm dindan ha lakaet hoc'h anv." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Pedet oc'h bet da vont davet Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", e %{url}, moaien zo deoc'h asantiñ dre al liamm a zo dindan." accept_at: ", e %{url}, moaien zo deoc'h asantiñ dre al liamm a zo dindan."
has_invited_you: "%{name} en deus pedet ac'hanoc'h da vont davet Diaspora" has_invited_you: "%{name} en deus pedet ac'hanoc'h da vont davet Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ cs:
subject: "Informace o potvrzení" subject: "Informace o potvrzení"
you_can_confirm: "Váš účet můžete potvrdit kliknutím na tento odkaz:" you_can_confirm: "Váš účet můžete potvrdit kliknutím na tento odkaz:"
hello: "Zdravím %{email}!" hello: "Zdravím %{email}!"
invitation: invitation_instructions:
accept: "Potvrdit pozvánku" accept: "Přijmout pozvání"
ignore: "Pokud nechcete potvrdit pozvání, tento e-mail prosím ignorujte." ignore: "Pokud nechcete přijmout pozvání, prosím ignorujte tento e-mail."
no_account_till: "Pro dokončení registrace klikněte prosím na odkaz uvedený níže." no_account_till: "Váš účet nebude vytvořen dokud nepřistoupíte na uvedený odkaz a zaregistrujete se."
subject: "Byl jste pozván na Diasporu!" subject: "Byli jste pozváni na Diasporu!"
inviters: inviters:
accept_at: ", na %{url}, akceptujte kliknutím na odkaz." accept_at: ", na %{url}, akceptujte kliknutím na odkaz."
has_invited_you: "%{name} Vás pozval na Diasporu" has_invited_you: "%{name} Vás pozval na Diasporu"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ cy:
subject: "Confirmation instructions" subject: "Confirmation instructions"
you_can_confirm: "You can confirm your account through the link below:" you_can_confirm: "You can confirm your account through the link below:"
hello: "Hello %{email}!" hello: "Hello %{email}!"
invitation: invitation_instructions:
accept: "Accept invitation" accept: "Accept invitation"
ignore: "If you don't want to accept the invitation, please ignore this email." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Your account won't be created until you access the link above and sign up." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "A friend wants you to join Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", at %{url}, you can accept it through the link below." accept_at: ", at %{url}, you can accept it through the link below."
has_invited_you: "%{name} has invited you to join Diaspora" has_invited_you: "%{name} has invited you to join Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ da:
subject: "Bekræftelsesinstruktioner" subject: "Bekræftelsesinstruktioner"
you_can_confirm: "Du kan bekræfte din konto via nedenstående link:" you_can_confirm: "Du kan bekræfte din konto via nedenstående link:"
hello: "Hej %{email}!" hello: "Hej %{email}!"
invitation: invitation_instructions:
accept: "Acceptér invitation" accept: "Accept invitation"
ignore: "Hvis du ikke ønsker at acceptere invitationen, bedes du ignorere denne e-mail." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Din konto vil ikke blive oprettet før du klikker på linket ovenfor og logger ind." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Du er blevet inviteret til Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", på %{url}, kan du acceptere via linket nedenfor." accept_at: ", på %{url}, kan du acceptere via linket nedenfor."
has_invited_you: "%{name} har inviteret dig til Diaspora" has_invited_you: "%{name} har inviteret dig til Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ de:
subject: "Bestätigung deines Diaspora-Kontos" subject: "Bestätigung deines Diaspora-Kontos"
you_can_confirm: "Du kannst dein Konto über den nachfolgenden Link bestätigen:" you_can_confirm: "Du kannst dein Konto über den nachfolgenden Link bestätigen:"
hello: "Hallo %{email}!" hello: "Hallo %{email}!"
invitation: invitation_instructions:
accept: "Einladung annehmen" accept: "Accept invitation"
ignore: "Wenn du die Einladung nicht annehmen willst, dann ignoriere diese E-Mail." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Dein Konto wird erst erstellt, wenn du dich über den Link registrierst." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Du wurdest zu Diaspora eingeladen!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: "%{url} teilzunehmen. Du kannst die Einladung durch den Link unten annehmen." accept_at: "%{url} teilzunehmen. Du kannst die Einladung durch den Link unten annehmen."
has_invited_you: "%{name} hat dich dazu eingeladen, bei Diaspora auf" has_invited_you: "%{name} hat dich dazu eingeladen, bei Diaspora auf"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ el:
subject: "Οδηγίες επιβεβαίωσης" subject: "Οδηγίες επιβεβαίωσης"
you_can_confirm: "Μπορείτε να επιβεβαιώσετε τον λογαριασμό σας μέσω του παρακάτω συνδέσμου:" you_can_confirm: "Μπορείτε να επιβεβαιώσετε τον λογαριασμό σας μέσω του παρακάτω συνδέσμου:"
hello: "Γειά σου %{email}!" hello: "Γειά σου %{email}!"
invitation: invitation_instructions:
accept: "Αποδοχή πρόσκλησης" accept: "Αποδοχή πρόσκλησης"
ignore: "Εάν δεν θέλετε να αποδεχθείτε την πρόσκληση, αγνοήστε αυτό το μήνυμα." ignore: "Εάν δεν θέλετε να αποδεχτήτε την πρόσκληση, παρακαλώ αγνοήστε αυτό το email."
no_account_till: "Ο λογαριασμός σας δεν θα δημιουργηθεί μέχρι να επισκεφθείτε τον παραπάνω σύνδεσμο και να εγγραφείτε." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Έχετε λάβει πρόσκληση για να γίνετε μέλος του Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", στο %{url}, μπορείτε να το αποδεχτείτε, μέσω του επόμενου συνδέσμου." accept_at: ", στο %{url}, μπορείτε να το αποδεχτείτε, μέσω του επόμενου συνδέσμου."
has_invited_you: "Ο χρήστης %{name} σας προσκάλεσε να γίνετε μέλος του Diaspora" has_invited_you: "Ο χρήστης %{name} σας προσκάλεσε να γίνετε μέλος του Diaspora"

View file

@ -72,7 +72,7 @@ en:
account_locked: "Your account has been locked due to an excessive amount of unsuccessful sign in attempts." account_locked: "Your account has been locked due to an excessive amount of unsuccessful sign in attempts."
click_to_unlock: "Click the link below to unlock your account:" click_to_unlock: "Click the link below to unlock your account:"
unlock: "Unlock my account" unlock: "Unlock my account"
invitation: invitation_instructions:
subject: "You've been invited to join Diaspora!" subject: "You've been invited to join Diaspora!"
accept: "Accept invitation" accept: "Accept invitation"
ignore: "If you don't want to accept the invitation, please ignore this email." ignore: "If you don't want to accept the invitation, please ignore this email."

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ en_shaw:
subject: "𐑒𐑪𐑯𐑓𐑼𐑥𐑱𐑖𐑩𐑯 𐑦𐑯𐑕𐑑𐑮𐑳𐑒𐑖𐑩𐑯𐑟" subject: "𐑒𐑪𐑯𐑓𐑼𐑥𐑱𐑖𐑩𐑯 𐑦𐑯𐑕𐑑𐑮𐑳𐑒𐑖𐑩𐑯𐑟"
you_can_confirm: "𐑿 𐑒𐑨𐑯 𐑒𐑩𐑯𐑓𐑻𐑥 𐑿𐑼 𐑩𐑒𐑬𐑯𐑑 𐑔𐑮𐑵 𐑞 𐑤𐑦𐑙𐑒 𐑚𐑦𐑤𐑴:" you_can_confirm: "𐑿 𐑒𐑨𐑯 𐑒𐑩𐑯𐑓𐑻𐑥 𐑿𐑼 𐑩𐑒𐑬𐑯𐑑 𐑔𐑮𐑵 𐑞 𐑤𐑦𐑙𐑒 𐑚𐑦𐑤𐑴:"
hello: "𐑣𐑧𐑤𐑴 %{email}!" hello: "𐑣𐑧𐑤𐑴 %{email}!"
invitation: invitation_instructions:
accept: "𐑩𐑒𐑕𐑧𐑐𐑑 𐑦𐑥𐑝𐑦𐑑𐑱𐑖𐑩𐑯" accept: "Accept invitation"
ignore: "𐑦𐑓 𐑿 𐑛𐑴𐑯𐑑 𐑢𐑳𐑯𐑑 𐑑 𐑩𐑒𐑕𐑧𐑐𐑑 𐑞 𐑦𐑯𐑝𐑦𐑑𐑱𐑖𐑩𐑯, 𐑐𐑤𐑰𐑟 𐑦𐑜𐑯𐑹 𐑞𐑦𐑕 𐑦-𐑥𐑱𐑤." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "𐑿𐑼 𐑩𐑒𐑬𐑯𐑑 𐑢𐑴𐑯𐑑 𐑚𐑰 𐑒𐑮𐑦𐑱𐑑𐑩𐑛 𐑩𐑯𐑑𐑦𐑤 𐑿 𐑨𐑒𐑕𐑧𐑕 𐑞 𐑤𐑦𐑙𐑒 𐑩𐑚𐑳𐑝 𐑯 𐑕𐑲𐑯 𐑳𐑐." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "𐑿𐑝 𐑚𐑧𐑯 𐑦𐑯𐑝𐑲𐑑𐑩𐑛 𐑑 𐑡𐑶𐑯 ·𐑛𐑦𐑨𐑕𐑐𐑹𐑩!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", 𐑨𐑑 %{url}, 𐑿 𐑒𐑨𐑯 𐑩𐑒𐑕𐑧𐑐𐑑 𐑦𐑑 𐑔𐑮𐑵 𐑔 𐑤𐑦𐑙𐑒 𐑚𐑦𐑤𐑴." accept_at: ", 𐑨𐑑 %{url}, 𐑿 𐑒𐑨𐑯 𐑩𐑒𐑕𐑧𐑐𐑑 𐑦𐑑 𐑔𐑮𐑵 𐑔 𐑤𐑦𐑙𐑒 𐑚𐑦𐑤𐑴."
has_invited_you: "%{name} 𐑣𐑨𐑟 𐑦𐑥𐑝𐑲𐑑𐑩𐑛 𐑿 𐑑 𐑡𐑶𐑯 ·𐑛𐑦𐑨𐑕𐑐𐑹𐑩" has_invited_you: "%{name} 𐑣𐑨𐑟 𐑦𐑥𐑝𐑲𐑑𐑩𐑛 𐑿 𐑑 𐑡𐑶𐑯 ·𐑛𐑦𐑨𐑕𐑐𐑹𐑩"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ eo:
subject: "Instrukcioj por konfirmi" subject: "Instrukcioj por konfirmi"
you_can_confirm: "Vi povas konfirmi vian konton per la suba ligilo:" you_can_confirm: "Vi povas konfirmi vian konton per la suba ligilo:"
hello: "Saluton, %{email}!" hello: "Saluton, %{email}!"
invitation: invitation_instructions:
accept: "Akcepti inviton" accept: "Accept invitation"
ignore: "If you don't want to accept the invitation, please ignore this email." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Your account won't be created until you access the link above and sign up." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Iu invitis vin aligi al Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", ĉe %{url}, vi povas akcepti ĝin per la suba ligilo." accept_at: ", ĉe %{url}, vi povas akcepti ĝin per la suba ligilo."
has_invited_you: "%{name} invitis vin aliĝi al Diaspora" has_invited_you: "%{name} invitis vin aliĝi al Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ es-CL:
subject: "Instrucciones de confirmación" subject: "Instrucciones de confirmación"
you_can_confirm: "Puedes confirmar tu cuenta a través del siguiente enlace:" you_can_confirm: "Puedes confirmar tu cuenta a través del siguiente enlace:"
hello: "Hola %{email}!" hello: "Hola %{email}!"
invitation: invitation_instructions:
accept: "Aceptar la invitación" accept: "Accept invitation"
ignore: "Si no quieres aceptar la invitación, por favor, ignora este correo." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Tu cuenta no será creada hasta que accedas al enlace de arriba y te registres." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "¡Has sido invitado a unirte a Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", en %{url}, puedes aceptar a través del siguiente enlace." accept_at: ", en %{url}, puedes aceptar a través del siguiente enlace."
has_invited_you: "%{name} te ha invitado a unirte a Diaspora" has_invited_you: "%{name} te ha invitado a unirte a Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ es:
subject: "Instrucciones de confirmación" subject: "Instrucciones de confirmación"
you_can_confirm: "Puedes confirmar tu cuenta a través del siguiente enlace:" you_can_confirm: "Puedes confirmar tu cuenta a través del siguiente enlace:"
hello: "Hola %{email}!" hello: "Hola %{email}!"
invitation: invitation_instructions:
accept: "Aceptar la invitación" accept: "Accept invitation"
ignore: "Si no deseas aceptar la invitación, por favor ignora este mensaje." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Tu cuenta no será creada hasta que accedas al enlace de arriba y te identifiques." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "¡Has sido invitado a participar en Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", en %{url}, puedes aceptar en el siguiente enlace." accept_at: ", en %{url}, puedes aceptar en el siguiente enlace."
has_invited_you: "%{name} te ha invitado a unirte a Diaspora" has_invited_you: "%{name} te ha invitado a unirte a Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ eu:
subject: "Baieztapen argibideak" subject: "Baieztapen argibideak"
you_can_confirm: "Zure kontua baieztatu dezakezu esteka hau jarraituz:" you_can_confirm: "Zure kontua baieztatu dezakezu esteka hau jarraituz:"
hello: "Kaixo %{email}!" hello: "Kaixo %{email}!"
invitation: invitation_instructions:
accept: "Gonbidapena onartu" accept: "Gonbidapena"
ignore: "Ez baduzu gonbidapena onartu nahi, gutxietsi mezu hau." ignore: "Ez baduzu gonbidapena onartu nahi, mesedez egin iezaiozu ez-ikusi mezu honi."
no_account_till: "Zure kontua ez da sortua izango goiko esteka jarraitzen duzun arte." no_account_till: "Zure kontua ez da sortuko hemengo esteka jarraitu eta izena eman arte."
subject: "Diasporara gonbidatua izan zara!" subject: "Diasporara batzera gonbidatua izan zara!"
inviters: inviters:
accept_at: ",%{url}(e)n, onartu dezakezu honako estekaren bidez." accept_at: ",%{url}(e)n, onartu dezakezu honako estekaren bidez."
has_invited_you: "%{name} Diasporara gonbidatu zaitu" has_invited_you: "%{name} Diasporara gonbidatu zaitu"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ fi:
subject: "Vahvistamisohjeet" subject: "Vahvistamisohjeet"
you_can_confirm: "Voit vahvistaa käyttäjätilisi alla olevan linkin kautta:" you_can_confirm: "Voit vahvistaa käyttäjätilisi alla olevan linkin kautta:"
hello: "Hei, %{email}!" hello: "Hei, %{email}!"
invitation: invitation_instructions:
accept: "Hyväksy kutsu" accept: "Accept invitation"
ignore: "Jos et halua hyväksyä kutsua, voit jättää tämän viestin huomioimatta." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Käyttäjätilisi luodaan vasta, kun rekisteröidyt yllä olevan linkin kautta. " no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Sinut on kutsuttu käyttämään Diasporaa!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", osoitteessa %{url}, voit hyväksyä sen alla olevan linkin kautta." accept_at: ", osoitteessa %{url}, voit hyväksyä sen alla olevan linkin kautta."
has_invited_you: "%{name} on kutsunut sinut liittymään Diasporaan" has_invited_you: "%{name} on kutsunut sinut liittymään Diasporaan"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ fr:
subject: "Instructions de confirmation" subject: "Instructions de confirmation"
you_can_confirm: "Vous pouvez confirmer votre compte à travers le lien ci-dessous :" you_can_confirm: "Vous pouvez confirmer votre compte à travers le lien ci-dessous :"
hello: "Bonjour %{email} !" hello: "Bonjour %{email} !"
invitation: invitation_instructions:
accept: "Accepter l'invitation" accept: "Accept invitation"
ignore: "Si vous ne souhaitez pas accepter l'invitation, merci d'ignorer cet e-mail." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Votre compte ne sera pas créé avant que vous ne vous inscriviez en accédant au lien ci-dessus." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Vous avez été invité à rejoindre Diaspora !" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", sur %{url}, vous pouvez accepter à travers le lien ci-dessous." accept_at: ", sur %{url}, vous pouvez accepter à travers le lien ci-dessous."
has_invited_you: "%{name} vous a invité à rejoindre Diaspora" has_invited_you: "%{name} vous a invité à rejoindre Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ ga:
subject: "Treoiracha deimhniú" subject: "Treoiracha deimhniú"
you_can_confirm: "Tá tú ábalta do cúntas a deimhniú tríd an nasc faoi:" you_can_confirm: "Tá tú ábalta do cúntas a deimhniú tríd an nasc faoi:"
hello: "Haileo %{email}!" hello: "Haileo %{email}!"
invitation: invitation_instructions:
accept: "Ghlacadh leis an cuireadh" accept: "Accept invitation"
ignore: "If you don't want to accept the invitation, please ignore this email." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Ní bheidh do cúntas déanta roimh a rochtain tú an nasc thar agus síníonn tú suas." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Tá cuireadh seolta chugat chun páirt a ghlacadh i Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", ag %{url}, is féidir leat ghlacadh leis an cuireadh tríd an nasc faoi." accept_at: ", ag %{url}, is féidir leat ghlacadh leis an cuireadh tríd an nasc faoi."
has_invited_you: "Tá %{name} tar éis cuireadh a sheoladh chugat chun páirt a ghlacadh i Diaspora" has_invited_you: "Tá %{name} tar éis cuireadh a sheoladh chugat chun páirt a ghlacadh i Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ he:
subject: "הנחיות לאימות" subject: "הנחיות לאימות"
you_can_confirm: "באפשרותך לאמת את החשבון שלך באמצעות הקישור שלהלן:" you_can_confirm: "באפשרותך לאמת את החשבון שלך באמצעות הקישור שלהלן:"
hello: "שלום %{email}!" hello: "שלום %{email}!"
invitation: invitation_instructions:
accept: "קבלת ההזמנה" accept: "Accept invitation"
ignore: "אם אין ברצונך לאשר את ההזמנה ניתן להתעלם מהודעה זו." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "החשבון שלך לא ייווצר עד הרישום דרך קישור זה." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "הוזמנת על ידי אחד מחבריך להצטרף לדיאספורה!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", בכתובת %{url}, ניתן לקבל אותה דרך הקישור שלהלן." accept_at: ", בכתובת %{url}, ניתן לקבל אותה דרך הקישור שלהלן."
has_invited_you: "התקבלה הזמנה מאת %{name} להצטרף לדיאספורה" has_invited_you: "התקבלה הזמנה מאת %{name} להצטרף לדיאספורה"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ hu:
subject: "Megerősítési utasítások" subject: "Megerősítési utasítások"
you_can_confirm: "Megerősítheted a fiókod ezen a linken keresztül:" you_can_confirm: "Megerősítheted a fiókod ezen a linken keresztül:"
hello: "Szia %{email}!" hello: "Szia %{email}!"
invitation: invitation_instructions:
accept: "Elfogadom a meghívót" accept: "Accept invitation"
ignore: "Ha nem akarod elfogadni a meghívást, hagyd figyelmen kívül ezt a levelet." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "A fiókod addig nem hozható létre, amíg nem regisztrálsz a fenti linken keresztül." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Meghívtak, hogy csatlakozz a Diaspora* közösségi hálózathoz!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", ezen a linken keresztül tudod elfogadni: %{url}." accept_at: ", ezen a linken keresztül tudod elfogadni: %{url}."
has_invited_you: "%{name} meghívott téged, hogy csatlakozz a Diaspora* közösségi hálózathoz" has_invited_you: "%{name} meghívott téged, hogy csatlakozz a Diaspora* közösségi hálózathoz"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ id:
subject: "Confirmation instructions" subject: "Confirmation instructions"
you_can_confirm: "You can confirm your account through the link below:" you_can_confirm: "You can confirm your account through the link below:"
hello: "Hello %{email}!" hello: "Hello %{email}!"
invitation: invitation_instructions:
accept: "Accept invitation" accept: "Accept invitation"
ignore: "If you don't want to accept the invitation, please ignore this email." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Your account won't be created until you access the link above and sign up." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "A friend wants you to join Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", at %{url}, you can accept it through the link below." accept_at: ", at %{url}, you can accept it through the link below."
has_invited_you: "%{name} has invited you to join Diaspora" has_invited_you: "%{name} has invited you to join Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ is:
subject: "Staðfestingarleiðbeiningar" subject: "Staðfestingarleiðbeiningar"
you_can_confirm: "Þú getur staðfest aðgang þinn með því að elta hlekkinn hér fyrir neðan:" you_can_confirm: "Þú getur staðfest aðgang þinn með því að elta hlekkinn hér fyrir neðan:"
hello: "Halló %{email}!" hello: "Halló %{email}!"
invitation: invitation_instructions:
accept: "Taka boðinu" accept: "Accept invitation"
ignore: "Ef þú vilt ekki taka boðinu, vinsamlegast gefðu þá þessum tölvupósti engan gaum." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Aðgangur þinn mun ekki verða búinn til fyrr en þú eltir hlekkinn hér fyrir ofan og skráir þig." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Þér hefur verið boðið að taka þátt í Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", Á% {url}, getur þú samþykkt það í gegnum hlekkinn hér fyrir neðan." accept_at: ", Á% {url}, getur þú samþykkt það í gegnum hlekkinn hér fyrir neðan."
has_invited_you: "%{name} hefur boðið þér að taka þátt í Díaspora" has_invited_you: "%{name} hefur boðið þér að taka þátt í Díaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,10 +28,10 @@ it:
subject: "Istruzioni di conferma" subject: "Istruzioni di conferma"
you_can_confirm: "Puoi confermare il tuo account attraverso il link sottostante:" you_can_confirm: "Puoi confermare il tuo account attraverso il link sottostante:"
hello: "Ciao %{email}!" hello: "Ciao %{email}!"
invitation: invitation_instructions:
accept: "Accetta l'invito" accept: "Accetta l'invito"
ignore: "se non vuoi accettare l' invito, perfavore ignora questa email." ignore: "Se non vuoi accettare l'invito, perfavore ignora questa email."
no_account_till: "Il tuo account non sarà creato finchè non cliccherai sul link qui sopra e ti registrerai." no_account_till: "Il tuo account non sarà creato finché non cliccherai sul link qui sopra e ti registrerai."
subject: "Hai un invito per iscriverti a Diaspora!" subject: "Hai un invito per iscriverti a Diaspora!"
inviters: inviters:
accept_at: ", a %{url}, lo puoi accettare tramite il link sottostante." accept_at: ", a %{url}, lo puoi accettare tramite il link sottostante."

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ ja:
subject: "認証手続き" subject: "認証手続き"
you_can_confirm: "次のリンクからアカウントが認証できます。" you_can_confirm: "次のリンクからアカウントが認証できます。"
hello: "%{email}さん、こんにちは!" hello: "%{email}さん、こんにちは!"
invitation: invitation_instructions:
accept: "招待を承諾する" accept: "Accept invitation"
ignore: "招待にご興味がない場合は、このメールを無視してください。" ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "上のリンクへアクセスして新規登録するまではアカウントが作成されません。" no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "ダイアスポラへ参加しませんか!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: "、%{url}。下のリンクから承諾できます。" accept_at: "、%{url}。下のリンクから承諾できます。"
has_invited_you: "%{name}さんはダイアスポラへの参加を招待しています。" has_invited_you: "%{name}さんはダイアスポラへの参加を招待しています。"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,7 +28,7 @@ ko:
subject: "확인 안내" subject: "확인 안내"
you_can_confirm: "아래 링크로 계정을 확인할 수 있습니다:" you_can_confirm: "아래 링크로 계정을 확인할 수 있습니다:"
hello: "%{email} 님 환영합니다!" hello: "%{email} 님 환영합니다!"
invitation: invitation_instructions:
accept: "초대 수락하기" accept: "초대 수락하기"
ignore: "초대를 수락하지 않으려면 이 메일을 무시하세요." ignore: "초대를 수락하지 않으려면 이 메일을 무시하세요."
no_account_till: "계정은 가입하지 않는 한 만들어지지 않습니다." no_account_till: "계정은 가입하지 않는 한 만들어지지 않습니다."
@ -84,7 +84,7 @@ ko:
sign_up: "가입하기" sign_up: "가입하기"
sign_up_closed: "공개 가입이 닫혀있습니다." sign_up_closed: "공개 가입이 닫혀있습니다."
mail_signup_form: mail_signup_form:
sign_up_for_an_invite: "초대받고 싶으면 이메일 주소를 등록해두세!" sign_up_for_an_invite: "초대받고 싶으면 이메일 주소를 등록해두세!"
unlocks: unlocks:
new: new:
resend_unlock: "풀기 메일 다시 보내기" resend_unlock: "풀기 메일 다시 보내기"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ lt:
subject: "Patvirtinimo nurodymai" subject: "Patvirtinimo nurodymai"
you_can_confirm: "Paskyrą galima patvirtinti žemiau pateikta nuoroda:" you_can_confirm: "Paskyrą galima patvirtinti žemiau pateikta nuoroda:"
hello: "Labas, %{email}!" hello: "Labas, %{email}!"
invitation: invitation_instructions:
accept: "Priimti pakvietimą" accept: "Accept invitation"
ignore: "Jei nenori priimti pakvietimo, ignoruok šį laišką." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Paskyra nebus sukurta, kol nebus pasinaudota aukščiau esančia nuoroda ir užregistruotas naujas vartotojas." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Draugas nori prisijungti prie Diasporos!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", adresu %{url} kurį galima priimti naudojantis žemiau pateikta nuoroda." accept_at: ", adresu %{url} kurį galima priimti naudojantis žemiau pateikta nuoroda."
has_invited_you: "%{name} kviečia prisijungti prie Diasporos" has_invited_you: "%{name} kviečia prisijungti prie Diasporos"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ mk:
subject: "Инструкции за потврдување" subject: "Инструкции за потврдување"
you_can_confirm: "Можете да ја потврдите вашата корисничка сметка на долниот линк:" you_can_confirm: "Можете да ја потврдите вашата корисничка сметка на долниот линк:"
hello: "Здраво %{email}!" hello: "Здраво %{email}!"
invitation: invitation_instructions:
accept: "Прифати покана" accept: "Accept invitation"
ignore: "Ако не сакате да ја прифатите поканата, ве молиме игнорирајте го овој е-маил." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Вашата корисничка сметка нема да биде креирана пред да се регистрирате на горниот линк." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Поканети сте за приклучување кон Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", на %{url}, можете да ја прифатите преку линкот подолу." accept_at: ", на %{url}, можете да ја прифатите преку линкот подолу."
has_invited_you: "%{name} ве покани да се приклучите кон Diaspora" has_invited_you: "%{name} ве покани да се приклучите кон Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ nb:
subject: "Confirmation instructions" subject: "Confirmation instructions"
you_can_confirm: "Du kan bekrefte kontoen via linken nedenfor:" you_can_confirm: "Du kan bekrefte kontoen via linken nedenfor:"
hello: "Hei %{email}!" hello: "Hei %{email}!"
invitation: invitation_instructions:
accept: "Godta invitasjon" accept: "Accept invitation"
ignore: "Hvis du ikke vil godta invitasjonen, kan du overse denne e-posten." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Kontoen din vil ikke bli opprettet før du åpner linken ovenfor og registrerer deg." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "A friend wants you to join Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", at %{url}, you can accept it through the link below." accept_at: ", at %{url}, you can accept it through the link below."
has_invited_you: "%{name} har invitert deg til å bli med på Diaspora" has_invited_you: "%{name} har invitert deg til å bli med på Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ nl:
subject: "Bevestigingsinstructies" subject: "Bevestigingsinstructies"
you_can_confirm: "Je kunt je account bevestigen via onderstaande link:" you_can_confirm: "Je kunt je account bevestigen via onderstaande link:"
hello: "Hallo %{email}!" hello: "Hallo %{email}!"
invitation: invitation_instructions:
accept: "Accepteer uitnodiging" accept: "Accept invitation"
ignore: "Indien je de uitnodiging niet wilt accepteren kun je deze mail gewoon negeren." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Je account zal niet worden aangemaakt totdat je jezelf via bovenstaande link registreert." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Je bent uitgenodigd om lid te worden van Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", op %{url}, je kunt het accepteren via onderstaande link." accept_at: ", op %{url}, je kunt het accepteren via onderstaande link."
has_invited_you: "%{name} heeft je uitgenodigd om lid te worden van Diaspora" has_invited_you: "%{name} heeft je uitgenodigd om lid te worden van Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,7 +28,7 @@ pa:
subject: "ਪੁਸ਼ਟੀ ਹਦਾਇਤਾਂ" subject: "ਪੁਸ਼ਟੀ ਹਦਾਇਤਾਂ"
you_can_confirm: "You can confirm your account through the link below:" you_can_confirm: "You can confirm your account through the link below:"
hello: "Hello %{email}!" hello: "Hello %{email}!"
invitation: invitation_instructions:
accept: "Accept invitation" accept: "Accept invitation"
ignore: "If you don't want to accept the invitation, please ignore this email." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Your account won't be created until you access the link above and sign up." no_account_till: "Your account won't be created until you access the link above and sign up."

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ pl:
subject: "Instrukcje aktywacji" subject: "Instrukcje aktywacji"
you_can_confirm: "Możesz aktywować swoje konto klikając poniższy odnośnik:" you_can_confirm: "Możesz aktywować swoje konto klikając poniższy odnośnik:"
hello: "Cześć %{email}!" hello: "Cześć %{email}!"
invitation: invitation_instructions:
accept: "Zaakceptuj zaproszenie" accept: "Accept invitation"
ignore: "Jeśli nie chcesz zaakceptować zaproszenia, zignoruj ten e-mail." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Twoje konto nie zostanie założone dopóki nie klikniesz odnośnika powyżej i nie zarejestrujesz się." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Masz zaproszenie do Diaspory!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", pod adresem %{url}, możesz przyjąć zaproszenie używając poniższego odnośnika." accept_at: ", pod adresem %{url}, możesz przyjąć zaproszenie używając poniższego odnośnika."
has_invited_you: "Użytkownik %{name} zaprosił Cię do Diaspory" has_invited_you: "Użytkownik %{name} zaprosił Cię do Diaspory"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ pt-BR:
subject: "Instruções para confirmação" subject: "Instruções para confirmação"
you_can_confirm: "Você pode confirmar a sua conta através do link abaixo:" you_can_confirm: "Você pode confirmar a sua conta através do link abaixo:"
hello: "Oi %{email}!" hello: "Oi %{email}!"
invitation: invitation_instructions:
accept: "Aceitar o convite" accept: "Accept invitation"
ignore: "Se você não quer aceitar o convite, por favor ignore este email." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Você somente criará sua conta ao acessar o link acima e se cadastrar." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Um amigo quer que você se junte à Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", no endereço %{url}. Para aceitá-lo, basta acessar o link abaixo." accept_at: ", no endereço %{url}. Para aceitá-lo, basta acessar o link abaixo."
has_invited_you: "%{name} lhe convidou para entrar na Diaspora" has_invited_you: "%{name} lhe convidou para entrar na Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -6,90 +6,90 @@
pt-PT: pt-PT:
devise: devise:
confirmations: confirmations:
confirmed: "A tua conta foi confirmada com sucesso. Estás online." confirmed: "A sua conta foi confirmada com sucesso. A sessão foi iniciada."
new: new:
resend_confirmation: "Reenviar instruções de confirmação" resend_confirmation: "Reenviar instruções de confirmação"
send_instructions: "Vais receber um email com instruções sobre como confirmar a tua conta dentro de alguns minutos." send_instructions: "Receberá um email com instruções sobre como confirmar a sua conta dentro de alguns minutos."
failure: failure:
inactive: "A tua conta ainda não foi activada." inactive: "A sua conta ainda não foi activada."
invalid: "Endereço de correio ou senha inválida." invalid: "Endereço de email ou senha inválidos."
invalid_token: "Token de autenticação inválido." invalid_token: "Código de de autentificação inválido."
locked: "A tua conta foi bloqueada." locked: "A sua conta foi bloqueada."
timeout: "A sua sessão expirou, por favor faça login novamente para continuar." timeout: "A sua sessão expirou, por favor inicie sessão novamente para continuar."
unauthenticated: "Faça login ou registe-se antes de continuar." unauthenticated: "É necessário iniciar sessão ou registar-se antes de continuar."
unconfirmed: "Confirma a tua conta antes de continuar." unconfirmed: "Precisa confirmar a sua conta antes de continuar."
invitations: invitations:
invitation_token_invalid: "O código de convite que introduziste não é válido!" invitation_token_invalid: "O código de convite que introduziu não é válido!"
send_instructions: "O teu convite foi enviado." send_instructions: "O seu convite foi enviado."
updated: "A tua senha foi definida com sucesso. Estás online." updated: "A sua palavra-passe foi definida com sucesso. A sessão foi iniciada."
mailer: mailer:
confirmation_instructions: confirmation_instructions:
confirm: "Confirmar a minha conta" confirm: "Confirmar a minha conta"
subject: "Instruções de confirmação" subject: "Instruções de confirmação"
you_can_confirm: "Podes confirmar a tua conta através do seguinte link:" you_can_confirm: "Pode confirmar a sua conta através da seguinte hiperligação:"
hello: "Olá, %{email}!" hello: "Olá, %{email}!"
invitation: invitation_instructions:
accept: "Aceitar o convite" accept: "Aceitar o convite"
ignore: "Se não pretenderes aceitar este convite, por favor ignora este email." ignore: "Se não deseja aceitar o convite, por favor ignore este email."
no_account_till: "A tua conta não será criada até que acedas ao link acima e te registes" no_account_till: "A sua conta não será criada até que aceda à hiperligação acima e se registe."
subject: "Foste convidado(a) para te juntares ao Diaspora!" subject: "Foi convidado para se juntar ao Diaspora!"
inviters: inviters:
accept_at: ", em %{url}, pode aceitar através do seguinte link:" accept_at: ", em %{url}, pode aceitar através da seguinte hiperligação:"
has_invited_you: "%{name} convidou-te para o Diaspora" has_invited_you: "%{name} convidou-o para se juntar ao Diaspora"
have_invited_you: "%{names} convidaram-te para o Diaspora" have_invited_you: "%{names} convidaram-no para se juntar ao Diaspora"
reset_password_instructions: reset_password_instructions:
change: "Alterar a minha senha" change: "Alterar a minha palavra-passe"
ignore: "Se não fizeste este pedido, por favor ignora este email." ignore: "Se não fez este pedido, por favor ignore este email."
someone_requested: "Alguém pediu para alterar a tua senha, e podes alterar a mesma através do seguinte link" someone_requested: "Alguém pediu para alterar a sua palavra-passe, isso pode ser feito através da hiperligação abaixo."
subject: "Instruções de reposição da palavra-passe" subject: "Instruções de reposição da palavra-passe"
wont_change: "A tua senha não será modificada até clicares no link acima e criares uma nova senha. " wont_change: "A sua palavra-passe não será alterada até que aceda à hiperligação acima e crie uma nova palavra-passe. "
unlock_instructions: unlock_instructions:
account_locked: "A tua conta foi bloqueada devido a um número excessivo de tentativas de login falhadas." account_locked: "A sua conta foi bloqueada devido a um número excessivo de tentativas de inicio de sessão falhadas."
click_to_unlock: "Clica no link abaixo para desbloquear a tua conta:" click_to_unlock: "Clique na hiperligação abaixo para desbloquear a sua conta:"
subject: "Instruções de Desbloqueio" subject: "Instruções de Desbloqueio"
unlock: "Desbloquear a minha conta" unlock: "Desbloquear a minha conta"
welcome: "Bem-vindo(a), %{email}!" welcome: "Bem-vindo(a), %{email}!"
passwords: passwords:
edit: edit:
change_password: "Alterar a minha senha" change_password: "Alterar a minha palavra-passe"
new: new:
forgot_password: "Esqueceste-te da tua senha?" forgot_password: "Esqueceu-se da sua palavra-passe?"
no_account: "No account with this email exsists. If you are waiting for an invite, we are rolling them out as soon as possible" no_account: "Não existe nenhuma conta com este endereço de email. Se está a esperar por um convite, estamos a distribuí-los tão rapidamente quanto é possível"
send_password_instructions: "Enviem-me as instruções para modificar a minha senha" send_password_instructions: "Enviem-me as instruções para modificar a minha palavra-passe"
send_instructions: "Vais receber um email com instruções sobre como alterar a senha dentro de alguns minutos." send_instructions: "Vai receber um email com instruções sobre como alterar a sua palavra-passe dentro de alguns minutos."
updated: "A tua senha foi alterada com sucesso. Estás online." updated: "A sua palavra-passe foi alterada com sucesso. A sessão foi iniciada."
registrations: registrations:
destroyed: "Adeus! A sua tua foi cancelada com sucesso. Esperamos ver-te de novo brevemente." destroyed: "Adeus! A sua conta foi cancelada com sucesso. Esperamos vê-lo de novo brevemente."
signed_up: "Registo bem sucedido. Se assim escolheste, uma confirmação foi enviada para o teu email." signed_up: "Foi registado com sucesso. Caso tenha seleccionado essa opção, uma confirmação foi enviada para o seu endereço de email."
updated: "Actualizaste a tua conta com sucesso." updated: "Actualizou a sua conta com sucesso."
sessions: sessions:
new: new:
alpha_software: "Estás preste a utilizar um programa em fase \"alpha\"." alpha_software: "Está prestes a utilizar software em fase \"alfa\"."
bugs_and_feedback: "Tem em atenção que irão ocorrer erros. Encorajamos-te a usar o botão de Feedback na margem direita do teu navegador para reportar quaisquer anomalias! Trabalharemos o mais rapidamente possível para resolver os problemas que denunciares." bugs_and_feedback: "Tenha em conta que irão ocorrer erros. Encorajamo-lo a usar o botão de Feedback na margem direita do seu navegador para relatar quaisquer anomalias! Trabalharemos o mais rapidamente possível para resolver os problemas que relatar."
bugs_and_feedback_mobile: "Be advised, you will experience bugs. We encourage you to report any hiccups! We will work as fast as we can to resolve any issues you report." bugs_and_feedback_mobile: "Tenha em conta que irão ocorrer erros. Encorajamo-lo a relatar quaisquer anomalias! Trabalharemos tão rapidamente quanto possível para resolver quaisquer problemas que relate."
login: "Login" login: "Iniciar sessão"
modern_browsers: "apenas suporta navegadores modernos." modern_browsers: "apenas suporta navegadores modernos."
password: "Palavra-passe" password: "Palavra-passe"
remember_me: "Recordar-me" remember_me: "Lembrar-se de mim"
sign_in: "Entrar" sign_in: "Iniciar sessão"
username: "Nome de utilizador" username: "Nome de Utilizador"
signed_in: "Login com sucesso." signed_in: "A sessão foi iniciada com sucesso."
signed_out: "Logout com sucesso." signed_out: "A sessão foi terminada com sucesso."
shared: shared:
links: links:
forgot_your_password: "Esqueceste-te da tua senha?" forgot_your_password: "Esqueceu-se da sua palavra-passe?"
receive_confirmation: "Não recebeste as instruções de confirmação?" receive_confirmation: "Não recebeu as instruções de confirmação?"
receive_unlock: "Não recebeste as instruções de desbloqueio?" receive_unlock: "Não recebeu as instruções de desbloqueio?"
sign_in: "Entrar" sign_in: "Iniciar sessão"
sign_up: "Regista-te" sign_up: "Registe-se"
sign_up_closed: "Os registos abertos não estão disponíveis por agora." sign_up_closed: "Os registos abertos não estão disponíveis por agora."
mail_signup_form: mail_signup_form:
sign_up_for_an_invite: "Sign up for an invite!" sign_up_for_an_invite: "Inscreva-se para receber um convite!"
unlocks: unlocks:
new: new:
resend_unlock: "Reenviar instruções de desbloqueio" resend_unlock: "Reenviar instruções de desbloqueio"
send_instructions: "Vais receber uma mensagem sobre como desbloquear a tua conta dentro de alguns minutos." send_instructions: "Receberá um email sobre como desbloquear a sua conta dentro de alguns minutos."
unlocked: "A tua conta foi desbloqueada com sucesso. Estás online." unlocked: "A sua conta foi desbloqueada com sucesso. A sessão foi iniciada."
errors: errors:
messages: messages:
already_confirmed: "já foi confirmado" already_confirmed: "já foi confirmado"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ ro:
subject: "Instrucţiuni de confirmare" subject: "Instrucţiuni de confirmare"
you_can_confirm: "Puteţi confirma contul dvs. prin intermediul link-ul de mai jos:" you_can_confirm: "Puteţi confirma contul dvs. prin intermediul link-ul de mai jos:"
hello: "Bună %{email}!" hello: "Bună %{email}!"
invitation: invitation_instructions:
accept: "Acceptă invitaţia" accept: "Accept invitation"
ignore: "Dacă nu doreşti sa accepţi invitaţia, ignorează acest mesaj." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Contul dvs. nu va fi creat până când nu veţi accesa linkul de mai sus şi vă veţi înscrie." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Un prieten vrea să te vadă pe Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", la %{url}, puteţi să-l acceptaţi prin link-ul de mai jos" accept_at: ", la %{url}, puteţi să-l acceptaţi prin link-ul de mai jos"
has_invited_you: "%{name} v-a invitat pe Diaspora" has_invited_you: "%{name} v-a invitat pe Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ ru:
subject: "Инструкции по подтверждению" subject: "Инструкции по подтверждению"
you_can_confirm: "Вы можете подтвердить ваш аккаунт перейдя по ссылке:" you_can_confirm: "Вы можете подтвердить ваш аккаунт перейдя по ссылке:"
hello: "Привет %{email}!" hello: "Привет %{email}!"
invitation: invitation_instructions:
accept: "Принять приглашение" accept: "Accept invitation"
ignore: "Если вы не хотите принимать приглашение, проигнорируйте это письмо." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Ваш аккаунт будет создан только тогда, если вы подтвердите линк и зарегистрируетесь." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Вас пригласили присоединиться к Диаспоре!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: "вы можете принять его, нажaв на ссылку %{url}" accept_at: "вы можете принять его, нажaв на ссылку %{url}"
has_invited_you: "%{name} приглашает вас присоединиться к Диаспоре" has_invited_you: "%{name} приглашает вас присоединиться к Диаспоре"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ sk:
subject: "Informácie na potvrdenie" subject: "Informácie na potvrdenie"
you_can_confirm: "Váš účet môžete potvrdiť kliknutím na tento odkaz :" you_can_confirm: "Váš účet môžete potvrdiť kliknutím na tento odkaz :"
hello: "Zdravím %{email}!" hello: "Zdravím %{email}!"
invitation: invitation_instructions:
accept: "Potvrdiť pozvánku" accept: "Accept invitation"
ignore: "Ak nechcete potvrdiť pozvanie, tento e-mail prosím ignorujte." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Pre dokončenie registrácie kliknite prosím na odkaz uvedený nižšie." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Boli ste prizvaný k Diaspore!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", na %{url}, akceptujte kliknutím na odkaz." accept_at: ", na %{url}, akceptujte kliknutím na odkaz."
has_invited_you: "%{name} Vás prizval k Diaspore" has_invited_you: "%{name} Vás prizval k Diaspore"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ sl:
subject: "Navodila za potrditev uporabniškega računa" subject: "Navodila za potrditev uporabniškega računa"
you_can_confirm: "Vaš uporabniški račun lahko potrdite s pomočjo spodnje povezave:" you_can_confirm: "Vaš uporabniški račun lahko potrdite s pomočjo spodnje povezave:"
hello: "Pozdravljeni %{email}!" hello: "Pozdravljeni %{email}!"
invitation: invitation_instructions:
accept: "Sprejmi povabilo" accept: "Accept invitation"
ignore: "V kolikor ne želite sprejeti povabila, to e-sporočilo vzamite kot brezpredmetno." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "S pomočjo zgornje povezave ter vašo prijavo boste ustvarili nov uporabniški račun." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Bili ste povabljeni, da se pridružite v Diasporo!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", na %{url}, lahko potrdite s pomočjo spodnje povezave." accept_at: ", na %{url}, lahko potrdite s pomočjo spodnje povezave."
has_invited_you: "%{name} vas je povabil, da se pridružite v Diasporo" has_invited_you: "%{name} vas je povabil, da se pridružite v Diasporo"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ sv:
subject: "Instruktioner för att aktivera ditt konto" subject: "Instruktioner för att aktivera ditt konto"
you_can_confirm: "Klicka på länken nedan för att aktivera ditt konto:" you_can_confirm: "Klicka på länken nedan för att aktivera ditt konto:"
hello: "Hej %{email}!" hello: "Hej %{email}!"
invitation: invitation_instructions:
accept: "Acceptera inbjudan" accept: "Acceptera inbjudan"
ignore: "Om du inte vill gå med i Diaspora kan du ignorera detta mail." ignore: "Om du inte vill acceptera inbjudan, var snäll och ignorera detta email."
no_account_till: "Ditt konto kommer inte skapas förrän du klickat på knappen ovan och skapat ett nytt konto." no_account_till: "Ditt konto kommer inte att skapas förren du besöker länken ovan och registrerar dig."
subject: "Du har blivit inbjuden till Diaspora!" subject: "Du har blivit inbjuden till att gå med i Diaspora!"
inviters: inviters:
accept_at: ", du kan acceptera din inbjudan på %{url}." accept_at: ", du kan acceptera din inbjudan på %{url}."
has_invited_you: "%{name} vill att du ska gå med i Diaspora" has_invited_you: "%{name} vill att du ska gå med i Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ tr:
subject: "Doğrulama talimatları" subject: "Doğrulama talimatları"
you_can_confirm: "Hesabınızı aşağıdaki bağlantı ile doğrulayabilirsiniz:" you_can_confirm: "Hesabınızı aşağıdaki bağlantı ile doğrulayabilirsiniz:"
hello: "Merhaba %{email}!" hello: "Merhaba %{email}!"
invitation: invitation_instructions:
accept: "Daveti kabul et" accept: "Accept invitation"
ignore: "Eğer daveti kabul etmek istemiyorsanız, bu e-postayı yoksayın." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "Hesabınız siz yukarıdaki bağlantıya tıklayıp üye olmadan oluşturulmayacaktır." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "Bir arkadaşınız sizin Diaspora'ya katılmanızı istiyor!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", %{url}, aşağıdaki linke tıklayarak bunu kabul edebilirsiniz." accept_at: ", %{url}, aşağıdaki linke tıklayarak bunu kabul edebilirsiniz."
has_invited_you: "%{name} sizi Diaspora'ya katılmanız için davet etti" has_invited_you: "%{name} sizi Diaspora'ya katılmanız için davet etti"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ zh-CN:
subject: "帐号确认步骤" subject: "帐号确认步骤"
you_can_confirm: "你可以点击下面的链接确认帐号:" you_can_confirm: "你可以点击下面的链接确认帐号:"
hello: "您好, %{email}!" hello: "您好, %{email}!"
invitation: invitation_instructions:
accept: "接受邀请" accept: "Accept invitation"
ignore: "如果您不想接受邀请, 请忽略这封邮件。" ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "点击以上链接并注册后, 你才能创建帐号。" no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "您被邀请加入Diaspora" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: " %{url}, 你可以点击下面的链接接收邀请。" accept_at: " %{url}, 你可以点击下面的链接接收邀请。"
has_invited_you: "%{name} 邀请您加入Diaspora" has_invited_you: "%{name} 邀请您加入Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -28,11 +28,11 @@ zh-TW:
subject: "確認步驟" subject: "確認步驟"
you_can_confirm: "你可以使用以下連結確認帳號:" you_can_confirm: "你可以使用以下連結確認帳號:"
hello: "你好, %{email}!" hello: "你好, %{email}!"
invitation: invitation_instructions:
accept: "接受邀請" accept: "Accept invitation"
ignore: "如果你不想接受邀請, 請忽略這封信件." ignore: "If you don't want to accept the invitation, please ignore this email."
no_account_till: "在使用以上連結並登記後, 你的帳號才會建立." no_account_till: "Your account won't be created until you access the link above and sign up."
subject: "有人邀請你加入 Diaspora!" subject: "You've been invited to join Diaspora!"
inviters: inviters:
accept_at: ", 在 %{url}, 你可以透過以下連結來接受." accept_at: ", 在 %{url}, 你可以透過以下連結來接受."
has_invited_you: "%{name} 邀請你加入 Diaspora" has_invited_you: "%{name} 邀請你加入 Diaspora"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -8,7 +8,7 @@ ar:
_home: "الرئيسية" _home: "الرئيسية"
_photos: "صور" _photos: "صور"
_services: "خدمات" _services: "خدمات"
account: "حساب" account: "الحساب الشخصي"
activerecord: activerecord:
errors: errors:
models: models:
@ -36,7 +36,7 @@ ar:
all_aspects: "كل الفئات" all_aspects: "كل الفئات"
application: application:
helper: helper:
diaspora_alpha: "DIASPORA* ALPHA" diaspora_alpha: "دياسبرا* ألفا"
unknown_person: "شخص غير معروف" unknown_person: "شخص غير معروف"
video_title: video_title:
unknown: "عنوان فيديو غير محدد" unknown: "عنوان فيديو غير محدد"
@ -70,7 +70,7 @@ ar:
aspect_list_is_visible: "قائمة الفئة مرئية للأعضاء الآخرين في الفئة" aspect_list_is_visible: "قائمة الفئة مرئية للأعضاء الآخرين في الفئة"
confirm_remove_aspect: "تأكيد حذف هذه الفئة؟" confirm_remove_aspect: "تأكيد حذف هذه الفئة؟"
done: "تم بنجاح" done: "تم بنجاح"
make_aspect_list_visible: "تريدها فئة مرئية؟" make_aspect_list_visible: "فئة مرئية"
remove_aspect: "حذف هذه الفئة" remove_aspect: "حذف هذه الفئة"
rename: "إعادة تسمية" rename: "إعادة تسمية"
update: "تحديث" update: "تحديث"
@ -222,7 +222,7 @@ ar:
application: application:
have_a_problem: "واجهت مشكلة؟ اعثر على حل هنا" have_a_problem: "واجهت مشكلة؟ اعثر على حل هنا"
powered_by: "بدعم DIASPORA*" powered_by: "بدعم DIASPORA*"
public_feed: "Public Diaspora Feed for %{name}" public_feed: "فيد دياسبرا العام لـ for %{name}"
toggle: "التحول إلى الموقع الخاص بالهواتف المحمولة" toggle: "التحول إلى الموقع الخاص بالهواتف المحمولة"
whats_new: "ما الجديد؟" whats_new: "ما الجديد؟"
your_aspects: "فئاتك" your_aspects: "فئاتك"
@ -231,7 +231,7 @@ ar:
code: "شيفرة" code: "شيفرة"
login: "لُج" login: "لُج"
logout: "خروج" logout: "خروج"
profile: "الحساب الشخصي" profile: "الصفحة الشخصية"
settings: "إعدادات" settings: "إعدادات"
likes: likes:
likes: likes:
@ -267,6 +267,7 @@ ar:
and_others: "و %{number} آخرين" and_others: "و %{number} آخرين"
mark_all_as_read: "وضع الجميع كمقروء" mark_all_as_read: "وضع الجميع كمقروء"
notifications: "تنبيهات" notifications: "تنبيهات"
liked: "أعجبه منشورك:"
mentioned: "قام بذكرك في" mentioned: "قام بذكرك في"
new_request: "عرض المشاركة معك" new_request: "عرض المشاركة معك"
post: "منشور" post: "منشور"
@ -274,15 +275,19 @@ ar:
request_accepted: "وافق على عرضك للمشاركة" request_accepted: "وافق على عرضك للمشاركة"
notifier: notifier:
also_commented: also_commented:
commented: "أيضا على مشاركة %{post_author}:" commented: "علق أيضا على مشاركة %{post_author}:"
sign_in: "لُج لمشاهدته" sign_in: "لُج لمشاهدته"
subject: "%{name} أيضا علق" subject: "%{name} على أيضا على منشور %{post_author}."
comment_on_post: comment_on_post:
commented: "علق على مشاركتك" commented: "علق على مشاركتك"
sign_in: "لُج لمشاهدته\"" sign_in: "لُج لمشاهدته"
subject: "%{name} علق على مشاركتك" subject: "%{name} علق على مشاركتك"
diaspora: "البريد الآلي لدياسبرا\"" diaspora: "البريد الآلي لدياسبرا"
hello: "مرحبا %{name}!" hello: "مرحبا %{name}!"
liked:
liked: "%{name} أعجبه منشورك: "
sign_in: "لج لمشاهدته"
subject: "%{name} أعجبه منشورك"
love: "كل الود," love: "كل الود,"
manage_your_email_settings: "إدارة إعدادات بريدك الإلكتروني" manage_your_email_settings: "إدارة إعدادات بريدك الإلكتروني"
mentioned: mentioned:
@ -310,7 +315,7 @@ ar:
ok: "حسنا" ok: "حسنا"
or: "أو" or: "أو"
password: "كلمة المرور" password: "كلمة المرور"
password_confirmation: "تأكيد كلمة المرور" password_confirmation: "تأكيد كلمة المرور الجديدة"
people: people:
add_contact_small: add_contact_small:
add_contact_from_tag: "إضافة مراسل من tag" add_contact_from_tag: "إضافة مراسل من tag"
@ -335,10 +340,10 @@ ar:
thats_you: "هذا أنت" thats_you: "هذا أنت"
profile_sidebar: profile_sidebar:
bio: "سيرة" bio: "سيرة"
born: "ولد" born: "تاريخ الميلاد"
cannot_remove: "استحالة حذف %{name} من الفئة" cannot_remove: "استحالة حذف %{name} من الفئة"
edit_my_profile: "تحرير صفحتي الشخصية" edit_my_profile: "تحرير صفحتي الشخصية"
gender: "جنس" gender: "الجنس"
in_aspects: "في الفئة" in_aspects: "في الفئة"
location: "المكان" location: "المكان"
remove_contact: "حذف العضو" remove_contact: "حذف العضو"
@ -413,8 +418,8 @@ ar:
update_profile: "تحديث الصفحة الشخصية" update_profile: "تحديث الصفحة الشخصية"
your_bio: "سيرتك الشخصية" your_bio: "سيرتك الشخصية"
your_birthday: "تاريخ الميلاد" your_birthday: "تاريخ الميلاد"
your_gender: "جنسك" your_gender: "الجنس"
your_location: "مكانك" your_location: "المكان"
your_name: "إسمك" your_name: "إسمك"
your_photo: "صورتك" your_photo: "صورتك"
your_private_profile: "صفحتك الخاصة" your_private_profile: "صفحتك الخاصة"
@ -484,7 +489,7 @@ ar:
connect_to_twitter: "إتصل بتويتر" connect_to_twitter: "إتصل بتويتر"
disconnect: "فصل الإتصال" disconnect: "فصل الإتصال"
edit_services: "تعديل الخدمات" edit_services: "تعديل الخدمات"
logged_in_as: "ولوج بـ" logged_in_as: "متصل بحساب"
really_disconnect: "فصل إتصال %{service}?" really_disconnect: "فصل إتصال %{service}?"
inviter: inviter:
click_link_to_accept_invitation: "إضغط على هذا الرابط لقبول دعوتك" click_link_to_accept_invitation: "إضغط على هذا الرابط لقبول دعوتك"
@ -530,7 +535,7 @@ ar:
make_public: "عممها" make_public: "عممها"
post_a_message_to: "انشر رسالة إلى %{aspect}" post_a_message_to: "انشر رسالة إلى %{aspect}"
posting: "نشر..." posting: "نشر..."
public: "عام" public: "العالم"
publishing_to: "نشر إلى: " publishing_to: "نشر إلى: "
share: "مشاركة" share: "مشاركة"
share_with: "مشاركة مع %{aspect}" share_with: "مشاركة مع %{aspect}"
@ -540,6 +545,7 @@ ar:
stream_element: stream_element:
dislike: "لم يعجبني هذا" dislike: "لم يعجبني هذا"
like: "أعجبني هذا" like: "أعجبني هذا"
unlike: "إلغاء إعجابي"
status_messages: status_messages:
create: create:
success: "ذكرت بنجاح: %{names}" success: "ذكرت بنجاح: %{names}"
@ -568,7 +574,7 @@ ar:
destroy: "تم إغلاق الحساب بنجاح" destroy: "تم إغلاق الحساب بنجاح"
edit: edit:
also_commented: "...علق أحدهم على منشور مراسلك" also_commented: "...علق أحدهم على منشور مراسلك"
change: "Change" change: "تغيير"
change_language: "تغيير اللعة" change_language: "تغيير اللعة"
change_password: "تغيير كلمة المرور" change_password: "تغيير كلمة المرور"
close_account: "غلق الحساب" close_account: "غلق الحساب"
@ -578,6 +584,7 @@ ar:
download_xml: "تحميل xml خاصتي" download_xml: "تحميل xml خاصتي"
edit_account: "تعديل الحساب" edit_account: "تعديل الحساب"
export_data: "تصدير البيانات" export_data: "تصدير البيانات"
liked: "...أعجب أحدهم بمنشورك"
mentioned: "...تم ذكرك في رسالة" mentioned: "...تم ذكرك في رسالة"
new_password: "كلمة مرور جديدة" new_password: "كلمة مرور جديدة"
private_message: "...وصلتك راسلة خاصة" private_message: "...وصلتك راسلة خاصة"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -77,7 +77,7 @@ bg:
updating: "updating" updating: "updating"
few: "%{count} аспекта" few: "%{count} аспекта"
helper: helper:
are_you_sure: "Наистина ли желаете да бъде изтриете аспектът?" are_you_sure: "Наистина ли желаете да бъде изтрит аспектът?"
aspect_not_empty: "Аспектът не е празен" aspect_not_empty: "Аспектът не е празен"
remove: "премахване" remove: "премахване"
index: index:
@ -116,14 +116,14 @@ bg:
bookmarklet: bookmarklet:
explanation: "%{link} от където и да е, запаметявайки връзката като отметка." explanation: "%{link} от където и да е, запаметявайки връзката като отметка."
explanation_link_text: "Публикувайте в Diaspora" explanation_link_text: "Публикувайте в Diaspora"
post_something: "Публикувайте нещо в Diaspora" post_something: "Публикуване в Diaspora"
post_success: "Публикувано!" post_success: "Публикувано!"
cancel: "Отказ" cancel: "Отказ"
comments: comments:
few: "%{count} коментара" few: "%{count} коментара"
many: "%{count} коментара" many: "%{count} коментара"
new_comment: new_comment:
comment: "коментар" comment: "Kоментар"
commenting: "Коментиране..." commenting: "Коментиране..."
one: "1 коментар" one: "1 коментар"
other: "%{count} коментара" other: "%{count} коментара"
@ -139,7 +139,7 @@ bg:
one: "1 контакт" one: "1 контакт"
other: "%{count} контакта" other: "%{count} контакта"
share_with_pane: share_with_pane:
accepts: "Щом %{name} приеме ще можете да следите публикациите си в Diaspora" accepts: "Щом %{name} приеме поканата ще можете да следите публикациите си в Diaspora"
add_new_aspect: "добавяне на нов аспект" add_new_aspect: "добавяне на нов аспект"
share_with: "Започнете да споделяте с %{name}" share_with: "Започнете да споделяте с %{name}"
zero: "няма контакти" zero: "няма контакти"
@ -211,12 +211,12 @@ bg:
already_invited: "Вече е поканен" already_invited: "Вече е поканен"
aspect: "Аспект" aspect: "Аспект"
comma_seperated_plz: "Можете да въведете повече от една ел. поща като ги разделяте със запетаи." comma_seperated_plz: "Можете да въведете повече от една ел. поща като ги разделяте със запетаи."
if_they_accept_info: "ако приемат ще бъдат добавени към аспекта в който сте ги поканили." if_they_accept_info: "ако приемат поканата ще бъдат добавени към аспекта в който сте ги поканили."
invite_someone_to_join: "Поканете някой в Diaspora!" invite_someone_to_join: "Поканете някой в Diaspora!"
personal_message: "Лично съобщение" personal_message: "Лично съобщение"
resend: "Повторно изпращане" resend: "Повторно изпращане"
send_an_invitation: "Изпращане на поканата" send_an_invitation: "Изпращане на поканата"
send_invitation: "Send invitation" send_invitation: "Изпрати покана"
to: "До" to: "До"
layouts: layouts:
application: application:
@ -236,17 +236,17 @@ bg:
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "не е харесана от %{count} човека" few: "не е харесана %{count} пъти"
many: "не е харесана е от %{count} човека" many: "не е харесана %{count} пъти"
one: "не е харесана от 1 човек" one: "не е харесана %{count} път"
other: "не е харесана от %{count} човека" other: "не е харесана %{count} пъти"
zero: "всички са я харесали" zero: "всички са я харесали"
people_like_this: people_like_this:
few: "харесана от %{count} човека" few: "харесана %{count} пъти"
many: "харесана от %{count} човека" many: "харесана %{count} пъти"
one: "1 person liked this" one: "харесана %{count} път"
other: "%{count} people liked this" other: "харесана %{count} пъти"
zero: "no people liked this" zero: "не е харесана"
more: "Още" more: "Още"
next: "next" next: "next"
no_results: "Няма намерени резултати" no_results: "Няма намерени резултати"
@ -254,7 +254,7 @@ bg:
also_commented: "also commented on %{post_author}'s" also_commented: "also commented on %{post_author}'s"
also_commented_deleted: "добави коментар на вече изтрита публикация." also_commented_deleted: "добави коментар на вече изтрита публикация."
comment_on_post: "коментира ваша" comment_on_post: "коментира ваша"
deleted: "deleted" deleted: "изтрито"
helper: helper:
new_notifications: new_notifications:
few: "%{count} нови известия" few: "%{count} нови известия"
@ -267,6 +267,7 @@ bg:
and_others: "и %{number} други" and_others: "и %{number} други"
mark_all_as_read: "Маркиране на всички като прочетени" mark_all_as_read: "Маркиране на всички като прочетени"
notifications: "Известия" notifications: "Известия"
liked: "току-що хареса ваша публикация"
mentioned: "ви спомена в" mentioned: "ви спомена в"
new_request: "ви предложи да споделяте." new_request: "ви предложи да споделяте."
post: "публикация." post: "публикация."
@ -283,6 +284,10 @@ bg:
subject: "%{name} коментира ваша публикация." subject: "%{name} коментира ваша публикация."
diaspora: "the diaspora email robot" diaspora: "the diaspora email robot"
hello: "Здравейте %{name}!" hello: "Здравейте %{name}!"
liked:
liked: "току-що %{name} хареса вашата публикация:"
sign_in: "Sign to view it"
subject: "току-що %{name} хареса ваша публикация"
love: "love," love: "love,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -341,12 +346,12 @@ bg:
gender: "пол" gender: "пол"
in_aspects: "in aspects" in_aspects: "in aspects"
location: "местоположние" location: "местоположние"
remove_contact: "премахване на контакт" remove_contact: "премахване на контакта"
remove_from: "Премахване на %{name} от %{aspect}?" remove_from: "Премахване на %{name} от %{aspect}?"
show: show:
add_some: "add some" add_some: "add some"
does_not_exist: "Person does not exist!" does_not_exist: "Лицето не съществува!"
edit: "edit" edit: "редактиране"
incoming_request: "%{name} желае да споделя с вас" incoming_request: "%{name} желае да споделя с вас"
mention: "Mention" mention: "Mention"
message: "Съобщение" message: "Съобщение"
@ -452,9 +457,9 @@ bg:
success: "Сега споделяте." success: "Сега споделяте."
helper: helper:
new_requests: new_requests:
few: "%{count} new requests!" few: "%{count} нови покани!"
many: "%{count} new requests!" many: "%{count} нови покани!"
one: "new request!" one: "нова покана!"
other: "%{count} нови покани!" other: "%{count} нови покани!"
zero: "няма нови покани" zero: "няма нови покани"
manage_aspect_contacts: manage_aspect_contacts:
@ -478,19 +483,19 @@ bg:
other: "%{count} приятеля" other: "%{count} приятеля"
zero: "няма приятели" zero: "няма приятели"
invite_your_friends_from: "Поканете приятелите си от %{service}" invite_your_friends_from: "Поканете приятелите си от %{service}"
not_connected: "not connected" not_connected: "не съществува връзка"
index: index:
connect_to_facebook: "Свързване с facebook" connect_to_facebook: "Свързване с facebook"
connect_to_twitter: "Свързване с twitter" connect_to_twitter: "Свързване с twitter"
disconnect: "изключване" disconnect: "изключване"
edit_services: "Редактиране на услугите" edit_services: "Редактиране на услугите"
logged_in_as: "вписани сте като" logged_in_as: "вписани сте като"
really_disconnect: "изключване на свързаността с %{service}?" really_disconnect: "Наистина ли желаете свързаността с %{service} да бъде изключена?"
inviter: inviter:
click_link_to_accept_invitation: "Click this link to accept your invitation" click_link_to_accept_invitation: "Click this link to accept your invitation"
join_me_on_diaspora: "Join me on DIASPORA*" join_me_on_diaspora: "Join me on DIASPORA*"
remote_friend: remote_friend:
invite: "invite" invite: "покани"
resend: "resend" resend: "resend"
settings: "Настройки" settings: "Настройки"
shared: shared:
@ -509,8 +514,8 @@ bg:
invitations: invitations:
by_email: "по ел. поща" by_email: "по ел. поща"
dont_have_now: "За момента не разполагате с покани, но скоро ще имате!" dont_have_now: "За момента не разполагате с покани, но скоро ще имате!"
from_facebook: "От Facebook" from_facebook: "от Facebook"
invitations_left: "(остават още %{count})" invitations_left: "(остават още %{count} покани)"
invite_someone: "Поканете някого" invite_someone: "Поканете някого"
invite_your_friends: "Намерете приятелите си" invite_your_friends: "Намерете приятелите си"
invites: "Покани" invites: "Покани"
@ -540,6 +545,7 @@ bg:
stream_element: stream_element:
dislike: "Не ми харесва" dislike: "Не ми харесва"
like: "Харесва ми" like: "Харесва ми"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ bg:
download_xml: "данните ви (XML формат)" download_xml: "данните ви (XML формат)"
edit_account: "Редактиране на акаунта" edit_account: "Редактиране на акаунта"
export_data: "Сваляне на..." export_data: "Сваляне на..."
liked: "...някой хареса ваша публикация?"
mentioned: "...бъдете споменат в публикация?" mentioned: "...бъдете споменат в публикация?"
new_password: "Нова парола" new_password: "Нова парола"
private_message: "...получите лично съобщение?" private_message: "...получите лично съобщение?"
@ -590,10 +597,10 @@ bg:
connect_on_diaspora: "Connect on Diaspora" connect_on_diaspora: "Connect on Diaspora"
connect_services: "Свързване към други услуги" connect_services: "Свързване към други услуги"
could_not_find_anyone: "Could not find any friends on Diaspora*. Use the friend finder to invite them." could_not_find_anyone: "Could not find any friends on Diaspora*. Use the friend finder to invite them."
edit_profile: "Edit your profile" edit_profile: "Редактирайте профилът си"
finished: "Готово!" finished: "Готово!"
save_and_continue: "Запиши и продължи" save_and_continue: "Запиши и продължи"
signup_steps: "Finish your sign up by completing these three steps:" signup_steps: "Приключете регистрирането като извършите следните 3 стъпки:"
skip: "прескачане на страницата" skip: "прескачане на страницата"
step_2: step_2:
find_your_friends_on_diaspora: "Желаете ли да намерите приятелите си от Facebook в Diaspora?" find_your_friends_on_diaspora: "Желаете ли да намерите приятелите си от Facebook в Diaspora?"
@ -608,7 +615,7 @@ bg:
email_notifications_changed: "Адресът за известяване е променен" email_notifications_changed: "Адресът за известяване е променен"
language_changed: "Езикът е сменен" language_changed: "Езикът е сменен"
language_not_changed: "Езикът не бе променен" language_not_changed: "Езикът не бе променен"
password_changed: "Паролата е променена" password_changed: "Паролата е променена. Можете да се впишете с новата парола."
password_not_changed: "Паролата не бе променена" password_not_changed: "Паролата не бе променена"
webfinger: webfinger:
fetch_failed: "failed to fetch webfinger profile for %{profile_url}" fetch_failed: "failed to fetch webfinger profile for %{profile_url}"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ br:
and_others: "ha %{number} reoù all" and_others: "ha %{number} reoù all"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "en deus meneget ac'hanoc'h e-barzh ur skrid" mentioned: "en deus meneget ac'hanoc'h e-barzh ur skrid"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ br:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "the diaspora email robot" diaspora: "the diaspora email robot"
hello: "Hello %{name}!" hello: "Hello %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "love," love: "love,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ br:
stream_element: stream_element:
dislike: "Ne blij ket din" dislike: "Ne blij ket din"
like: "Plij' ra din" like: "Plij' ra din"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ br:
download_xml: "download my xml" download_xml: "download my xml"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Export Data" export_data: "Export Data"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Ger-Kuzh Nevez" new_password: "Ger-Kuzh Nevez"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -123,7 +123,7 @@ cs:
few: "%{count} komentáře" few: "%{count} komentáře"
many: "%{count} komentářů" many: "%{count} komentářů"
new_comment: new_comment:
comment: "komentář" comment: "Komentář"
commenting: "Komentování..." commenting: "Komentování..."
one: "1 komentář" one: "1 komentář"
other: "%{count} komentářů" other: "%{count} komentářů"
@ -267,6 +267,7 @@ cs:
and_others: "a %{number} dalších" and_others: "a %{number} dalších"
mark_all_as_read: "Označit vše jako přečtené" mark_all_as_read: "Označit vše jako přečtené"
notifications: "Oznámení" notifications: "Oznámení"
liked: "si právě oblíbil váš příspěvek"
mentioned: "vás zmínil v příspěvku" mentioned: "vás zmínil v příspěvku"
new_request: "nabídnul vám sdílení." new_request: "nabídnul vám sdílení."
post: "zpráva" post: "zpráva"
@ -283,6 +284,10 @@ cs:
subject: "%{name} komentoval váš příspěvek." subject: "%{name} komentoval váš příspěvek."
diaspora: "diaspora email robot" diaspora: "diaspora email robot"
hello: "Vítej %{name}!" hello: "Vítej %{name}!"
liked:
liked: "%{name} si právě oblíbil váš příspěvek: "
sign_in: "Přihlaste se pro zobrazení"
subject: "%{name} si právě oblíbil váš příspěvek"
love: "s láskou," love: "s láskou,"
manage_your_email_settings: "spravovat nastavení emailu" manage_your_email_settings: "spravovat nastavení emailu"
mentioned: mentioned:
@ -540,6 +545,7 @@ cs:
stream_element: stream_element:
dislike: "to se mi nelíbí" dislike: "to se mi nelíbí"
like: "to se mi líbí" like: "to se mi líbí"
unlike: "to se mi už nelíbí"
status_messages: status_messages:
create: create:
success: "Úspěšně zmíněno: %{names}" success: "Úspěšně zmíněno: %{names}"
@ -578,6 +584,7 @@ cs:
download_xml: "stáhnout moje xml" download_xml: "stáhnout moje xml"
edit_account: "Upravit účet" edit_account: "Upravit účet"
export_data: "Exportovat data" export_data: "Exportovat data"
liked: "...někomu se líbí váš příspěvek?"
mentioned: "...jste zmíněn v příspěvku?" mentioned: "...jste zmíněn v příspěvku?"
new_password: "Nové heslo" new_password: "Nové heslo"
private_message: "...obdržíte soukromou zprávu?" private_message: "...obdržíte soukromou zprávu?"
@ -608,7 +615,7 @@ cs:
email_notifications_changed: "Oznámení emailem změněno" email_notifications_changed: "Oznámení emailem změněno"
language_changed: "Jazyk změněn" language_changed: "Jazyk změněn"
language_not_changed: "Změna jazyka selhala" language_not_changed: "Změna jazyka selhala"
password_changed: "Heslo změněno" password_changed: "Heslo bylo změněno. Nyní se můžete přihlásit s novým heslem."
password_not_changed: "Změna hesla selhala" password_not_changed: "Změna hesla selhala"
webfinger: webfinger:
fetch_failed: "Selhalo načtení webfinger profilu pro %{profile_url}" fetch_failed: "Selhalo načtení webfinger profilu pro %{profile_url}"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ cy:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ cy:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "the diaspora email robot" diaspora: "the diaspora email robot"
hello: "Hello %{name}!" hello: "Hello %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "love," love: "love,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ cy:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ cy:
download_xml: "download my xml" download_xml: "download my xml"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Export Data" export_data: "Export Data"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "New Password" new_password: "New Password"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ da:
and_others: "og %{number} andre" and_others: "og %{number} andre"
mark_all_as_read: "Marker alle som læst" mark_all_as_read: "Marker alle som læst"
notifications: "Notifikationer" notifications: "Notifikationer"
liked: "has just liked your post"
mentioned: "har omtalt dig i deres" mentioned: "har omtalt dig i deres"
new_request: "tilbød at dele med dig." new_request: "tilbød at dele med dig."
post: "indlæg" post: "indlæg"
@ -283,6 +284,10 @@ da:
subject: "%{name} har kommenteret på din post!" subject: "%{name} har kommenteret på din post!"
diaspora: "Diaspora e-mail robotten" diaspora: "Diaspora e-mail robotten"
hello: "Hej %{name}!" hello: "Hej %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "Hilsen," love: "Hilsen,"
manage_your_email_settings: "rediger dine email indstillinger" manage_your_email_settings: "rediger dine email indstillinger"
mentioned: mentioned:
@ -540,6 +545,7 @@ da:
stream_element: stream_element:
dislike: "Jeg kan ikke lide det" dislike: "Jeg kan ikke lide det"
like: "Jeg kan lide det" like: "Jeg kan lide det"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "%{names} nævnet med succes" success: "%{names} nævnet med succes"
@ -578,6 +584,7 @@ da:
download_xml: "Download min XML" download_xml: "Download min XML"
edit_account: "Rediger konto" edit_account: "Rediger konto"
export_data: "Exportér data" export_data: "Exportér data"
liked: "...someone likes your post?"
mentioned: "...du er nævnt i en post?" mentioned: "...du er nævnt i en post?"
new_password: "Ny adgangskode" new_password: "Ny adgangskode"
private_message: "...du har modtaget en besked?" private_message: "...du har modtaget en besked?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ de:
and_others: "und %{number} andere" and_others: "und %{number} andere"
mark_all_as_read: "Markiere alle als gelesen" mark_all_as_read: "Markiere alle als gelesen"
notifications: "Benachrichtigungen" notifications: "Benachrichtigungen"
liked: "gefällt dein Beitrag"
mentioned: "hat dich erwähnt in einem" mentioned: "hat dich erwähnt in einem"
new_request: "hat angeboten mit dir zu teilen." new_request: "hat angeboten mit dir zu teilen."
post: "Beitrag" post: "Beitrag"
@ -283,6 +284,10 @@ de:
subject: "%{name} hat deinen Beitrag kommentiert." subject: "%{name} hat deinen Beitrag kommentiert."
diaspora: "der Diaspora E-Mail-Roboter" diaspora: "der Diaspora E-Mail-Roboter"
hello: "Hallo %{name}!" hello: "Hallo %{name}!"
liked:
liked: "%{name} gefällt dein Beitrag: "
sign_in: "Melde dich an um es zu sehen"
subject: "%{name} gefällt dein Beitrag"
love: "Gruß," love: "Gruß,"
manage_your_email_settings: "E-Mail Einstellungen" manage_your_email_settings: "E-Mail Einstellungen"
mentioned: mentioned:
@ -540,6 +545,7 @@ de:
stream_element: stream_element:
dislike: "Gefällt mir nicht" dislike: "Gefällt mir nicht"
like: "Gefällt mir" like: "Gefällt mir"
unlike: "Gefällt mir nicht mehr"
status_messages: status_messages:
create: create:
success: "Erfolgreich erwähnt: %{names}" success: "Erfolgreich erwähnt: %{names}"
@ -578,6 +584,7 @@ de:
download_xml: "Daten herunterladen (XML)" download_xml: "Daten herunterladen (XML)"
edit_account: "Konto bearbeiten" edit_account: "Konto bearbeiten"
export_data: "Daten exportieren" export_data: "Daten exportieren"
liked: "... wenn jemandem dein Beitrag gefällt?"
mentioned: "… du in einem Beitrag erwähnt wirst?" mentioned: "… du in einem Beitrag erwähnt wirst?"
new_password: "Neues Passwort" new_password: "Neues Passwort"
private_message: "… du eine private Nachricht erhältst?" private_message: "… du eine private Nachricht erhältst?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -246,7 +246,7 @@ el:
many: "Αρέσει σε %{count} άτομα" many: "Αρέσει σε %{count} άτομα"
one: "Αρέσει σε 1 άτομο" one: "Αρέσει σε 1 άτομο"
other: "Αρέσει σε %{count} άτομα" other: "Αρέσει σε %{count} άτομα"
zero: "σε κανέναν δεν αρέσει" zero: "δεν αρέσει σε κανέναν"
more: "Περισσότερα" more: "Περισσότερα"
next: "επόμενο" next: "επόμενο"
no_results: "Δεν βρέθηκαν αποτελέσματα" no_results: "Δεν βρέθηκαν αποτελέσματα"
@ -267,6 +267,7 @@ el:
and_others: "και %{number} άλλοι" and_others: "και %{number} άλλοι"
mark_all_as_read: "Σήμανση όλων ως διαβασμένα" mark_all_as_read: "Σήμανση όλων ως διαβασμένα"
notifications: "Ειδοποιήσεις" notifications: "Ειδοποιήσεις"
liked: "μόλις του/της άρεσε η δημοσίευση σας"
mentioned: "σας ανέφερε σε" mentioned: "σας ανέφερε σε"
new_request: "προσφέρθηκε να μοιραστεί μαζί σας." new_request: "προσφέρθηκε να μοιραστεί μαζί σας."
post: "δημοσίευση." post: "δημοσίευση."
@ -283,6 +284,10 @@ el:
subject: "Ο χρήστης %{name} σχολίασε τη δημοσίευση σας." subject: "Ο χρήστης %{name} σχολίασε τη δημοσίευση σας."
diaspora: "το ρομποτάκι για τα email του δικτύου Diaspora.." diaspora: "το ρομποτάκι για τα email του δικτύου Diaspora.."
hello: "Γειά σου %{name}!" hello: "Γειά σου %{name}!"
liked:
liked: "στον %{name} αρέσει η δημοσίευση σας: "
sign_in: "Sign to view it"
subject: "στον %{name} αρέσει η δημοσίευση σας"
love: "Με αγάπη," love: "Με αγάπη,"
manage_your_email_settings: "διαχείριση των ρυθμίσεων ηλεκτρονικού ταχυδρομείου" manage_your_email_settings: "διαχείριση των ρυθμίσεων ηλεκτρονικού ταχυδρομείου"
mentioned: mentioned:
@ -540,6 +545,7 @@ el:
stream_element: stream_element:
dislike: "Δεν μ' αρέσει" dislike: "Δεν μ' αρέσει"
like: "Μου αρέσει" like: "Μου αρέσει"
unlike: "Δεν μου αρέσει"
status_messages: status_messages:
create: create:
success: "Αναφέρθηκαν επιτυχώς: %{names}" success: "Αναφέρθηκαν επιτυχώς: %{names}"
@ -578,6 +584,7 @@ el:
download_xml: "κατέβασε το xml μου" download_xml: "κατέβασε το xml μου"
edit_account: "Επεξεργασία λογαριασμού" edit_account: "Επεξεργασία λογαριασμού"
export_data: "Εξαγωγή Δεδομένων" export_data: "Εξαγωγή Δεδομένων"
liked: "...σε κάποιον αρέσει η δημοσίευση σας;"
mentioned: "...επισημανθήκατε σε μία φωτογραφία?" mentioned: "...επισημανθήκατε σε μία φωτογραφία?"
new_password: "Νέος κωδικός πρόσβασης" new_password: "Νέος κωδικός πρόσβασης"
private_message: "...μόλις λάβατε μία προσωπική ειδοποίηση?" private_message: "...μόλις λάβατε μία προσωπική ειδοποίηση?"

View file

@ -644,7 +644,7 @@ en:
find_your_friends_on_diaspora: "Would you like to find your Facebook friends on Diaspora?" find_your_friends_on_diaspora: "Would you like to find your Facebook friends on Diaspora?"
skip: "Skip" skip: "Skip"
update: update:
password_changed: "Password Changed" password_changed: "Password Changed. You can now log in with your new password."
password_not_changed: "Password Change Failed" password_not_changed: "Password Change Failed"
language_changed: "Language Changed" language_changed: "Language Changed"
language_not_changed: "Language Change Failed" language_not_changed: "Language Change Failed"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ en_shaw:
and_others: "𐑯 %{number} 𐑳𐑞𐑼𐑟" and_others: "𐑯 %{number} 𐑳𐑞𐑼𐑟"
mark_all_as_read: "𐑥𐑸𐑒 𐑷𐑤 𐑨𐑟 𐑮𐑧𐑛" mark_all_as_read: "𐑥𐑸𐑒 𐑷𐑤 𐑨𐑟 𐑮𐑧𐑛"
notifications: "𐑯𐑴𐑑𐑦𐑓𐑦𐑒𐑱𐑖𐑩𐑯𐑟" notifications: "𐑯𐑴𐑑𐑦𐑓𐑦𐑒𐑱𐑖𐑩𐑯𐑟"
liked: "has just liked your post"
mentioned: "𐑣𐑨𐑟 𐑥𐑧𐑯𐑖𐑩𐑯𐑛 𐑿 𐑦𐑯 𐑩" mentioned: "𐑣𐑨𐑟 𐑥𐑧𐑯𐑖𐑩𐑯𐑛 𐑿 𐑦𐑯 𐑩"
new_request: "𐑪𐑓𐑼𐑛 𐑑 𐑖𐑺 𐑢𐑦𐑞 𐑿." new_request: "𐑪𐑓𐑼𐑛 𐑑 𐑖𐑺 𐑢𐑦𐑞 𐑿."
post: "𐑐𐑴𐑕𐑑" post: "𐑐𐑴𐑕𐑑"
@ -283,6 +284,10 @@ en_shaw:
subject: "%{name} 𐑣𐑨𐑟 𐑒𐑪𐑥𐑩𐑯𐑑𐑩𐑛 𐑪𐑯 𐑿𐑼 𐑐𐑴𐑕𐑑." subject: "%{name} 𐑣𐑨𐑟 𐑒𐑪𐑥𐑩𐑯𐑑𐑩𐑛 𐑪𐑯 𐑿𐑼 𐑐𐑴𐑕𐑑."
diaspora: "𐑞 ·𐑛𐑦𐑨𐑕𐑐𐑹𐑩 𐑦-𐑥𐑱𐑤 𐑮𐑴𐑚𐑪𐑑" diaspora: "𐑞 ·𐑛𐑦𐑨𐑕𐑐𐑹𐑩 𐑦-𐑥𐑱𐑤 𐑮𐑴𐑚𐑪𐑑"
hello: "𐑣𐑧𐑤𐑴 %{name}!" hello: "𐑣𐑧𐑤𐑴 %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "𐑤𐑳𐑝," love: "𐑤𐑳𐑝,"
manage_your_email_settings: "𐑥𐑨𐑯𐑩𐑡 𐑿𐑼 𐑦-𐑥𐑱𐑤 𐑕𐑧𐑑𐑦𐑙𐑟" manage_your_email_settings: "𐑥𐑨𐑯𐑩𐑡 𐑿𐑼 𐑦-𐑥𐑱𐑤 𐑕𐑧𐑑𐑦𐑙𐑟"
mentioned: mentioned:
@ -540,6 +545,7 @@ en_shaw:
stream_element: stream_element:
dislike: "𐑲 𐑛𐑦𐑕𐑤𐑲𐑒 𐑞𐑦𐑕" dislike: "𐑲 𐑛𐑦𐑕𐑤𐑲𐑒 𐑞𐑦𐑕"
like: "𐑲 𐑤𐑲𐑒 𐑞𐑦𐑕" like: "𐑲 𐑤𐑲𐑒 𐑞𐑦𐑕"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "𐑕𐑩𐑒𐑕𐑧𐑕𐑓𐑫𐑤𐑦 𐑥𐑧𐑯𐑖𐑩𐑯𐑛: %{names}" success: "𐑕𐑩𐑒𐑕𐑧𐑕𐑓𐑫𐑤𐑦 𐑥𐑧𐑯𐑖𐑩𐑯𐑛: %{names}"
@ -578,6 +584,7 @@ en_shaw:
download_xml: "𐑛𐑬𐑯𐑤𐑴𐑛 𐑥𐑲 𐑧.𐑥.𐑤." download_xml: "𐑛𐑬𐑯𐑤𐑴𐑛 𐑥𐑲 𐑧.𐑥.𐑤."
edit_account: "𐑧𐑛𐑦𐑑 𐑩𐑒𐑬𐑯𐑑" edit_account: "𐑧𐑛𐑦𐑑 𐑩𐑒𐑬𐑯𐑑"
export_data: "𐑧𐑒𐑕𐑐𐑹𐑑 𐑛𐑱𐑑𐑩" export_data: "𐑧𐑒𐑕𐑐𐑹𐑑 𐑛𐑱𐑑𐑩"
liked: "...someone likes your post?"
mentioned: "...𐑿 𐑸 𐑥𐑧𐑯𐑖𐑩𐑯𐑛 𐑦𐑯 𐑩 𐑐𐑴𐑕𐑑?" mentioned: "...𐑿 𐑸 𐑥𐑧𐑯𐑖𐑩𐑯𐑛 𐑦𐑯 𐑩 𐑐𐑴𐑕𐑑?"
new_password: "𐑯𐑿 𐑐𐑨𐑕𐑢𐑼𐑛" new_password: "𐑯𐑿 𐑐𐑨𐑕𐑢𐑼𐑛"
private_message: "...𐑿 𐑮𐑦𐑕𐑰𐑝 𐑩 𐑐𐑮𐑲𐑝𐑩𐑑 𐑥𐑧𐑕𐑩𐑡?" private_message: "...𐑿 𐑮𐑦𐑕𐑰𐑝 𐑩 𐑐𐑮𐑲𐑝𐑩𐑑 𐑥𐑧𐑕𐑩𐑡?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ eo:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ eo:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "the diaspora email robot" diaspora: "the diaspora email robot"
hello: "Saluton %{name}!" hello: "Saluton %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "love," love: "love,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ eo:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ eo:
download_xml: "download my xml" download_xml: "download my xml"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Export Data" export_data: "Export Data"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "New Password" new_password: "New Password"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -123,7 +123,7 @@ es-CL:
few: "%{count} comentarios" few: "%{count} comentarios"
many: "%{count} comentarios" many: "%{count} comentarios"
new_comment: new_comment:
comment: "Comentario" comment: "Comentar"
commenting: "Comentando..." commenting: "Comentando..."
one: "1 comentario" one: "1 comentario"
other: "%{count} comentarios" other: "%{count} comentarios"
@ -267,6 +267,7 @@ es-CL:
and_others: "y otros %{number}" and_others: "y otros %{number}"
mark_all_as_read: "Marcar todo como leido" mark_all_as_read: "Marcar todo como leido"
notifications: "Notificaciones" notifications: "Notificaciones"
liked: "le gustó tu post"
mentioned: "te mencionó en un" mentioned: "te mencionó en un"
new_request: "quiere compartir contigo." new_request: "quiere compartir contigo."
post: "post." post: "post."
@ -283,6 +284,10 @@ es-CL:
subject: "%{name} comentó en tu post." subject: "%{name} comentó en tu post."
diaspora: "correo robot de diaspora" diaspora: "correo robot de diaspora"
hello: "¡Hola %{name}!" hello: "¡Hola %{name}!"
liked:
liked: "a %{name} le gustó tu post: "
sign_in: "Entra para verlo"
subject: "a %{name} le gustó tu post"
love: "cariño," love: "cariño,"
manage_your_email_settings: "maneja tus configuraciones de email" manage_your_email_settings: "maneja tus configuraciones de email"
mentioned: mentioned:
@ -540,6 +545,7 @@ es-CL:
stream_element: stream_element:
dislike: "No me gusta esto" dislike: "No me gusta esto"
like: "Me gusta esto" like: "Me gusta esto"
unlike: "No me gusta"
status_messages: status_messages:
create: create:
success: "Se ha mencionado con éxito a: %{names}" success: "Se ha mencionado con éxito a: %{names}"
@ -578,6 +584,7 @@ es-CL:
download_xml: "descargar mi xml" download_xml: "descargar mi xml"
edit_account: "Editar cuenta" edit_account: "Editar cuenta"
export_data: "Exportar Datos" export_data: "Exportar Datos"
liked: "...a alguien le gusta tu post?"
mentioned: "...te mencionan en un post?" mentioned: "...te mencionan en un post?"
new_password: "Nueva Contraseña" new_password: "Nueva Contraseña"
private_message: "...recibes un mensaje privado?" private_message: "...recibes un mensaje privado?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -236,17 +236,17 @@ es:
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "%{count} personas no les gusta esto" few: "A %{count} no les gusta"
many: "%{count} personas no les gusta esto" many: "A %{count} no les gusta"
one: "1 persona no le gusta esto" one: "A 1 no le gusta"
other: "%{count} personas no les gusta esto" other: "A %{count} no les gusta"
zero: "a nadie le disgusta esto" zero: "A nadie le disgusta"
people_like_this: people_like_this:
few: "%{count} personas les gusta eso" few: "A %{count} les gusta"
many: "%{count} personas les gusta esto" many: "A %{count} les gusta"
one: "1 persona le gusta esto" one: "A 1 le gusta"
other: "%{count} personas les gusta esto" other: "A %{count} les gusta"
zero: "a nadie le gusta esto" zero: "A nadie le gusta"
more: "Más" more: "Más"
next: "Siguiente" next: "Siguiente"
no_results: "No hay resultados" no_results: "No hay resultados"
@ -267,6 +267,7 @@ es:
and_others: "y otros %{number}" and_others: "y otros %{number}"
mark_all_as_read: "Marcar todo como leído" mark_all_as_read: "Marcar todo como leído"
notifications: "Notificaciones" notifications: "Notificaciones"
liked: "le gustó tu publicación"
mentioned: "te mencionó en una" mentioned: "te mencionó en una"
new_request: "quisiera compartir contigo." new_request: "quisiera compartir contigo."
post: "publicación." post: "publicación."
@ -283,6 +284,10 @@ es:
subject: "%{name} escribió en tu publicación." subject: "%{name} escribió en tu publicación."
diaspora: "Email robot de Diaspora*" diaspora: "Email robot de Diaspora*"
hello: "¡Hola %{name}!" hello: "¡Hola %{name}!"
liked:
liked: "a %{name} le gustó tu publicación:"
sign_in: "Conéctate para poder verlo"
subject: "a %{name} le gustó tu publicación"
love: "¡Qué pasa!" love: "¡Qué pasa!"
manage_your_email_settings: "configura tu correo" manage_your_email_settings: "configura tu correo"
mentioned: mentioned:
@ -538,8 +543,9 @@ es:
reshare: reshare:
reshare: "Publicar en..." reshare: "Publicar en..."
stream_element: stream_element:
dislike: "No me gusta esto" dislike: "No me gusta"
like: "Me gusta esto" like: "Me gusta"
unlike: "No me gusta"
status_messages: status_messages:
create: create:
success: "Se ha mencionado con éxito a: %{names}" success: "Se ha mencionado con éxito a: %{names}"
@ -578,6 +584,7 @@ es:
download_xml: "descargar mi xml" download_xml: "descargar mi xml"
edit_account: "Editar cuenta" edit_account: "Editar cuenta"
export_data: "Exportar datos" export_data: "Exportar datos"
liked: "...a alguien le gusta tu publicación?"
mentioned: "...eres mencionado en una publicación?" mentioned: "...eres mencionado en una publicación?"
new_password: "Nueva contraseña" new_password: "Nueva contraseña"
private_message: "...recibes un mensaje privado?" private_message: "...recibes un mensaje privado?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -123,7 +123,7 @@ eu:
few: "%{count} iruzkin" few: "%{count} iruzkin"
many: "%{count} iruzkin" many: "%{count} iruzkin"
new_comment: new_comment:
comment: "iruzkindu" comment: "Iruzkindu"
commenting: "Iruzkintzen..." commenting: "Iruzkintzen..."
one: "iruzkin 1" one: "iruzkin 1"
other: "%{count} iruzkin" other: "%{count} iruzkin"
@ -231,22 +231,22 @@ eu:
code: "kodea" code: "kodea"
login: "sartu" login: "sartu"
logout: "irten" logout: "irten"
profile: "Profila" profile: "profila"
settings: "Lehentasunak" settings: "lehentasunak"
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "%{count} pertsonek ez dute hau gustuko" few: "%{count} pertsonek ez dute hau gustuko"
many: "%{count} pertsonek ez dute hau gustuko" many: "%{count} pertsonek ez dute hau gustuko"
one: "pertsona batek ez du hau gustuko" one: "%{count}ek ez du hau gustuko"
other: "%{count} pertsonek ez dute hau gustuko" other: "%{count} pertsonek ez dute hau gustuko"
zero: "gusoko ez duen pertsonarik ez dago" zero: "gustoko ez duen pertsonarik ez"
people_like_this: people_like_this:
few: "%{count} pertsonek gustoko dute hau" few: "%{count} pertsonek gustoko dute hau"
many: "%{count} pertsonek gustoko dute hau" many: "%{count} pertsonek gustoko dute hau"
one: "pertsona batek gustoko du hau" one: "%{count}ek du gustoko"
other: "%{count} pertsonek gustoko dute hau" other: "%{count} pertsonek gustoko dute hau"
zero: "hau ez du inork gustoko" zero: "oraindik ez du inork gustoko"
more: "Gehiago" more: "Gehiago"
next: "hurrengoa" next: "hurrengoa"
no_results: "Ez Da Ezer Aurkitu" no_results: "Ez Da Ezer Aurkitu"
@ -267,6 +267,7 @@ eu:
and_others: "eta beste %{number}(e)k" and_others: "eta beste %{number}(e)k"
mark_all_as_read: "Guztiak irakurrita" mark_all_as_read: "Guztiak irakurrita"
notifications: "Jakinarazpenak" notifications: "Jakinarazpenak"
liked: "(e)k zure mezua gustoko du"
mentioned: "(e)k zu aipatu zaitu hemen:" mentioned: "(e)k zu aipatu zaitu hemen:"
new_request: "(e)k zurekin partekatu nahi du." new_request: "(e)k zurekin partekatu nahi du."
post: "mezua." post: "mezua."
@ -283,6 +284,10 @@ eu:
subject: "%{name}(e)k zure mezua iruzkindu du." subject: "%{name}(e)k zure mezua iruzkindu du."
diaspora: "diasporaren e-posta robota" diaspora: "diasporaren e-posta robota"
hello: "Kaixo, %{name}!" hello: "Kaixo, %{name}!"
liked:
liked: "%{name}(e)k zure mezua gustoko du:"
sign_in: "Sartu zaitez ikusteko"
subject: "%{name}(e)k zure mezua atsegin du"
love: "ikusi arte," love: "ikusi arte,"
manage_your_email_settings: "kudeatu zure e-posta ezarpenak" manage_your_email_settings: "kudeatu zure e-posta ezarpenak"
mentioned: mentioned:
@ -540,6 +545,7 @@ eu:
stream_element: stream_element:
dislike: "Ez dut gustoko" dislike: "Ez dut gustoko"
like: "Gustoko dut" like: "Gustoko dut"
unlike: "Ez dut gustoko"
status_messages: status_messages:
create: create:
success: "Arrakastaz aipatu dituzu: %{names}" success: "Arrakastaz aipatu dituzu: %{names}"
@ -578,6 +584,7 @@ eu:
download_xml: "nire xml jaitsi" download_xml: "nire xml jaitsi"
edit_account: "Kontua aldatu" edit_account: "Kontua aldatu"
export_data: "Datuak esportatu" export_data: "Datuak esportatu"
liked: "...norbaitek zure mezu bat gustoko duenean?"
mentioned: "...mezu batean aipatzen zaituztenean?" mentioned: "...mezu batean aipatzen zaituztenean?"
new_password: "Pasahitz Berria" new_password: "Pasahitz Berria"
private_message: "...mezu pribatu bat jasotzen duzunean?" private_message: "...mezu pribatu bat jasotzen duzunean?"
@ -608,7 +615,7 @@ eu:
email_notifications_changed: "E-posta janirazpenak aldatu dituzu" email_notifications_changed: "E-posta janirazpenak aldatu dituzu"
language_changed: "Hizkuntza Aldatua" language_changed: "Hizkuntza Aldatua"
language_not_changed: "Hizkuntza aldaketak huts egin du" language_not_changed: "Hizkuntza aldaketak huts egin du"
password_changed: "Pasahitza aldatu duzu" password_changed: "Pasahitza aldatu duzu. Orain zure pasahitz berria erabiliz sar zaitezke."
password_not_changed: "Pasahitz Aldaketak Huts egin du" password_not_changed: "Pasahitz Aldaketak Huts egin du"
webfinger: webfinger:
fetch_failed: "ezin izan da webfinger profila hartu %{profile_url} webgunetik" fetch_failed: "ezin izan da webfinger profila hartu %{profile_url} webgunetik"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -236,17 +236,17 @@ fi:
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "%{count} people disliked this" few: "%{count} ei tykkää"
many: "%{count} people disliked this" many: "%{count} ei tykkää"
one: "1 person disliked this" one: "%{count} ei tykkää"
other: "%{count} people disliked this" other: "%{count} people disliked this"
zero: "no people disliked this" zero: "no people disliked this"
people_like_this: people_like_this:
few: "%{count} people liked this" few: "%{count} tykkää"
many: "%{count} ihmistä tykkää tästä" many: "%{count} tykkää"
one: "1 person liked this" one: "%{count} tykkää"
other: "%{count} people liked this" other: "%{count} tykkää"
zero: "no people liked this" zero: "ei tykkäyksiä"
more: "Lisää" more: "Lisää"
next: "seuraava" next: "seuraava"
no_results: "Tuloksia ei löytynyt" no_results: "Tuloksia ei löytynyt"
@ -263,10 +263,11 @@ fi:
other: "%{count} uutta ilmoitusta" other: "%{count} uutta ilmoitusta"
zero: "ei uusia ilmoituksia" zero: "ei uusia ilmoituksia"
index: index:
and: "and" and: "ja"
and_others: "and %{number} others" and_others: "ja %{number} muuta"
mark_all_as_read: "Merkitse kaikki luetuiksi" mark_all_as_read: "Merkitse kaikki luetuiksi"
notifications: "Ilmoitukset" notifications: "Ilmoitukset"
liked: "has just liked your post"
mentioned: "on maininnut sinut " mentioned: "on maininnut sinut "
new_request: "haluaa jakaa kanssasi." new_request: "haluaa jakaa kanssasi."
post: "viesti." post: "viesti."
@ -283,6 +284,10 @@ fi:
subject: "%{name} on kommentoinut viestiisi." subject: "%{name} on kommentoinut viestiisi."
diaspora: "Diasporan sähköpostirobotti" diaspora: "Diasporan sähköpostirobotti"
hello: "Hei %{name}!" hello: "Hei %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "Terveisin," love: "Terveisin,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -539,7 +544,8 @@ fi:
reshare: "Jaa uudelleen" reshare: "Jaa uudelleen"
stream_element: stream_element:
dislike: "En tykkää" dislike: "En tykkää"
like: "Tykkään" like: "Tykkää"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ fi:
download_xml: "Lataa tiedot XML-muodossa" download_xml: "Lataa tiedot XML-muodossa"
edit_account: "Muokkaa käyttäjätiliä" edit_account: "Muokkaa käyttäjätiliä"
export_data: "Vie tietoja" export_data: "Vie tietoja"
liked: "...someone likes your post?"
mentioned: "...sinut mainitaan viestissä?" mentioned: "...sinut mainitaan viestissä?"
new_password: "Uusi salasana" new_password: "Uusi salasana"
private_message: "...saat uuden viestin?" private_message: "...saat uuden viestin?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ fr:
and_others: "et %{number} autres" and_others: "et %{number} autres"
mark_all_as_read: "Tout marquer comme lu" mark_all_as_read: "Tout marquer comme lu"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "vous a mentionné(e) dans un" mentioned: "vous a mentionné(e) dans un"
new_request: "a proposé de partager avec vous." new_request: "a proposé de partager avec vous."
post: "message." post: "message."
@ -283,6 +284,10 @@ fr:
subject: "%{name} a commenté votre message." subject: "%{name} a commenté votre message."
diaspora: "le robot de messagerie électronique de Diaspora" diaspora: "le robot de messagerie électronique de Diaspora"
hello: "Bonjour %{name} !" hello: "Bonjour %{name} !"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "affectueusement," love: "affectueusement,"
manage_your_email_settings: "modifier vos paramètres de courriel" manage_your_email_settings: "modifier vos paramètres de courriel"
mentioned: mentioned:
@ -540,6 +545,7 @@ fr:
stream_element: stream_element:
dislike: "Je n'aime pas" dislike: "Je n'aime pas"
like: "J'aime" like: "J'aime"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Mention de : %{names}" success: "Mention de : %{names}"
@ -578,6 +584,7 @@ fr:
download_xml: "télécharger mon XML" download_xml: "télécharger mon XML"
edit_account: "Modifier le compte" edit_account: "Modifier le compte"
export_data: "Exporter des données" export_data: "Exporter des données"
liked: "...someone likes your post?"
mentioned: "…vous êtes mentionné(e) dans une publication ?" mentioned: "…vous êtes mentionné(e) dans une publication ?"
new_password: "Nouveau mot de passe" new_password: "Nouveau mot de passe"
private_message: "…vous recevez un message privé ?" private_message: "…vous recevez un message privé ?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ ga:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Fograí" notifications: "Fograí"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "ofráiladh chun roint leant" new_request: "ofráiladh chun roint leant"
post: "póst" post: "póst"
@ -283,6 +284,10 @@ ga:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "an róbat ríomhpost diaspora" diaspora: "an róbat ríomhpost diaspora"
hello: "Haileo %{name}!" hello: "Haileo %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "le meas," love: "le meas,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ ga:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ ga:
download_xml: "íoslódáil mo xml" download_xml: "íoslódáil mo xml"
edit_account: "Athraigh cúntas" edit_account: "Athraigh cúntas"
export_data: "Easpórtáil Sonraí" export_data: "Easpórtáil Sonraí"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Pasfhocal nua" new_password: "Pasfhocal nua"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ he:
and_others: "ו־%{number} אחרים" and_others: "ו־%{number} אחרים"
mark_all_as_read: "סימון הכול כלאחר קריאה" mark_all_as_read: "סימון הכול כלאחר קריאה"
notifications: "התרעות" notifications: "התרעות"
liked: "has just liked your post"
mentioned: "הזכיר/ה אותך ב" mentioned: "הזכיר/ה אותך ב"
new_request: "הציע/ה לשתף אתך." new_request: "הציע/ה לשתף אתך."
post: "רשומה." post: "רשומה."
@ -283,6 +284,10 @@ he:
subject: "%{name} הגיב/ה על הרשומה שלך." subject: "%{name} הגיב/ה על הרשומה שלך."
diaspora: "רובוט הדוא״ל של דיאספורה" diaspora: "רובוט הדוא״ל של דיאספורה"
hello: "שלום %{name}!" hello: "שלום %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "באהבה," love: "באהבה,"
manage_your_email_settings: "ניהול הגדרות הדוא״ל שלך" manage_your_email_settings: "ניהול הגדרות הדוא״ל שלך"
mentioned: mentioned:
@ -540,6 +545,7 @@ he:
stream_element: stream_element:
dislike: "לא אהבתי את זה" dislike: "לא אהבתי את זה"
like: "אהבתי" like: "אהבתי"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "אוזכרו בהצלחה: %{names}" success: "אוזכרו בהצלחה: %{names}"
@ -578,6 +584,7 @@ he:
download_xml: "הורדת ה־xml שלי" download_xml: "הורדת ה־xml שלי"
edit_account: "עריכת החשבון" edit_account: "עריכת החשבון"
export_data: "יצוא הנתונים" export_data: "יצוא הנתונים"
liked: "...someone likes your post?"
mentioned: "...מישהו הזכיר אותך ברשומה?" mentioned: "...מישהו הזכיר אותך ברשומה?"
new_password: "ססמה חדשה" new_password: "ססמה חדשה"
private_message: "...קיבלת הודעה פרטית?" private_message: "...קיבלת הודעה פרטית?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ hu:
and_others: "és %{number} másik" and_others: "és %{number} másik"
mark_all_as_read: "Mind megjelölése olvasottként" mark_all_as_read: "Mind megjelölése olvasottként"
notifications: "Értesítések" notifications: "Értesítések"
liked: "has just liked your post"
mentioned: "megemlített téged egy" mentioned: "megemlített téged egy"
new_request: "megosztást ajánlott neked." new_request: "megosztást ajánlott neked."
post: "bejegyzésben." post: "bejegyzésben."
@ -283,6 +284,10 @@ hu:
subject: "%{name} hozzászólt a bejegyzésedhez." subject: "%{name} hozzászólt a bejegyzésedhez."
diaspora: "A diaspora email robot" diaspora: "A diaspora email robot"
hello: "Szia %{name}!" hello: "Szia %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "Szeretettel," love: "Szeretettel,"
manage_your_email_settings: "Kezeld az email beállításaidat" manage_your_email_settings: "Kezeld az email beállításaidat"
mentioned: mentioned:
@ -540,6 +545,7 @@ hu:
stream_element: stream_element:
dislike: "Nem tetszik" dislike: "Nem tetszik"
like: "Tetszik" like: "Tetszik"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Megemlítetted: %{names}" success: "Megemlítetted: %{names}"
@ -578,6 +584,7 @@ hu:
download_xml: "Saját XML letöltése" download_xml: "Saját XML letöltése"
edit_account: "Fiók szerkesztése" edit_account: "Fiók szerkesztése"
export_data: "Adatok exportálása" export_data: "Adatok exportálása"
liked: "...someone likes your post?"
mentioned: "...meg vagy említve egy bejegyzésben?" mentioned: "...meg vagy említve egy bejegyzésben?"
new_password: "Új jelszó" new_password: "Új jelszó"
private_message: "...privát üzenetet kaptál?" private_message: "...privát üzenetet kaptál?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ id:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ id:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "the diaspora email robot" diaspora: "the diaspora email robot"
hello: "Hello %{name}!" hello: "Hello %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "love," love: "love,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ id:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ id:
download_xml: "download my xml" download_xml: "download my xml"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Export Data" export_data: "Export Data"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "New Password" new_password: "New Password"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ is:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Merkja allt sem lesið" mark_all_as_read: "Merkja allt sem lesið"
notifications: "Tilkynningar" notifications: "Tilkynningar"
liked: "has just liked your post"
mentioned: "hefur getið þín í þeirra" mentioned: "hefur getið þín í þeirra"
new_request: "bauð þér samnýtingu." new_request: "bauð þér samnýtingu."
post: "setja inn" post: "setja inn"
@ -283,6 +284,10 @@ is:
subject: "%{name} hefur gert atugasemd við þína færslu." subject: "%{name} hefur gert atugasemd við þína færslu."
diaspora: "the diaspora email robot" diaspora: "the diaspora email robot"
hello: "Halló %{name}!" hello: "Halló %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "ást," love: "ást,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ is:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ is:
download_xml: "download my xml" download_xml: "download my xml"
edit_account: "Breyta notandastillingum" edit_account: "Breyta notandastillingum"
export_data: "Export Data" export_data: "Export Data"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Nýtt lykilorð" new_password: "Nýtt lykilorð"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -123,7 +123,7 @@ it:
few: "%{count} commenti" few: "%{count} commenti"
many: "%{count} commenti" many: "%{count} commenti"
new_comment: new_comment:
comment: "commento" comment: "Commento"
commenting: "Invio commento in corso..." commenting: "Invio commento in corso..."
one: "1 commento" one: "1 commento"
other: "%{count} commenti" other: "%{count} commenti"
@ -236,17 +236,17 @@ it:
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "non piace a %{count} persone" few: "%{count} Non mi piace"
many: "non piace a %{count} persone " many: "%{count} Non mi piace"
one: "non piace ad una persona " one: "%{count} Non mi piace"
other: "non piace a %{count} persone" other: "%{count} Non mi piace"
zero: "non piace a zero persone" zero: "0 Non mi piace"
people_like_this: people_like_this:
few: "piace a %{count} persone" few: "%{count} Mi piace"
many: "piace a %{count} persone" many: "Piace a %{count}"
one: "piace ad una persona" one: "%{count} Mi piace"
other: "piace a %{count} persone" other: "%{count} Mi piace"
zero: "piace a nessuno" zero: "0 Mi piace"
more: "Altro" more: "Altro"
next: "successivo" next: "successivo"
no_results: "Nessun Risultato Trovato" no_results: "Nessun Risultato Trovato"
@ -267,6 +267,7 @@ it:
and_others: "e altri %{number}" and_others: "e altri %{number}"
mark_all_as_read: "Segna Tutti come Letti" mark_all_as_read: "Segna Tutti come Letti"
notifications: "Notifiche" notifications: "Notifiche"
liked: "ha appena apprezzato il tuo post"
mentioned: "ti ha menzionato in un " mentioned: "ti ha menzionato in un "
new_request: "vuole condividere con te." new_request: "vuole condividere con te."
post: "post." post: "post."
@ -283,6 +284,10 @@ it:
subject: "%{name} ha commentato il tuo post." subject: "%{name} ha commentato il tuo post."
diaspora: "l'email robot di diaspora" diaspora: "l'email robot di diaspora"
hello: "Ciao %{name}!" hello: "Ciao %{name}!"
liked:
liked: "%{name} ha appena apprezzato il tuo post: "
sign_in: "Accedi per vedere l'elemento"
subject: "%{name} ha appena apprezzato il tuo post"
love: "amore," love: "amore,"
manage_your_email_settings: "gestisci le tue impostazioni email" manage_your_email_settings: "gestisci le tue impostazioni email"
mentioned: mentioned:
@ -540,6 +545,7 @@ it:
stream_element: stream_element:
dislike: "Non mi piace" dislike: "Non mi piace"
like: "Mi piace" like: "Mi piace"
unlike: "Non come"
status_messages: status_messages:
create: create:
success: "Menzionati con successo: %{names}" success: "Menzionati con successo: %{names}"
@ -578,6 +584,7 @@ it:
download_xml: "scarica il mio xml" download_xml: "scarica il mio xml"
edit_account: "Modifica account" edit_account: "Modifica account"
export_data: "Esporta Dati" export_data: "Esporta Dati"
liked: "...a qualcuno piace il tuo post?"
mentioned: "...sei menzionato in un post?" mentioned: "...sei menzionato in un post?"
new_password: "Nuova Password" new_password: "Nuova Password"
private_message: "...hai ricevuto un messaggio privato?" private_message: "...hai ricevuto un messaggio privato?"
@ -608,7 +615,7 @@ it:
email_notifications_changed: "Notifiche email modificate con successo" email_notifications_changed: "Notifiche email modificate con successo"
language_changed: "Lingua Cambiata" language_changed: "Lingua Cambiata"
language_not_changed: "Cambio di lingua fallito" language_not_changed: "Cambio di lingua fallito"
password_changed: "Password Cambiata" password_changed: "Password Cambiata. Ora puoi effettuare l'accesso con la tua nuova password."
password_not_changed: "Cambio di password fallito" password_not_changed: "Cambio di password fallito"
webfinger: webfinger:
fetch_failed: "impossibile recuperare il profilo webfinger da %{profile_url}" fetch_failed: "impossibile recuperare il profilo webfinger da %{profile_url}"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ ja:
and_others: "他%{number}件" and_others: "他%{number}件"
mark_all_as_read: "全件を既読にする" mark_all_as_read: "全件を既読にする"
notifications: "通知" notifications: "通知"
liked: "has just liked your post"
mentioned: "さんはあなたをメンションしました。" mentioned: "さんはあなたをメンションしました。"
new_request: "さんは共有の許可を求めました。" new_request: "さんは共有の許可を求めました。"
post: "(投稿で)" post: "(投稿で)"
@ -283,6 +284,10 @@ ja:
subject: "%{name}は投稿にコメントしました。" subject: "%{name}は投稿にコメントしました。"
diaspora: "ダイアスポラ*メールロボット" diaspora: "ダイアスポラ*メールロボット"
hello: "%{name}さん、こんにちは!" hello: "%{name}さん、こんにちは!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "それでは、" love: "それでは、"
manage_your_email_settings: "メール設定を管理する" manage_your_email_settings: "メール設定を管理する"
mentioned: mentioned:
@ -540,6 +545,7 @@ ja:
stream_element: stream_element:
dislike: "これ嫌い!" dislike: "これ嫌い!"
like: "これ好き!" like: "これ好き!"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "%{names}を参照するのに成功しました。" success: "%{names}を参照するのに成功しました。"
@ -578,6 +584,7 @@ ja:
download_xml: "XMLをダウンロードする" download_xml: "XMLをダウンロードする"
edit_account: "アカウント編集" edit_account: "アカウント編集"
export_data: "データ出力" export_data: "データ出力"
liked: "...someone likes your post?"
mentioned: "投稿に自分がメンションされたとき" mentioned: "投稿に自分がメンションされたとき"
new_password: "新しいパスワード" new_password: "新しいパスワード"
private_message: "非公開メッセージが届いたとき" private_message: "非公開メッセージが届いたとき"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -186,7 +186,7 @@ ko:
show: show:
already_account: "이미 계정을 가지고 있습니까?" already_account: "이미 계정을 가지고 있습니까?"
choice: "선택" choice: "선택"
choice_explanation: "디아스포라에서는 애스펙이라는 모둠으로 관계를 관리합니다. 디아스포라만의 독특함인 애스펙은 나의 사진, 이야기, 농담이 내가 의도한 사람들과만 공유되도록 보장합니다." choice_explanation: "디아스포라에서는 애스펙이라는 그룹으로 관계를 관리합니다. 디아스포라만의 독특함인 애스펙은 나의 사진, 이야기, 농담이 내가 의도한 사람들과만 공유되도록 보장합니다."
learn_about_host: "디아스포라 서버를 직접 운영하는 방법" learn_about_host: "디아스포라 서버를 직접 운영하는 방법"
login_here: "로그인" login_here: "로그인"
ownership: "소유권" ownership: "소유권"
@ -267,6 +267,7 @@ ko:
and_others: "나머지 %{number}개" and_others: "나머지 %{number}개"
mark_all_as_read: "모두 읽음으로 표시" mark_all_as_read: "모두 읽음으로 표시"
notifications: "알림" notifications: "알림"
liked: "님이 내 공유물을 좋아합니다"
mentioned: " 님이 귀하를 멘션하였습니다." mentioned: " 님이 귀하를 멘션하였습니다."
new_request: " 님이 공유를 요청하였습니다." new_request: " 님이 공유를 요청하였습니다."
post: "공유물" post: "공유물"
@ -283,6 +284,10 @@ ko:
subject: "%{name} 님이 귀하의 공유물에 댓글을 달았습니다." subject: "%{name} 님이 귀하의 공유물에 댓글을 달았습니다."
diaspora: "디아스포라 자동 이메일" diaspora: "디아스포라 자동 이메일"
hello: "%{name} 님!" hello: "%{name} 님!"
liked:
liked: "%{name} 님이 내 공유물을 좋아합니다:"
sign_in: "Sign to view it"
subject: "%{name} 님이 내 공유물을 좋아합니다."
love: "" love: ""
manage_your_email_settings: "이메일 설정 관리" manage_your_email_settings: "이메일 설정 관리"
mentioned: mentioned:
@ -540,6 +545,7 @@ ko:
stream_element: stream_element:
dislike: "싪어요" dislike: "싪어요"
like: "좋아요" like: "좋아요"
unlike: "좋아요 취소"
status_messages: status_messages:
create: create:
success: "%{names} 님을 성공적으로 멘션했습니다." success: "%{names} 님을 성공적으로 멘션했습니다."
@ -578,6 +584,7 @@ ko:
download_xml: "내 xml 다운로드" download_xml: "내 xml 다운로드"
edit_account: "계정 고치기" edit_account: "계정 고치기"
export_data: "자료 뽑아내기" export_data: "자료 뽑아내기"
liked: "누군가가 내 공유물을 좋아할 때"
mentioned: "내가 멘션되었을 때" mentioned: "내가 멘션되었을 때"
new_password: "새 암호" new_password: "새 암호"
private_message: "쪽지를 받았을 때" private_message: "쪽지를 받았을 때"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ lt:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ lt:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "Diasporos pašto robotas" diaspora: "Diasporos pašto robotas"
hello: "Labas, %{name}!" hello: "Labas, %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "su meile," love: "su meile,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ lt:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ lt:
download_xml: "atsisiųsti mano duomenis xml formatu" download_xml: "atsisiųsti mano duomenis xml formatu"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Eksportuoti duomenis" export_data: "Eksportuoti duomenis"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Naujas slaptažodis" new_password: "Naujas slaptažodis"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ mk:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ mk:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "diaspora е-маил робот" diaspora: "diaspora е-маил робот"
hello: "Здраво %{name}!" hello: "Здраво %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "со љубов," love: "со љубов,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ mk:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ mk:
download_xml: "симни го мојот xml" download_xml: "симни го мојот xml"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Изнеси податоци" export_data: "Изнеси податоци"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Нова лозинка" new_password: "Нова лозинка"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ nb:
and_others: "og %{number} andre" and_others: "og %{number} andre"
mark_all_as_read: "Merk alle som leste" mark_all_as_read: "Merk alle som leste"
notifications: "Varsler" notifications: "Varsler"
liked: "has just liked your post"
mentioned: "har nevnt deg i sin" mentioned: "har nevnt deg i sin"
new_request: "spør om å få dele med deg." new_request: "spør om å få dele med deg."
post: "innlegg" post: "innlegg"
@ -283,6 +284,10 @@ nb:
subject: "%{name} har kommentert på ditt innlegg." subject: "%{name} har kommentert på ditt innlegg."
diaspora: "diasporas epostrobot" diaspora: "diasporas epostrobot"
hello: "Hei %{name}!" hello: "Hei %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "vennlig hilsen," love: "vennlig hilsen,"
manage_your_email_settings: "administrer e-postinnstillingene" manage_your_email_settings: "administrer e-postinnstillingene"
mentioned: mentioned:
@ -538,8 +543,9 @@ nb:
reshare: reshare:
reshare: "Del på nytt" reshare: "Del på nytt"
stream_element: stream_element:
dislike: "Jeg misliker dette" dislike: "Liker ikke"
like: "Jeg liker dette" like: "Liker"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Nevnte :%{navn}" success: "Nevnte :%{navn}"
@ -578,6 +584,7 @@ nb:
download_xml: "last ned min xml" download_xml: "last ned min xml"
edit_account: "Endre konto" edit_account: "Endre konto"
export_data: "Eksporter Data" export_data: "Eksporter Data"
liked: "...someone likes your post?"
mentioned: " du nevnes i et innlegg?" mentioned: " du nevnes i et innlegg?"
new_password: "Nytt Passord" new_password: "Nytt Passord"
private_message: " du mottar en privat melding?" private_message: " du mottar en privat melding?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -123,7 +123,7 @@ nl:
few: "%{count} reacties" few: "%{count} reacties"
many: "%{count} reacties" many: "%{count} reacties"
new_comment: new_comment:
comment: "reactie" comment: "Reactie"
commenting: "Reageren..." commenting: "Reageren..."
one: "1 reactie" one: "1 reactie"
other: "%{count} reacties" other: "%{count} reacties"
@ -236,23 +236,23 @@ nl:
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "%{count} personen vinden dit niet leuk" few: "%{count} mensen vinden dit niet leuk"
many: "%{count} personen vinden dit niet leuk" many: "%{count} mensen vinden dit niet leuk"
one: "1 persoon vindt dit niet leuk" one: "%{count} persoon vindt dit niet leuk"
other: "%{count} personen vinden dit niet leuk" other: "%{count} mensen vinden dit niet leuk"
zero: "niemand vindt dit niet leuk" zero: "niemand vindt dit niet leuk"
people_like_this: people_like_this:
few: "%{count} personen vinden dit leuk" few: "%{count} mensen vinden dit leuk"
many: "%{count} personen vinden dit leuk" many: "%{count} mensen vinden dit leuk"
one: "1 persoon vindt dit leuk" one: "%{count} persoon vindt dit leuk"
other: "%{count} personen vinden dit leuk" other: "%{count} mensen vinden dit leuk"
zero: "niemand vindt dit leuk" zero: "niemand vindt dit leuk"
more: "Meer" more: "Meer"
next: "volgende" next: "volgende"
no_results: "Geen resultaten gevonden" no_results: "Geen resultaten gevonden"
notifications: notifications:
also_commented: "heeft ook gereageerd %{post_author}'s" also_commented: "heeft ook gereageerd %{post_author}'s"
also_commented_deleted: "reageerde op een verwijderde post" also_commented_deleted: "reageerde op een verwijderde post."
comment_on_post: "reageerde op jouw" comment_on_post: "reageerde op jouw"
deleted: "verwijderde" deleted: "verwijderde"
helper: helper:
@ -267,9 +267,10 @@ nl:
and_others: "en %{number} anderen" and_others: "en %{number} anderen"
mark_all_as_read: "Markeer alles gelezen" mark_all_as_read: "Markeer alles gelezen"
notifications: "Notificaties" notifications: "Notificaties"
mentioned: "heeft je genoemd in een post" liked: "vind je post leuk"
mentioned: "heeft je genoemd in een"
new_request: "bood aan om met jou te delen." new_request: "bood aan om met jou te delen."
post: "post" post: "post."
private_message: "heeft je een bericht gestuurd." private_message: "heeft je een bericht gestuurd."
request_accepted: "heeft je verzoek geaccepteerd." request_accepted: "heeft je verzoek geaccepteerd."
notifier: notifier:
@ -283,6 +284,10 @@ nl:
subject: "%{name} heeft op jouw post gereageerd." subject: "%{name} heeft op jouw post gereageerd."
diaspora: "de diaspora email robot" diaspora: "de diaspora email robot"
hello: "Hoi %{name}!" hello: "Hoi %{name}!"
liked:
liked: "%{name} vind je post leuk: "
sign_in: "Sign to view it"
subject: "%{name} vind jou post leuk"
love: "liefs," love: "liefs,"
manage_your_email_settings: "beheer je e-mail instellingen" manage_your_email_settings: "beheer je e-mail instellingen"
mentioned: mentioned:
@ -538,8 +543,9 @@ nl:
reshare: reshare:
reshare: "Herdeel" reshare: "Herdeel"
stream_element: stream_element:
dislike: "Ik vind dit niet leuk" dislike: "Vind ik niet meer leuk"
like: "Ik vind dit leuk" like: "Vind ik leuk"
unlike: "vind ik niet meer leuk"
status_messages: status_messages:
create: create:
success: "Succesvol genoemd: %{names}" success: "Succesvol genoemd: %{names}"
@ -578,6 +584,7 @@ nl:
download_xml: "download mijn xml" download_xml: "download mijn xml"
edit_account: "Bewerk account" edit_account: "Bewerk account"
export_data: "Exporteer data" export_data: "Exporteer data"
liked: "... iemand je post leuk vind?"
mentioned: "...je genoemd word in een post?" mentioned: "...je genoemd word in een post?"
new_password: "Nieuw wachtwoord" new_password: "Nieuw wachtwoord"
private_message: "...je een privébericht ontvangt?" private_message: "...je een privébericht ontvangt?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ pa:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "ਪੋਸਟ" post: "ਪੋਸਟ"
@ -283,6 +284,10 @@ pa:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "the diaspora email robot" diaspora: "the diaspora email robot"
hello: "ਹੈਲੋ %{name}!" hello: "ਹੈਲੋ %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "love," love: "love,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ pa:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ pa:
download_xml: "download my xml" download_xml: "download my xml"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Export Data" export_data: "Export Data"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "New Password" new_password: "New Password"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -36,7 +36,7 @@ pl:
all_aspects: "Wszystkie aspekty" all_aspects: "Wszystkie aspekty"
application: application:
helper: helper:
diaspora_alpha: "DIASPORA* ALPHA" diaspora_alpha: "DIASPORA* ALFA"
unknown_person: "nieznana osoba" unknown_person: "nieznana osoba"
video_title: video_title:
unknown: "Wideo bez nazwy" unknown: "Wideo bez nazwy"
@ -123,7 +123,7 @@ pl:
few: "%{count} komentarze" few: "%{count} komentarze"
many: "%{count} komentarzy" many: "%{count} komentarzy"
new_comment: new_comment:
comment: "Skomentuj" comment: "Skomentuj"
commenting: "Komentowanie…" commenting: "Komentowanie…"
one: "1 komentarz" one: "1 komentarz"
other: "%{count} komentarzy" other: "%{count} komentarzy"
@ -252,7 +252,7 @@ pl:
no_results: "Nie znaleziono niczego" no_results: "Nie znaleziono niczego"
notifications: notifications:
also_commented: "skomentował również użytkownika %{post_author}" also_commented: "skomentował również użytkownika %{post_author}"
also_commented_deleted: "commented on a deleted post" also_commented_deleted: "skomentował usunięty wpis"
comment_on_post: "komentuje twój" comment_on_post: "komentuje twój"
deleted: "usunięte" deleted: "usunięte"
helper: helper:
@ -267,9 +267,10 @@ pl:
and_others: "i %{number} innych" and_others: "i %{number} innych"
mark_all_as_read: "Oznacz wszystkie jako przeczytane" mark_all_as_read: "Oznacz wszystkie jako przeczytane"
notifications: "Powiadomienia" notifications: "Powiadomienia"
liked: "polubił twój wpis"
mentioned: "wspomniał o tobie we wpisie" mentioned: "wspomniał o tobie we wpisie"
new_request: "chce zostać twoim znajomym." new_request: "chce zostać twoim znajomym."
post: "wpis" post: "wpis."
private_message: "wysłał(a) ci wiadomość." private_message: "wysłał(a) ci wiadomość."
request_accepted: "zaakceptował Twoje zaproszenie." request_accepted: "zaakceptował Twoje zaproszenie."
notifier: notifier:
@ -283,6 +284,10 @@ pl:
subject: "Użytkownik %{name} skomentował Twój wpis." subject: "Użytkownik %{name} skomentował Twój wpis."
diaspora: "robot e-mailowy diaspory" diaspora: "robot e-mailowy diaspory"
hello: "Cześć %{name}!" hello: "Cześć %{name}!"
liked:
liked: "użytkownik %{name} polubił twój post: "
sign_in: "Zaloguj się, aby zobaczyć"
subject: "użytkownik %{name} polubił twój wpis"
love: "uściski," love: "uściski,"
manage_your_email_settings: "zarządzaj ustawieniami emaila" manage_your_email_settings: "zarządzaj ustawieniami emaila"
mentioned: mentioned:
@ -540,6 +545,7 @@ pl:
stream_element: stream_element:
dislike: "Nie lubię tego" dislike: "Nie lubię tego"
like: "Lubię to" like: "Lubię to"
unlike: "Odwołaj \"Lubię to\""
status_messages: status_messages:
create: create:
success: "Pomyślnie wspomniano o: %{names}" success: "Pomyślnie wspomniano o: %{names}"
@ -578,6 +584,7 @@ pl:
download_xml: "pobierz mój xml" download_xml: "pobierz mój xml"
edit_account: "Edytuj konto" edit_account: "Edytuj konto"
export_data: "Eksportowanie danych" export_data: "Eksportowanie danych"
liked: "...ktoś polubił twój wpis?"
mentioned: "...zostałeś wspomniany(a) we wpisie?" mentioned: "...zostałeś wspomniany(a) we wpisie?"
new_password: "Nowe hasło" new_password: "Nowe hasło"
private_message: "...otrzymasz prywatną wiadomość?" private_message: "...otrzymasz prywatną wiadomość?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ pt-BR:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Marcar Tudo como Lido" mark_all_as_read: "Marcar Tudo como Lido"
notifications: "Notificações" notifications: "Notificações"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "deseja partilhar com você." new_request: "deseja partilhar com você."
post: "post" post: "post"
@ -283,6 +284,10 @@ pt-BR:
subject: "%{name} comentou sua postagem." subject: "%{name} comentou sua postagem."
diaspora: "o robô de email da Diaspora*" diaspora: "o robô de email da Diaspora*"
hello: "Olá, %{name}!" hello: "Olá, %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "Com carinho," love: "Com carinho,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ pt-BR:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ pt-BR:
download_xml: "Baixar meu XML" download_xml: "Baixar meu XML"
edit_account: "Alterar conta" edit_account: "Alterar conta"
export_data: "Exportar dados" export_data: "Exportar dados"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Nova Senha" new_password: "Nova Senha"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -6,8 +6,8 @@
pt-PT: pt-PT:
_comments: "Comentários" _comments: "Comentários"
_home: "Início" _home: "Início"
_photos: "Fotografias" _photos: "fotografias"
_services: "Serviços" _services: "serviços"
account: "Conta" account: "Conta"
activerecord: activerecord:
errors: errors:
@ -32,12 +32,12 @@ pt-PT:
invalid: "é inválido." invalid: "é inválido."
username: username:
taken: "já existe." taken: "já existe."
ago: "%{time} atrás" ago: "%{time} atrás"
all_aspects: "All aspects" all_aspects: "All aspects"
application: application:
helper: helper:
diaspora_alpha: "DIASPORA* ALPHA" diaspora_alpha: "DIASPORA* ALPHA"
unknown_person: "utilizador(a) desconhecido(a)" unknown_person: "pessoa desconhecida"
video_title: video_title:
unknown: "Video sem título " unknown: "Video sem título "
are_you_sure: "Tem a certeza?" are_you_sure: "Tem a certeza?"
@ -48,8 +48,8 @@ pt-PT:
success: "Pessoa removida com sucesso do aspecto." success: "Pessoa removida com sucesso do aspecto."
aspects: aspects:
add_to_aspect: add_to_aspect:
failure: "Falha ao adicionar amigo ao grupo." failure: "Falha ao adicionar contacto ao aspecto."
success: "Amigo adicionado com sucesso ao grupo." success: "Contacto adicionado ao aspecto com sucesso."
aspect_contacts: aspect_contacts:
done_editing: "finalizar edição" done_editing: "finalizar edição"
aspect_stream: aspect_stream:
@ -59,8 +59,8 @@ pt-PT:
contacts_not_visible: "Contactos neste aspecto não se verão uns aos outros." contacts_not_visible: "Contactos neste aspecto não se verão uns aos outros."
contacts_visible: "Contactos neste aspecto ver-se-ão uns aos outros." contacts_visible: "Contactos neste aspecto ver-se-ão uns aos outros."
create: create:
failure: "A criação do grupo falhou." failure: "A criação do aspecto falhou."
success: "O teu novo grupo %{name} foi criado" success: "O seu novo aspecto %{name} foi criado"
destroy: destroy:
failure: "%{name} não se encontra vazio e não pôde ser removido." failure: "%{name} não se encontra vazio e não pôde ser removido."
success: "%{name} foi removido(a) com sucesso." success: "%{name} foi removido(a) com sucesso."
@ -78,29 +78,29 @@ pt-PT:
few: "%{count} aspectos" few: "%{count} aspectos"
helper: helper:
are_you_sure: "Tem a certeza que deseja eliminar este aspecto?" are_you_sure: "Tem a certeza que deseja eliminar este aspecto?"
aspect_not_empty: "Mini-Perfil não está vazio" aspect_not_empty: "Aspecto não vazio"
remove: "remover" remove: "remover"
index: index:
handle_explanation: "Esta é a tua chave do Diaspora. Tal como um email, podes dar esta chave às pessoas para que te possam contactar." handle_explanation: "Esta é a sua chave do Diaspora. Tal como um endereço de email, pode dar esta chave a quem deseja que o contacte."
no_contacts: "Nenhum contacto" no_contacts: "Nenhum contacto"
post_a_message: "post a message >>" post_a_message: "post a message >>"
manage: manage:
add_a_new_aspect: "Adicionar um novo grupo" add_a_new_aspect: "Adicionar um novo aspecto"
add_a_new_contact: "Adicionar um novo contacto" add_a_new_contact: "Adicionar um novo contacto"
drag_to_add: "Arrasta para adicionar pessoas" drag_to_add: "Arraste para adicionar pessoas"
manage_aspects: "Gerir Grupos" manage_aspects: "Gerir aspectos"
no_requests: "Não existem novos pedidos" no_requests: "Não existem novos pedidos"
requests: "Pedidos" requests: "Pedidos"
many: "%{count} aspectos" many: "%{count} aspectos"
move_contact: move_contact:
error: "Erro ao mover contacto: %{inspect}" error: "Erro ao mover o contacto: %{inspect}"
failure: "não funcionou %{inspect}" failure: "não funcionou %{inspect}"
success: "Pessoa movida para o novo grupo" success: "Pessoa movida para o novo aspecto"
new_aspect: new_aspect:
create: "Criar" create: "Criar"
name: "Nome" name: "Nome"
no_posts_message: no_posts_message:
start_talking: "Ainda ninguém disse nada. Dá início à conversa!" start_talking: "Ainda ninguém disse nada. Dê início à conversa!"
one: "1 aspecto" one: "1 aspecto"
other: "%{count} aspectos" other: "%{count} aspectos"
seed: seed:
@ -110,7 +110,7 @@ pt-PT:
edit_aspect: "editar Grupo" edit_aspect: "editar Grupo"
update: update:
failure: "Your aspect, %{name}, had too long name to be saved." failure: "Your aspect, %{name}, had too long name to be saved."
success: "O teu grupo, %{name}, foi editado com sucesso." success: "O seu aspecto, %{name}, foi editado com sucesso."
zero: "nenhum aspecto" zero: "nenhum aspecto"
back: "Voltar" back: "Voltar"
bookmarklet: bookmarklet:
@ -178,44 +178,44 @@ pt-PT:
email: "Email" email: "Email"
error_messages: error_messages:
helper: helper:
correct_the_following_errors_and_try_again: "Corrige os seguintes erros e tenta novamente." correct_the_following_errors_and_try_again: "Corrija os seguintes erros e volte a tentar."
invalid_fields: "Campos Inválidos" invalid_fields: "Campos Inválidos"
fill_me_out: "Informa-me" fill_me_out: "Informe-me"
hide: "Hide" hide: "Hide"
home: home:
show: show:
already_account: "já tens uma conta?" already_account: "já tem uma conta?"
choice: "Escolha" choice: "Escolha"
choice_explanation: "O Diaspora permite-te organizar as tuas ligações em grupos. Exclusivos no Diaspora, os grupos garantem que as tuas fotografias, histórias e brincadeiras são partilhadas apenas com as pessoas com que tu queres que elas sejam partilhadas." choice_explanation: "O Diaspora permite-lhe organizar as suas ligações em grupos chamados aspectos. Exclusivos ao Diaspora, os aspectos garantem que as suas fotografias, histórias e piadas são partilhadas apenas com as pessoas com quem deseja que sejam partilhadas."
learn_about_host: "Aprende como alojar o teu próprio servidor do Diaspora" learn_about_host: "Aprenda sobre como alojar o seu próprio servidor do Diaspora."
login_here: "entra aqui" login_here: "inicie a sessão aqui"
ownership: "Propriedade" ownership: "Propriedade"
ownership_explanation: s dono das tuas fotografias, e não deves abdicar disso para as poderes partilhar. Tu manténs a posse de tudo o que partilhares no Diaspora, dando-te total controlo sobre como é partilhado." ownership_explanation: dono das suas fotografias, e não deve ter de abdicar desse direito para as poder partilhar. Mantém a posse de tudo o que partilha no Diaspora, sendo-lhe dado controlo total sobre como é distribuído."
share_what_you_want: "Partilha o que quiseres, com quem quiseres." share_what_you_want: "Partilhe o que quiser, com quem quiser."
simplicity: "Simplicidade" simplicity: "Simplicidade"
simplicity_explanation: "O Diaspora torna a partilha clara e fácil e o mesmo se aplica à privacidade. Privado por definição, o Diaspora não tem inúmeras páginas de definições e opções de forma a manteres o teu perfil seguro e privado." simplicity_explanation: "O Diaspora torna a partilha clara e fácil e o mesmo se aplica à privacidade. Privado por definição, o Diaspora não o obriga a percorrer inúmeras páginas de definições e opções de forma a manter o seu perfil seguro."
tagline_first_half: "Partilhe o que desejar," tagline_first_half: "Partilhe o que desejar,"
tagline_second_half: "com quem desejar." tagline_second_half: "com quem desejar."
invitations: invitations:
check_token: check_token:
not_found: "Token de convite não encontrado" not_found: "Código de convite não encontrado"
create: create:
already_contacts: "Você já está ligado a esta pessoa" already_contacts: "Você já está ligado a esta pessoa"
already_sent: "Você já convidou esta pessoa." already_sent: "Você já convidou esta pessoa."
no_more: "Não tens mais convites." no_more: "Não tem mais convites."
rejected: "Os seguintes endereços de email tiveram problemas: " rejected: "Os seguintes endereços de email tiveram problemas: "
sent: "Os teu convites foram enviados a:" sent: "Os convites foram enviados a:"
edit: edit:
sign_up: "registar" sign_up: "resgistar-se"
new: new:
already_invited: "Já convidado" already_invited: "Já convidado"
aspect: "Aspecto" aspect: "Aspecto"
comma_seperated_plz: "Podes inserir vários endereços de email separados por vírgulas." comma_seperated_plz: "Podes inserir vários endereços de email separados por vírgulas."
if_they_accept_info: "se aceitarem, serão adicionados ao aspecto com que os convidou." if_they_accept_info: "se aceitarem, serão adicionados ao aspecto com que os convidou."
invite_someone_to_join: "Convida alguém para se juntar ao Diaspora!" invite_someone_to_join: "Convide alguém para se juntar ao Diaspora!"
personal_message: "Personal message" personal_message: "Personal message"
resend: "Reenviar" resend: "Reenviar"
send_an_invitation: "Envia um convite" send_an_invitation: "Envie um convite"
send_invitation: "Enviar convite" send_invitation: "Enviar convite"
to: "Para" to: "Para"
layouts: layouts:
@ -227,10 +227,10 @@ pt-PT:
whats_new: "O que há de novo?" whats_new: "O que há de novo?"
your_aspects: "seus aspectos" your_aspects: "seus aspectos"
header: header:
blog: "blog" blog: "blogue"
code: "código" code: "código"
login: "entrar" login: "iniciar sessão"
logout: "sair" logout: "Terminar sessão"
profile: "profile" profile: "profile"
settings: "settings" settings: "settings"
likes: likes:
@ -267,6 +267,7 @@ pt-PT:
and_others: "e %{number} outros" and_others: "e %{number} outros"
mark_all_as_read: "Marcar Tudo como Lido" mark_all_as_read: "Marcar Tudo como Lido"
notifications: "Notificações" notifications: "Notificações"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "deseja partilhar consigo." new_request: "deseja partilhar consigo."
post: "post" post: "post"
@ -283,6 +284,10 @@ pt-PT:
subject: "%{name} comentou no seu post." subject: "%{name} comentou no seu post."
diaspora: "o robot de email do diaspora" diaspora: "o robot de email do diaspora"
hello: "Olá %{name}!" hello: "Olá %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "com carinho," love: "com carinho,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -290,17 +295,17 @@ pt-PT:
sign_in: "Sign in to view it." sign_in: "Sign in to view it."
subject: "%{name} has mentioned you on Diaspora*" subject: "%{name} has mentioned you on Diaspora*"
new_request: new_request:
just_sent_you: "acaba de enviar-te um pedido de contacto no Diaspora*" just_sent_you: "acaba de lhe enviar um pedido de contacto no Diaspora*"
sign_in: "regista-te aqui" sign_in: "Inicie sessão aqui"
subject: "novo pedido de contacto do Diaspora* de %{from}" subject: "novo pedido de contacto do Diaspora* de %{from}"
try_it_out: "Devias mesmo pensar em dar-lhe uma vista de olhos." try_it_out: "Devia mesmo pensar em dar-lhe uma vista de olhos."
private_message: private_message:
message_subject: "Subject: %{subject}" message_subject: "Subject: %{subject}"
private_message: "has sent you a private message:" private_message: "has sent you a private message:"
sign_in: "Sign in to view it." sign_in: "Sign in to view it."
subject: "%{name} has sent you a private message yon Diaspora*" subject: "%{name} has sent you a private message yon Diaspora*"
request_accepted: request_accepted:
accepted: "aceitou(aram) o teu pedido de contacto. Está(ão) agora no teu" accepted: "aceitou o seu pedido de contacto!"
sign_in: "Sign in here" sign_in: "Sign in here"
subject: "%{name} aceitou o teu pedido de contacto no Diaspora*" subject: "%{name} aceitou o teu pedido de contacto no Diaspora*"
single_admin: single_admin:
@ -309,8 +314,8 @@ pt-PT:
thanks: "Obrigado," thanks: "Obrigado,"
ok: "OK" ok: "OK"
or: "ou" or: "ou"
password: "Palavra-chave" password: "Palavra-passe"
password_confirmation: "Confirmação de palavra-chave" password_confirmation: "Confirmação de palavra-passe"
people: people:
add_contact_small: add_contact_small:
add_contact_from_tag: "add contact from tag" add_contact_from_tag: "add contact from tag"
@ -318,28 +323,28 @@ pt-PT:
edit_membership: "editar participação no aspecto" edit_membership: "editar participação no aspecto"
few: "%{count} people" few: "%{count} people"
helper: helper:
people_on_pod_are_aware_of: " as pessoas no pod estão cientes de que" people_on_pod_are_aware_of: "as pessoas no pod estão cientes de que"
results_for: " resultados para %{params}" results_for: "resultados para %{params}"
index: index:
couldnt_find_them_send_invite: "Não conseguiu encontrá-los? Envie um convite!" couldnt_find_them_send_invite: "Não conseguiu encontrá-los? Envie um convite!"
no_one_found: "...e ninguém foi encontrado." no_one_found: "...e ninguém foi encontrado."
no_results: "Hey! You need to search for something." no_results: "Hey! You need to search for something."
results_for: "resultados de pesquisa para" results_for: "resultados da pesquisa para"
many: "%{count} people" many: "%{count} people"
one: "1 person" one: "1 person"
other: "%{count} people" other: "%{count} people"
person: person:
add_contact: "adicionar contacto" add_contact: "adicionar contacto"
already_connected: "Já está ligado" already_connected: "Já está ligado"
pending_request: "pedido pendente" pending_request: "Pedido pendente"
thats_you: s tu!" thats_you: você!"
profile_sidebar: profile_sidebar:
bio: "sobre" bio: "biografia"
born: "nascido a" born: "data de nascimento"
cannot_remove: "Impossível remover %{name} do último grupo.(Se te quiseres desligar desta pessoa terás que remover o contacto)" cannot_remove: "Impossível remover %{name} do último aspecto.(Se se quiser desligar desta pessoa terá que remover o contacto)"
edit_my_profile: "Editar o meu perfil" edit_my_profile: "Editar o meu perfil"
gender: "género" gender: "sexo"
in_aspects: "nos grupos" in_aspects: "nos aspectos"
location: "location" location: "location"
remove_contact: "remover contacto" remove_contact: "remover contacto"
remove_from: "Remover %{name} de %{aspect}?" remove_from: "Remover %{name} de %{aspect}?"
@ -350,7 +355,7 @@ pt-PT:
incoming_request: "Tens um pedido desta pessoa" incoming_request: "Tens um pedido desta pessoa"
mention: "Mention" mention: "Mention"
message: "Message" message: "Message"
no_posts: "Não existem entradas para mostrar!" no_posts: "Não existem publicações para mostrar!"
not_connected: "You are not connected with this person" not_connected: "You are not connected with this person"
recent_posts: "Recent Posts" recent_posts: "Recent Posts"
recent_public_posts: "Recent Public Posts" recent_public_posts: "Recent Public Posts"
@ -374,11 +379,11 @@ pt-PT:
new: new:
back_to_list: "Voltar à Lista" back_to_list: "Voltar à Lista"
new_photo: "Nova Fotografia" new_photo: "Nova Fotografia"
post_it: "Publica!" post_it: "Publique!"
new_photo: new_photo:
empty: "{file} está vazio, por favor escolhe novamente os ficheiros sem este último." empty: "{file} está vazio, por favor seleccione de novo os ficheiros sem este último."
invalid_ext: "{file} tem uma extensão inválida. Apenas são permitidas as extensões {extensions}." invalid_ext: "{file} tem uma extensão inválida. Apenas são permitidas as extensões {extensions}."
size_error: "{file} é muito grande, o tamanho máximo é {sizeLimit}." size_error: "{file} é demasiado grande, o tamanho máximo é {sizeLimit}."
new_profile_photo: new_profile_photo:
or_select_one: "or select one from your already existing" or_select_one: "or select one from your already existing"
upload: "Envie uma foto nova do seu perfil!" upload: "Envie uma foto nova do seu perfil!"
@ -389,14 +394,14 @@ pt-PT:
delete_photo: "Apagar Fotografia" delete_photo: "Apagar Fotografia"
edit: "editar" edit: "editar"
edit_delete_photo: "Editar descrição da fotografia / apagar fotografia" edit_delete_photo: "Editar descrição da fotografia / apagar fotografia"
make_profile_photo: "criar foto de perfil" make_profile_photo: "tornar foto de perfil"
original_post: "Original Post" original_post: "Original Post"
permalink: "permalink" permalink: "permalink"
update_photo: "Actualizar Fotografia" update_photo: "Actualizar Fotografia"
view: "ver" view: "ver"
update: update:
error: "Falha ao editar a fotografia" error: "Falha ao editar a fotografia"
notice: "Fotografia adicionada com sucesso." notice: "Fotografia actualizada com sucesso."
post_visibilites: post_visibilites:
update: update:
post_hidden: "%{name}'s post has been hidden." post_hidden: "%{name}'s post has been hidden."
@ -427,12 +432,12 @@ pt-PT:
registrations: registrations:
closed: "Os registos estão encerrados neste pod do Diaspora." closed: "Os registos estão encerrados neste pod do Diaspora."
create: create:
success: "Juntaste-te ao Diaspora!" success: "Juntou-se ao Diaspora!"
edit: edit:
cancel_my_account: "Cancelar a minha conta" cancel_my_account: "Cancelar a minha conta"
edit: "Editar %{name}" edit: "Editar %{name}"
leave_blank: "(deixar em branco se não quiseres modificar)" leave_blank: "(deixe em branco se não quiser modificar)"
password_to_confirm: "(necessitamos da tua palavra-chave actual para confirmar as tuas modificações)" password_to_confirm: "(necessitamos da sua palavra-passe actual para confirmar as modificações)"
unhappy: "Descontente?" unhappy: "Descontente?"
update: "Actualizar" update: "Actualizar"
new: new:
@ -440,16 +445,16 @@ pt-PT:
enter_password: "Insira uma senha" enter_password: "Insira uma senha"
enter_password_again: "Insira a mesma senha que anteriormente" enter_password_again: "Insira a mesma senha que anteriormente"
enter_username: "Escolha um nome de utilizador (apenas letras, números e underscores)" enter_username: "Escolha um nome de utilizador (apenas letras, números e underscores)"
sign_up: "Registar" sign_up: "Registar-se"
sign_up_for_diaspora: "Regista-te no Diaspora" sign_up_for_diaspora: "Registe-se no Diaspora"
requests: requests:
create: create:
sending: "A enviar..." sending: "A enviar"
sent: "Você solicitou partilhar com %{name}, que será notificado assim que entrar no Diaspora." sent: "Você solicitou partilhar com %{name}, que será notificado assim que entrar no Diaspora."
destroy: destroy:
error: "Por favor, escolhe um grupo!" error: "Por favor, seleccione um aspecto!"
ignore: "Ignorar pedido de contacto." ignore: "Pedido de contacto ignorado."
success: "São agora amigos." success: "Já estão a partilhar."
helper: helper:
new_requests: new_requests:
few: "%{count} novos pedidos!" few: "%{count} novos pedidos!"
@ -459,15 +464,15 @@ pt-PT:
zero: "nenhum novo pedido" zero: "nenhum novo pedido"
manage_aspect_contacts: manage_aspect_contacts:
existing: "Contactos existentes" existing: "Contactos existentes"
manage_within: "Gerir contactos dentro" manage_within: "Gerir contactos dentro de"
new_request_to_person: new_request_to_person:
sent: "enviado!" sent: "enviado!"
search: "Procurar" search: "Procurar"
services: services:
create: create:
success: "Autenticação bem sucedida." success: "A autentificação foi bem sucedida."
destroy: destroy:
success: "A autenticação foi destruída com sucesso." success: "A autentificação foi destruída com sucesso."
failure: failure:
error: "there was an error connecting that service" error: "there was an error connecting that service"
finder: finder:
@ -482,9 +487,9 @@ pt-PT:
index: index:
connect_to_facebook: "Ligar ao Facebook" connect_to_facebook: "Ligar ao Facebook"
connect_to_twitter: "Ligar ao Twitter" connect_to_twitter: "Ligar ao Twitter"
disconnect: "Desligar" disconnect: "desligar"
edit_services: "Editar serviços" edit_services: "Editar serviços"
logged_in_as: "registado como" logged_in_as: "com sessão registada como"
really_disconnect: "desligar do %{service}?" really_disconnect: "desligar do %{service}?"
inviter: inviter:
click_link_to_accept_invitation: "Clique neste link para aceitar o convite" click_link_to_accept_invitation: "Clique neste link para aceitar o convite"
@ -492,14 +497,14 @@ pt-PT:
remote_friend: remote_friend:
invite: "invite" invite: "invite"
resend: "resend" resend: "resend"
settings: "Definições " settings: "Definições"
shared: shared:
add_contact: add_contact:
create_request: "Encontrar através do nome de utilizador no Diaspora" create_request: "Encontrar através do nome de utilizador no Diaspora"
diaspora_handle: "Nome de Utilizador" diaspora_handle: "diaspora@handle.org"
enter_a_diaspora_username: "Insere um nome de utilizador do Diaspora" enter_a_diaspora_username: "Introduza um nome de utilizador do Diaspora:"
know_email: "Sabe os seus endereços de email? Deveria convidá-los" know_email: "Sabe os seus endereços de email? Deveria convidá-los"
your_diaspora_username_is: "O teu nome de utilizador do Diaspora é: %{diaspora_handle}" your_diaspora_username_is: "O seu nome de utilizador do Diaspora é: %{diaspora_handle}"
contact_list: contact_list:
all_contacts: "Todos os contactos" all_contacts: "Todos os contactos"
cannot_remove: "Impossível remover esta pessoa do último Grupo. (Se quiseres desligar-te desta pessoa terás que remover o contacto.)" cannot_remove: "Impossível remover esta pessoa do último Grupo. (Se quiseres desligar-te desta pessoa terás que remover o contacto.)"
@ -511,17 +516,17 @@ pt-PT:
dont_have_now: "Não tens nenhum agora, mas terás mais convites brevemente!" dont_have_now: "Não tens nenhum agora, mas terás mais convites brevemente!"
from_facebook: "Do Facebook" from_facebook: "Do Facebook"
invitations_left: "(faltam %{count})" invitations_left: "(faltam %{count})"
invite_someone: "Convida alguém" invite_someone: "Convidar alguém"
invite_your_friends: "Convidar amigos" invite_your_friends: "Convidar amigos"
invites: "Convites" invites: "Convites"
invites_closed: "Invites are currently closed on this Diaspora seed" invites_closed: "Invites are currently closed on this Diaspora seed"
notification: notification:
new: "Novo %{type} de %{from}" new: "Novo %{type} de %{from}"
public_explain: public_explain:
logged_in: "Registado em %{service}" logged_in: "Sessão iniciada em %{service}"
manage: "Gerir ligações a outros serviços" manage: "gerir serviços conectados"
outside: "As mensagens públicas ficarão visíveis a pessoas fora do Diaspora." outside: "As mensagens públicas ficarão visíveis a pessoas fora do Diaspora."
title: "Estás prestes a publicar uma mensagem pública!" title: "Configurar serviços conectados"
publisher: publisher:
add_photos: "adicionar fotografias" add_photos: "adicionar fotografias"
all: "tudo" all: "tudo"
@ -533,24 +538,25 @@ pt-PT:
public: "Public" public: "Public"
publishing_to: "publishing to: " publishing_to: "publishing to: "
share: "Partilhar" share: "Partilhar"
share_with: "Partilhar com %{aspect}" share_with: "partilhar com"
whats_on_your_mind: "No que está a pensar?" whats_on_your_mind: "No que está a pensar?"
reshare: reshare:
reshare: "Partilhar Novamente" reshare: "Voltar a partilhar"
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
destroy: destroy:
failure: "Failed to delete post" failure: "Failed to delete post"
helper: helper:
no_message_to_display: "Nenhuma mensagem para mostrar." no_message_to_display: "Não há mensagens para mostrar."
new: new:
mentioning: "Mentioning: %{person}" mentioning: "Mentioning: %{person}"
show: show:
destroy: "Destruir" destroy: "Apagar"
not_found: "Sorry, we couldn't find that post." not_found: "Sorry, we couldn't find that post."
permalink: "permalink" permalink: "permalink"
stream_helper: stream_helper:
@ -563,23 +569,24 @@ pt-PT:
posts_tagged_with: "Posts tagged with #%{tag}" posts_tagged_with: "Posts tagged with #%{tag}"
the_world: "o mundo" the_world: "o mundo"
undo: "Undo?" undo: "Undo?"
username: "Nome de Utilizador" username: "Nome de utilizador"
users: users:
destroy: "Conta encerrada com sucesso" destroy: "A conta foi encerrada com sucesso."
edit: edit:
also_commented: "...alguém também comenta no post do seu contacto?" also_commented: "...alguém também comenta no post do seu contacto?"
change: "Mudar" change: "Mudar"
change_language: "Modificar Idioma" change_language: "Mudar de Idioma"
change_password: "Modificar Palavra-chave" change_password: "Alterar a Palavra-passe"
close_account: "Encerrar Conta" close_account: "Encerrar a Conta"
comment_on_post: "...alguém comenta nos seus post?" comment_on_post: "...alguém comenta nos seus post?"
current_password: "Senha actual" current_password: "Senha actual"
download_photos: "descarregar as minhas fotos" download_photos: "descarregar as minhas fotografias"
download_xml: "descarregar o meu xml" download_xml: "descarregar o meu xml"
edit_account: "Editar conta" edit_account: "Editar conta"
export_data: "Exportar Dados" export_data: "Exportar Dados"
liked: "...someone likes your post?"
mentioned: "...você é mencionado num post?" mentioned: "...você é mencionado num post?"
new_password: "Nova Palavra-chave" new_password: "Nova Palavra-passe"
private_message: "...você recebe uma mensagem privada?" private_message: "...você recebe uma mensagem privada?"
receive_email_notifications: "Receive email notificaions?" receive_email_notifications: "Receive email notificaions?"
request_acceptence: "...o seu pedido de partilha é aceite?" request_acceptence: "...o seu pedido de partilha é aceite?"
@ -588,12 +595,12 @@ pt-PT:
your_handle: "O teu nome de utilizador no Diaspora" your_handle: "O teu nome de utilizador no Diaspora"
getting_started: getting_started:
connect_on_diaspora: "Connect on Diaspora" connect_on_diaspora: "Connect on Diaspora"
connect_services: "Liga os teus outros serviços" connect_services: "Ligue os seus outros serviços"
could_not_find_anyone: "Could not find any friends on Diaspora*. Use the friend finder to invite them." could_not_find_anyone: "Could not find any friends on Diaspora*. Use the friend finder to invite them."
edit_profile: "Edita o teu perfil" edit_profile: "Edite o seu perfil"
finished: "Terminado!" finished: "Terminado!"
save_and_continue: "Guardar e continuar" save_and_continue: "Guardar e continuar"
signup_steps: "Termina o teu registo completando estes três passos:" signup_steps: "Termine o seu registo completando estes três passos:"
skip: "saltar a introdução" skip: "saltar a introdução"
step_2: step_2:
find_your_friends_on_diaspora: "Would you like to find your Facebook friends on Diaspora?" find_your_friends_on_diaspora: "Would you like to find your Facebook friends on Diaspora?"
@ -606,10 +613,10 @@ pt-PT:
does_not_exist: "O utilizador %{username} não existe!" does_not_exist: "O utilizador %{username} não existe!"
update: update:
email_notifications_changed: "Language Change Failed" email_notifications_changed: "Language Change Failed"
language_changed: "Idioma Modificado" language_changed: "O Idioma Foi Alterado"
language_not_changed: "Falha ao Modificar Idioma" language_not_changed: "Falha ao Alterar o Idioma"
password_changed: "Palavra-chave Modificada" password_changed: "A palavra-passe foi alterada. Já pode iniciar sessão com a sua nova palavra-passe."
password_not_changed: "Falha ao Modificar Palavra-chave" password_not_changed: "Falhou ao alterar a palavra-passe"
webfinger: webfinger:
fetch_failed: "erro a obter perfil webfinger profile para %{profile_url}" fetch_failed: "erro a obter perfil webfinger profile para %{profile_url}"
hcard_fetch_failed: "there was a problem fetching the hcard for #{@account}" hcard_fetch_failed: "there was a problem fetching the hcard for #{@account}"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ ro:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Marchează-le pe toate ca citite" mark_all_as_read: "Marchează-le pe toate ca citite"
notifications: "Notificări" notifications: "Notificări"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ ro:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "robotul e-mail Diaspora" diaspora: "robotul e-mail Diaspora"
hello: "Bună %{name}!" hello: "Bună %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "cu dragoste," love: "cu dragoste,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ ro:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ ro:
download_xml: "descarcă datele mele (xml)" download_xml: "descarcă datele mele (xml)"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Exportare de date" export_data: "Exportare de date"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Parolă nouă" new_password: "Parolă nouă"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -123,7 +123,7 @@ ru:
few: "%{count} комментариев" few: "%{count} комментариев"
many: "%{count} комментариев" many: "%{count} комментариев"
new_comment: new_comment:
comment: "комментировать" comment: "комментарий"
commenting: "Комментирование ..." commenting: "Комментирование ..."
one: "1 комментарий" one: "1 комментарий"
other: "%{count} комментариев" other: "%{count} комментариев"
@ -236,17 +236,17 @@ ru:
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "%{count} персонам не понравилось" few: "%{count} не понравилось"
many: "%{count} персонам не понравилось" many: "%{count} не понравилось"
one: "1 пользователю это не понравилось" one: "%{count} не понравилось"
other: "%{count} пользователям это не понравилось " other: "%{count} не понравилось "
zero: "это никому не понравилось " zero: "никому не понравилось"
people_like_this: people_like_this:
few: "%{count} персонам это понравилось" few: "%{count} понравилось"
many: "%{count} персонам это понравилось" many: "%{count} понравилось"
one: "1 человеку это понравилось" one: "%{count} понравилось"
other: "%{count} персонам это понравилось" other: "%{count} понравилось"
zero: "это никому не понравилось" zero: "никому не понравилось"
more: "Подробнее" more: "Подробнее"
next: "далее" next: "далее"
no_results: "Результатов не найдено" no_results: "Результатов не найдено"
@ -267,6 +267,7 @@ ru:
and_others: "и %{number} других" and_others: "и %{number} других"
mark_all_as_read: "Отметить все как прочитанные" mark_all_as_read: "Отметить все как прочитанные"
notifications: "Уведомления" notifications: "Уведомления"
liked: "понравилось Ваше сообщение"
mentioned: "упомянул вас в" mentioned: "упомянул вас в"
new_request: "предлагает поделиться с вами." new_request: "предлагает поделиться с вами."
post: "сообщение." post: "сообщение."
@ -283,6 +284,10 @@ ru:
subject: "%{name} прокомментировал ваше сообщение." subject: "%{name} прокомментировал ваше сообщение."
diaspora: "почтовый робот Диаспоры" diaspora: "почтовый робот Диаспоры"
hello: "Привет %{name}!" hello: "Привет %{name}!"
liked:
liked: "%{name} понравилось Ваше сообщение:"
sign_in: "Войдите в систему, чтобы увидеть это"
subject: "%{name} понравилось Ваше сообщение"
love: "С уважением," love: "С уважением,"
manage_your_email_settings: "администрировать настройки электронной почты" manage_your_email_settings: "администрировать настройки электронной почты"
mentioned: mentioned:
@ -538,8 +543,9 @@ ru:
reshare: reshare:
reshare: "Поделиться повторно" reshare: "Поделиться повторно"
stream_element: stream_element:
dislike: "Мне это не нравится" dislike: "Не нравится"
like: "Мне это нравится " like: "Нравится"
unlike: "В отличие от"
status_messages: status_messages:
create: create:
success: "Успешно упомянут: %{names}" success: "Успешно упомянут: %{names}"
@ -578,6 +584,7 @@ ru:
download_xml: "Скачать мою информацию в xml" download_xml: "Скачать мою информацию в xml"
edit_account: "Редактировать аккаунт" edit_account: "Редактировать аккаунт"
export_data: "Экспорт информации" export_data: "Экспорт информации"
liked: "... кому-нибудь нравится ваше сообщение?"
mentioned: "... Вы упомянуты в сообщении?" mentioned: "... Вы упомянуты в сообщении?"
new_password: "Новый пароль" new_password: "Новый пароль"
private_message: "... Вы получаете личное сообщение?" private_message: "... Вы получаете личное сообщение?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ sk:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Všetko označiť ako prečítané" mark_all_as_read: "Všetko označiť ako prečítané"
notifications: "Notifikácie" notifications: "Notifikácie"
liked: "has just liked your post"
mentioned: "ťa spomenuli v ich" mentioned: "ťa spomenuli v ich"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "príspevok" post: "príspevok"
@ -283,6 +284,10 @@ sk:
subject: "Užívateľ %{name} komentoval Váš príspevok." subject: "Užívateľ %{name} komentoval Váš príspevok."
diaspora: "e-mail robot Diaspory" diaspora: "e-mail robot Diaspory"
hello: "Ahoj %{name}!" hello: "Ahoj %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "miluje," love: "miluje,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ sk:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ sk:
download_xml: "stiahnuť moje xml" download_xml: "stiahnuť moje xml"
edit_account: "Upraviť účet" edit_account: "Upraviť účet"
export_data: "Exportovať dáta" export_data: "Exportovať dáta"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Nové heslo" new_password: "Nové heslo"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ sl:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Označi vse kot prebrano" mark_all_as_read: "Označi vse kot prebrano"
notifications: "Sporočila" notifications: "Sporočila"
liked: "has just liked your post"
mentioned: "bili ste omenjeni v objavi" mentioned: "bili ste omenjeni v objavi"
new_request: "nekdo želi deliti z vami." new_request: "nekdo želi deliti z vami."
post: "prispevek" post: "prispevek"
@ -283,6 +284,10 @@ sl:
subject: "Oseba %{name} je komentirala vašo objavo." subject: "Oseba %{name} je komentirala vašo objavo."
diaspora: "diaspora email robot" diaspora: "diaspora email robot"
hello: "Pozdravljeni %{name}!" hello: "Pozdravljeni %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "vas pozdravlja," love: "vas pozdravlja,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ sl:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ sl:
download_xml: "prenesi v xml" download_xml: "prenesi v xml"
edit_account: "Uredi uporabniški račun" edit_account: "Uredi uporabniški račun"
export_data: "Izvozi podatke" export_data: "Izvozi podatke"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Novo geslo" new_password: "Novo geslo"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -53,9 +53,9 @@ sv:
aspect_contacts: aspect_contacts:
done_editing: "dölj" done_editing: "dölj"
aspect_stream: aspect_stream:
activity: "aktivitet" activity: "Aktivitet"
post_time: "skickat " post_time: "Skickat "
sort_by: "sortera efter:" sort_by: "Sortera efter:"
contacts_not_visible: "Kontakterna på den här aspekten kommer inte kunna se varandra." contacts_not_visible: "Kontakterna på den här aspekten kommer inte kunna se varandra."
contacts_visible: "Kontakterna på den här aspekten kommer kunna se varandra." contacts_visible: "Kontakterna på den här aspekten kommer kunna se varandra."
create: create:
@ -83,7 +83,7 @@ sv:
index: index:
handle_explanation: "Det här är ditt Diaspora-användarnamn. Det är den här du ska ge till dina vänner om du vill att de ska lägga till dig på Diaspora." handle_explanation: "Det här är ditt Diaspora-användarnamn. Det är den här du ska ge till dina vänner om du vill att de ska lägga till dig på Diaspora."
no_contacts: "Inga kontakter" no_contacts: "Inga kontakter"
post_a_message: "post a message >>" post_a_message: "skriv ett inlägg >>"
manage: manage:
add_a_new_aspect: "Lägg till en ny aspekt" add_a_new_aspect: "Lägg till en ny aspekt"
add_a_new_contact: "Lägg till en ny kontakt" add_a_new_contact: "Lägg till en ny kontakt"
@ -114,7 +114,7 @@ sv:
zero: "inga aspekter" zero: "inga aspekter"
back: "Tillbaka" back: "Tillbaka"
bookmarklet: bookmarklet:
explanation: "%{link} från var som helst genom att lägga till denhär länken som bokmärke." explanation: "%{link} från var som helst genom att lägga till den här länken som bokmärke."
explanation_link_text: "Posta på Diaspora" explanation_link_text: "Posta på Diaspora"
post_something: "Posta något till Diaspora" post_something: "Posta något till Diaspora"
post_success: "Postat! Stänger!" post_success: "Postat! Stänger!"
@ -123,7 +123,7 @@ sv:
few: "%{count} kommentarer" few: "%{count} kommentarer"
many: "%{count} kommentarer" many: "%{count} kommentarer"
new_comment: new_comment:
comment: "kommentar" comment: "Kommentera"
commenting: "Kommenterar..." commenting: "Kommenterar..."
one: "1 kommentar" one: "1 kommentar"
other: "%{count} kommentarer" other: "%{count} kommentarer"
@ -227,26 +227,26 @@ sv:
whats_new: "några nyheter?" whats_new: "några nyheter?"
your_aspects: "dina aspekter" your_aspects: "dina aspekter"
header: header:
blog: "blogg" blog: "Blogg"
code: "källkod" code: "källkod"
login: "logga in" login: "Logga in"
logout: "logga ut" logout: "Logga ut"
profile: "profil" profile: "profil"
settings: "inställningar" settings: "Inställningar"
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "%{count} personer ogillade dethär" few: "%{count} personer ogillar"
many: "%{count} personer ogillade dethär" many: "%{count} personer ogillar det här"
one: "1 person ogillade dethär" one: "1 person ogillar det här"
other: "%{count} person ogillade dethär" other: "%{count} personer ogillar det här"
zero: "inga personer ogillade dethär" zero: "inga personer ogillar det här"
people_like_this: people_like_this:
few: "%{count} personer gillade dethär" few: "%{count} personer gillar det här"
many: "%{count} personer gillade dethär" many: "%{count} personer gillar det här"
one: "1 person gillade dethär" one: "1 person gillar det här"
other: "%{count} personer gillade dethär" other: "%{count} personer gillar det här"
zero: "inga personer gillade dethär" zero: "inga personer gillar det här"
more: "Mer" more: "Mer"
next: "nästa" next: "nästa"
no_results: "Inga Resultat Funna" no_results: "Inga Resultat Funna"
@ -267,9 +267,10 @@ sv:
and_others: "och %{number} andra" and_others: "och %{number} andra"
mark_all_as_read: "Markera alla som läst" mark_all_as_read: "Markera alla som läst"
notifications: "Notifieringar" notifications: "Notifieringar"
mentioned: "har nämnt dig i deras" liked: "har precis gillat ditt inlägg"
mentioned: "har nämnt dig i sitt"
new_request: "erbjöd sig att dela med dig." new_request: "erbjöd sig att dela med dig."
post: "meddelande" post: "inlägg."
private_message: "skickade dig ett meddelande." private_message: "skickade dig ett meddelande."
request_accepted: "accepterade din förfrågan om att dela." request_accepted: "accepterade din förfrågan om att dela."
notifier: notifier:
@ -283,6 +284,10 @@ sv:
subject: "%{name} har kommenterat ditt inlägg." subject: "%{name} har kommenterat ditt inlägg."
diaspora: "Diasporas mailrobot" diaspora: "Diasporas mailrobot"
hello: "Hej %{name}!" hello: "Hej %{name}!"
liked:
liked: "%{name} har precis gillat ditt inlägg: "
sign_in: "Logga in för att se"
subject: "%{name} har precis gillat ditt inlägg"
love: "hälsningar," love: "hälsningar,"
manage_your_email_settings: "administrera dina epost-inställningar" manage_your_email_settings: "administrera dina epost-inställningar"
mentioned: mentioned:
@ -355,7 +360,7 @@ sv:
recent_posts: "Postat nyligen" recent_posts: "Postat nyligen"
recent_public_posts: "Senaste publika inlägg" recent_public_posts: "Senaste publika inlägg"
return_to_aspects: "Återgå till översikten" return_to_aspects: "Återgå till översikten"
see_all: "See all" see_all: "Visa alla"
start_sharing: "börja dela" start_sharing: "börja dela"
to_accept_or_ignore: "for att acceptera eller ignorera." to_accept_or_ignore: "for att acceptera eller ignorera."
you_have_no_tags: "du har inga taggar!" you_have_no_tags: "du har inga taggar!"
@ -509,7 +514,7 @@ sv:
invitations: invitations:
by_email: "by Emaila" by_email: "by Emaila"
dont_have_now: "Du har inga inbjudningar just nu, men fler kommer delas ut inom kort!" dont_have_now: "Du har inga inbjudningar just nu, men fler kommer delas ut inom kort!"
from_facebook: "Från Facebook" from_facebook: "från Facebook"
invitations_left: "(%{count} kvar)" invitations_left: "(%{count} kvar)"
invite_someone: "Bjud in en kontakt" invite_someone: "Bjud in en kontakt"
invite_your_friends: "Bjud in dina vänner" invite_your_friends: "Bjud in dina vänner"
@ -534,12 +539,13 @@ sv:
publishing_to: "publicerar till: " publishing_to: "publicerar till: "
share: "Dela" share: "Dela"
share_with: "dela med" share_with: "dela med"
whats_on_your_mind: "vad har du på hjärtat?" whats_on_your_mind: "Vad har du på hjärtat?"
reshare: reshare:
reshare: "Återdela" reshare: "Återdela"
stream_element: stream_element:
dislike: "Jag ogillar dethär" dislike: "Jag ogillar det här"
like: "Jag gillar dethär" like: "Jag gillar det här"
unlike: "Sluta gilla"
status_messages: status_messages:
create: create:
success: "Lyckades omnämna: %{names}" success: "Lyckades omnämna: %{names}"
@ -555,7 +561,7 @@ sv:
permalink: "permalänk" permalink: "permalänk"
stream_helper: stream_helper:
hide_comments: "dölj kommentarer" hide_comments: "dölj kommentarer"
show_comments: "visa alla kommentarer" show_comments: "Visa alla kommentarer"
tags: tags:
show: show:
nobody_talking: "Ingen talar om %{tag} än." nobody_talking: "Ingen talar om %{tag} än."
@ -578,6 +584,7 @@ sv:
download_xml: "Ladda ner min xml" download_xml: "Ladda ner min xml"
edit_account: "Ändra konto" edit_account: "Ändra konto"
export_data: "Exportera data" export_data: "Exportera data"
liked: "...någon gillar ditt inlägg?"
mentioned: "...du är omnämnd i en post?" mentioned: "...du är omnämnd i en post?"
new_password: "Nytt lösenord" new_password: "Nytt lösenord"
private_message: "...du mottar ett privat meddelande?" private_message: "...du mottar ett privat meddelande?"
@ -608,7 +615,7 @@ sv:
email_notifications_changed: "E-post-notifieringar har ändrats" email_notifications_changed: "E-post-notifieringar har ändrats"
language_changed: "Språk är nu ändrat" language_changed: "Språk är nu ändrat"
language_not_changed: "Språket kunde inte ändras" language_not_changed: "Språket kunde inte ändras"
password_changed: "Lösenordet är nu ändrat" password_changed: "Lösenordet är nu ändrat."
password_not_changed: "Lösenordet kunde inte ändras" password_not_changed: "Lösenordet kunde inte ändras"
webfinger: webfinger:
fetch_failed: "Kunde inte hämta webfinger-profil för %{profile_url}" fetch_failed: "Kunde inte hämta webfinger-profil för %{profile_url}"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ tr:
and_others: "and %{number} others" and_others: "and %{number} others"
mark_all_as_read: "Mark All as Read" mark_all_as_read: "Mark All as Read"
notifications: "Notifications" notifications: "Notifications"
liked: "has just liked your post"
mentioned: "has mentioned you in their" mentioned: "has mentioned you in their"
new_request: "offered to share with you." new_request: "offered to share with you."
post: "post" post: "post"
@ -283,6 +284,10 @@ tr:
subject: "%{name} has commented on your post." subject: "%{name} has commented on your post."
diaspora: "Diaspora e-posta robotu" diaspora: "Diaspora e-posta robotu"
hello: "Merhaba %{name}!" hello: "Merhaba %{name}!"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "love," love: "love,"
manage_your_email_settings: "manage your email settings" manage_your_email_settings: "manage your email settings"
mentioned: mentioned:
@ -540,6 +545,7 @@ tr:
stream_element: stream_element:
dislike: "I dislike this" dislike: "I dislike this"
like: "I like this" like: "I like this"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "Successfully mentioned: %{names}" success: "Successfully mentioned: %{names}"
@ -578,6 +584,7 @@ tr:
download_xml: "xml dosyamı kaydet" download_xml: "xml dosyamı kaydet"
edit_account: "Edit account" edit_account: "Edit account"
export_data: "Bilgilerimi Dışarı taşı" export_data: "Bilgilerimi Dışarı taşı"
liked: "...someone likes your post?"
mentioned: "...you are mentioned in a post?" mentioned: "...you are mentioned in a post?"
new_password: "Yeni Şifre" new_password: "Yeni Şifre"
private_message: "...you receive a private message?" private_message: "...you receive a private message?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -267,6 +267,7 @@ zh-CN:
and_others: "和其他%{number}个人" and_others: "和其他%{number}个人"
mark_all_as_read: "全部标示为已读" mark_all_as_read: "全部标示为已读"
notifications: "消息" notifications: "消息"
liked: "has just liked your post"
mentioned: "在他发布的内容中提到了你" mentioned: "在他发布的内容中提到了你"
new_request: "想要与您分享。" new_request: "想要与您分享。"
post: "日志。" post: "日志。"
@ -283,6 +284,10 @@ zh-CN:
subject: "%{name} 评论了您发布的内容。" subject: "%{name} 评论了您发布的内容。"
diaspora: "diaspora邮件机器人" diaspora: "diaspora邮件机器人"
hello: "您好 %{name}" hello: "您好 %{name}"
liked:
liked: "%{name} has just liked your post: "
sign_in: "Sign to view it"
subject: "%{name} has just liked your post"
love: "衷心祝福," love: "衷心祝福,"
manage_your_email_settings: "管理邮件设置" manage_your_email_settings: "管理邮件设置"
mentioned: mentioned:
@ -540,6 +545,7 @@ zh-CN:
stream_element: stream_element:
dislike: "不喜欢" dislike: "不喜欢"
like: "喜欢" like: "喜欢"
unlike: "Unlike"
status_messages: status_messages:
create: create:
success: "成功推荐了: %{names}" success: "成功推荐了: %{names}"
@ -578,6 +584,7 @@ zh-CN:
download_xml: "下载我的 xml" download_xml: "下载我的 xml"
edit_account: "编辑帐号" edit_account: "编辑帐号"
export_data: "资料导出" export_data: "资料导出"
liked: "...someone likes your post?"
mentioned: "……当贴文中提到您时?" mentioned: "……当贴文中提到您时?"
new_password: "新密码" new_password: "新密码"
private_message: "……当收到私人信息时?" private_message: "……当收到私人信息时?"

View file

@ -1,4 +1,4 @@
# Copyright (c) 2010, Diaspora Inc. This file is # Copyright (c) 2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See # licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file. # the COPYRIGHT file.
@ -36,7 +36,7 @@ zh-TW:
all_aspects: "所有面向" all_aspects: "所有面向"
application: application:
helper: helper:
diaspora_alpha: "DIASPORA* ALPHA" diaspora_alpha: "DIASPORA* 預覽版"
unknown_person: "不明聯絡人" unknown_person: "不明聯絡人"
video_title: video_title:
unknown: "影片標題不明" unknown: "影片標題不明"
@ -236,23 +236,23 @@ zh-TW:
likes: likes:
likes: likes:
people_dislike_this: people_dislike_this:
few: "有%{count}個人說遜" few: "有%{count}個遜"
many: "有%{count}個人說遜" many: "有%{count}個遜"
one: "有1個人說遜" one: "有%{count}個遜"
other: "有%{count}個人說遜" other: "有%{count}個遜"
zero: "沒有人說遜" zero: "沒有遜"
people_like_this: people_like_this:
few: "有%{count}個人說讚" few: "有%{count}個讚"
many: "有%{count}個人說讚" many: "有%{count}個讚"
one: "有1個人說讚" one: "有%{count}個讚"
other: "有%{count}個人說讚" other: "有%{count}個讚"
zero: "沒有人說讚" zero: "沒有讚"
more: "更多" more: "更多"
next: "後面" next: "後面"
no_results: "搜尋沒有結果" no_results: "搜尋沒有結果"
notifications: notifications:
also_commented: "也在別處發表了意見, 在 %{post_author} 的" also_commented: "也在別處發表了意見, 在 %{post_author} 的"
also_commented_deleted: "對已刪除的貼文發表意見" also_commented_deleted: "對已刪除的貼文發表意見."
comment_on_post: "發表了意見, 在你的" comment_on_post: "發表了意見, 在你的"
deleted: "已刪除" deleted: "已刪除"
helper: helper:
@ -267,9 +267,10 @@ zh-TW:
and_others: "和其他%{number}個人" and_others: "和其他%{number}個人"
mark_all_as_read: "全部標示為已讀" mark_all_as_read: "全部標示為已讀"
notifications: "消息" notifications: "消息"
liked: "剛剛對你的貼文說讚"
mentioned: "在貼文中提到了你" mentioned: "在貼文中提到了你"
new_request: "想要跟你分享." new_request: "想要跟你分享."
post: "貼文" post: "貼文."
private_message: "寫了一則訊息給你." private_message: "寫了一則訊息給你."
request_accepted: "已同意和你分享." request_accepted: "已同意和你分享."
notifier: notifier:
@ -283,6 +284,10 @@ zh-TW:
subject: "%{name} 對你的貼文發表意見." subject: "%{name} 對你的貼文發表意見."
diaspora: "diaspora 電郵機器人" diaspora: "diaspora 電郵機器人"
hello: "%{name}你好!" hello: "%{name}你好!"
liked:
liked: "%{name}剛剛說你的貼文讚: "
sign_in: "登入來看看"
subject: "%{name}剛剛說你的貼文讚"
love: "衷心祝福," love: "衷心祝福,"
manage_your_email_settings: "管理電郵設定" manage_your_email_settings: "管理電郵設定"
mentioned: mentioned:
@ -540,6 +545,7 @@ zh-TW:
stream_element: stream_element:
dislike: "遜" dislike: "遜"
like: "讚" like: "讚"
unlike: "收回讚"
status_messages: status_messages:
create: create:
success: "成功推薦了: %{names}" success: "成功推薦了: %{names}"
@ -578,6 +584,7 @@ zh-TW:
download_xml: "下載我的 xml" download_xml: "下載我的 xml"
edit_account: "編輯帳號" edit_account: "編輯帳號"
export_data: "資料匯出" export_data: "資料匯出"
liked: "...有人對你的貼文說讚時?"
mentioned: "...當貼文中提到你時?" mentioned: "...當貼文中提到你時?"
new_password: "新的密碼" new_password: "新的密碼"
private_message: "...當收到私人訊息時?" private_message: "...當收到私人訊息時?"

Some files were not shown because too many files have changed in this diff Show more