Skip to content

Commit

Permalink
updated translations to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
egarcia committed Mar 12, 2010
1 parent d3e7af7 commit 4cc8357
Show file tree
Hide file tree
Showing 32 changed files with 195 additions and 186 deletions.
12 changes: 6 additions & 6 deletions app/views/mailing_list/show.html.erb
@@ -1,24 +1,24 @@
<% html_title l(:redmine_sympa_mailing_list_page_title, @project.name) -%>
<% html_title l(:redmine_sympa_mailing_list_page_title, :name => @project.name) -%>
<h2> <%=h @project.name %> mailing list </h2>

<p>
<%=l(:redmine_sympa_mailing_list_page_intro, @project.sympa_mailing_list_address, @project.sympa_mailing_list_address) %>
<%=l(:redmine_sympa_mailing_list_page_intro, :address => @project.sympa_mailing_list_address) %>
</p>

<p>
<%=l(:redmine_sympa_mailing_list_page_subscribe, @sympa_address, @sympa_address, @project.identifier) %>
<%=l(:redmine_sympa_mailing_list_page_subscribe, :address => @sympa_address, :list => @project.identifier) %>
</p>

<p>
<%=l(:redmine_sympa_mailing_list_page_unsubscribe, @sympa_address, @sympa_address, @project.identifier) %>
<%=l(:redmine_sympa_mailing_list_page_unsubscribe, :address => @sympa_address, :list => @project.identifier) %>
</p>

<p>
<%=l(:redmine_sympa_mailing_list_page_subscription_web, @sympa_address, @sympa_address) %>
<%=l(:redmine_sympa_mailing_list_page_subscription_web, :url => @project.sympa_archive_url) %>
</p>

<p>
<%=l(:redmine_sympa_mailing_list_page_archive_text, @project.sympa_archive_url, @project.sympa_archive_url) %>
<%=l(:redmine_sympa_mailing_list_page_archive_text, :url => @project.sympa_archive_url) %>
</p>

<p>
Expand Down
9 changes: 9 additions & 0 deletions db/migrate/001_add_sympa_info_to_projects.rb
@@ -0,0 +1,9 @@
class AddSympaInfoToProjects < ActiveRecord::Migration
def self.up
add_column :projects, :sympa_info, :text
end

def self.down
remove_column :projects, :sympa_info
end
end
12 changes: 6 additions & 6 deletions lang/bg.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/ca.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/cs.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/da.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/de.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/en.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/es.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/fi.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."
12 changes: 6 additions & 6 deletions lang/fr.yml
Expand Up @@ -10,9 +10,9 @@ redmine_sympa_setting_log: "Sympa log"
redmine_sympa_setting_archive_url: "Archive url prefix"
redmine_sympa_setting_list_type: "List type"
field_sympa_info: "Mailing list information"
redmine_sympa_mailing_list_page_title: "%s mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:%s'>%s</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:%s'>%s</a> containing the header: <em>subscribe %s Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:%s'>%s</a> containing the header: <em>unsubscribe %s</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use sympa's web interface for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='%s'>%s</a>."
redmine_sympa_mailing_list_page_title: "{{name}} mailing list"
redmine_sympa_mailing_list_page_intro: "This project's mailing list address is <b><a href='mailto:{{address}}'>{{address}}</a></b>"
redmine_sympa_mailing_list_page_subscribe: "In order to subscribe, please send a message to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>subscribe {{list}} Firstname Name</em>. Leave the message body blank."
redmine_sympa_mailing_list_page_unsubscribe: "In order to unsubscribe, please send an email to <a href='mailto:{{address}}'>{{address}}</a> containing the header: <em>unsubscribe {{list}} </em>. Leave the message body blank."
redmine_sympa_mailing_list_page_subscription_web: "You may also use <a href='{{url}}'>sympa's web interface</a> for subscribing/unsubscribing."
redmine_sympa_mailing_list_page_archive_text: "The list archive is available in <a href='{{url}}'>{{url}}</a>."

0 comments on commit 4cc8357

Please sign in to comment.