diff --git a/Gemfile b/Gemfile index dfb31f5..d4026dd 100644 --- a/Gemfile +++ b/Gemfile @@ -71,6 +71,7 @@ group :test do gem 'webmock', require: false gem 'cucumber-rails', :require => false gem 'database_cleaner' + gem 'mocha' end group :staging, :production, :preview do diff --git a/Gemfile.lock b/Gemfile.lock index 2e90602..e6e0a5b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -247,11 +247,14 @@ GEM callsite (~> 0.0, >= 0.0.11) rack-contrib (~> 1.1) railties (>= 3.0.0, < 5.0.0) + metaclass (0.0.4) method_source (0.8.2) mime-types (2.6.1) mini_magick (4.2.10) mini_portile (0.6.2) minitest (5.8.0) + mocha (1.1.0) + metaclass (~> 0.0.1) multi_json (1.11.2) multi_test (0.1.2) multipart-post (2.0.0) @@ -495,6 +498,7 @@ DEPENDENCIES lingua_franca! meta_request mini_magick + mocha nested_form oauth2 (~> 0.8.0) paper_trail (~> 3.0.5) diff --git a/app/assets/images/logo-text.png b/app/assets/images/logo-text.png deleted file mode 100644 index e35555c..0000000 Binary files a/app/assets/images/logo-text.png and /dev/null differ diff --git a/app/assets/images/logo.png b/app/assets/images/logo.png index 25f4f38..89f8cdd 100644 Binary files a/app/assets/images/logo.png and b/app/assets/images/logo.png differ diff --git a/app/assets/stylesheets/_application.scss b/app/assets/stylesheets/_application.scss index db0d2e9..7783275 100644 --- a/app/assets/stylesheets/_application.scss +++ b/app/assets/stylesheets/_application.scss @@ -1,10 +1,12 @@ @import "bumbleberry"; @import "settings"; +$zindex-base: 0; + html, body { color: #333; position: relative; - z-index: -1; + z-index: $zindex-base; } h1, h2, h3, h4, h5, label, button, .button, dt, th, nav.sub-menu { @@ -300,7 +302,7 @@ input { label { position: absolute; - z-index: 2; + z-index: $zindex-base + 3; font-size: 1em; //float: left; //@include font-family(primary); @@ -332,7 +334,7 @@ input { transparent 6px ); label { - z-index: 0; + z-index: $zindex-base + 1; @include _(transform, translateY(-100%) scale(1)); background-color: transparent; color: #888; @@ -345,7 +347,7 @@ input { input { margin: 0; position: relative; - z-index: 1; + z-index: $zindex-base + 2; padding: 0.15em 0.5em; background-color: transparent; border: 0; @@ -384,7 +386,7 @@ input { &:checked { + div input { //display: block; - z-index: 1; + z-index: $zindex-base + 2; @include _(opacity, 1); } } @@ -400,7 +402,7 @@ input { //display: none; @include _(opacity, 0); @include _(transition, opacity 250ms ease-in-out); - z-index: -1; + z-index: $zindex-base; position: absolute; width: auto; margin: 0; @@ -624,19 +626,29 @@ form { width: 100%; background-color: $white; @include default-box-shadow(top, 2); - z-index: 1; + z-index: $zindex-base + 2; .nav { text-align: center; clear: left; overflow: auto; background-color: $colour-3; + height: 2em; + + span { + display: table-cell; + text-align: center; + width: 100%; + height: 100%; + vertical-align: middle; + } a { position: relative; - display: inline-block; margin: 0; - padding: 1em 0; + display: table; + height: 100%; + overflow: hidden; float: left; font-weight: normal; @include font-family(secondary); @@ -691,7 +703,7 @@ form { #main { position: relative; - z-index: -1; + //z-index: $zindex-base; max-width: (rems(68) - $sidebar-width) * 2; background-color: $white; padding-bottom: rems(2); @@ -763,22 +775,23 @@ a.logo { fill: #333; } - .logo svg { - display: inline-block; - height: 1em; - width: 1em; - float: left; - } - .logo:hover svg.bb-icon-logo { @include _(animation, active-logo 4s infinite); } } +.logo .icons { + display: inline-block; + height: 1em; + width: 1em; + float: left; +} + #banner { clear: left; figure { + position: relative; width: 100%; max-width: rems(60); margin: 0; @@ -801,7 +814,7 @@ $header-tilt: 8deg; color: #EEE; overflow: hidden; position: relative; - z-index: -1; + z-index: $zindex-base; rect { fill: $colour-1; @@ -837,7 +850,7 @@ $header-tilt: 8deg; right: 0; bottom: 0; left: 0; - z-index: -1; + z-index: $zindex-base; background-size: inherit; background-position: inherit; -webkit-filter: saturate(25%); @@ -853,7 +866,7 @@ $header-tilt: 8deg; font-size: 3.5em; margin: 0.25em 0.5em; position: relative; - z-index: 1; + z-index: $zindex-base + 2; @include _(text-shadow, 0 0 0.15em #000); } } @@ -950,7 +963,7 @@ $header-tilt: 8deg; border: 0.1em solid #DDD; padding: 0.5em 0.5em 0.5em 2em; text-align: center; - z-index: 1; + z-index: $zindex-base + 2; margin-bottom: 0.5em; a { @@ -1005,7 +1018,7 @@ $header-tilt: 8deg; position: fixed; top: 0.5em; left: -1em; - z-index: 11; + z-index: $zindex-base + 12; color: #333; font-size: 2em; opacity: 0; @@ -1022,7 +1035,7 @@ $header-tilt: 8deg; padding: 1em 4em; overflow: auto; background-color: $white; - z-index: 10; + z-index: $zindex-base + 11; @include _(transform, scale(0)); @include _(transform-origin, 6.25em _calc('100% - 2em', 98%)); @include _(transition, 250ms all ease-in-out); @@ -1063,7 +1076,7 @@ $header-tilt: 8deg; right: 0; bottom: 0; left: 0; - z-index: 1; + z-index: $zindex-base + 2; } } @@ -1124,13 +1137,20 @@ $header-tilt: 8deg; height: rems(6); .nav { + height: auto; width: 80%; clear: none; padding-top: rems(1.5); background-color: transparent; overflow: visible; + span { + display: inline; + } + a { + display: inline-block; + overflow: visible; padding: 0; float: none; width: auto; @@ -1202,7 +1222,7 @@ $header-tilt: 8deg; right: 0; bottom: 0; left: 0; - z-index: 1; + z-index: $zindex-base + 2; @include _(box-shadow, inset 0 -13rem 3em -4rem rgba(0, 0, 0, 0.8)); @include _(transition, opacity 250ms ease-in-out); } @@ -1267,7 +1287,7 @@ $header-tilt: 8deg; top: 0; right: 0; left: $sidebar-width; - z-index: 1; + z-index: $zindex-base + 2; } figure { @@ -1342,10 +1362,22 @@ $header-tilt: 8deg; #footer { position: fixed; - z-index: 1; - bottom: 0; + z-index: $zindex-base + 2; + width: 0; + overflow: visible; + padding: 0; + top: 0; + min-height: 42em; + height: 100%; left: 0; - width: $sidebar-width; + + footer { + position: absolute; + height: 3.5em; + width: $sidebar-width; + bottom: 0; + padding: 1em; + } .github { position: absolute; @@ -1528,7 +1560,7 @@ $header-tilt: 8deg; @include _(transition, transform 100ms ease-in-out); &:hover { - z-index: 2; + z-index: $zindex-base + 3; @include _(transform, scale(1.25)); } } @@ -1630,7 +1662,7 @@ $header-tilt: 8deg; .value { position: relative; - z-index: 1; + z-index: $zindex-base + 2; } .stat-with-label { @@ -1717,7 +1749,7 @@ $header-tilt: 8deg; @include _(transition, transform 150ms ease-in-out); &:hover, &:focus, &:active { - z-index: 1; + z-index: $zindex-base + 2; @include _(transform, scale(1.1)); } @@ -1728,7 +1760,7 @@ $header-tilt: 8deg; right: 0; bottom: 0; left: 0; - z-index: 1; + z-index: $zindex-base + 2; cursor: pointer; @include _(box-shadow, inset 0em -2em 2em -1em $white); } @@ -1745,3 +1777,52 @@ $header-tilt: 8deg; overflow: hidden; opacity: 0; } + +@include keyframes(bouncy) { + from { transform: translateY(-0.25em); } + to { transform: translateY(0.25em); } +} + +#lingua-franca-pointer { + $colour: $colour-2; + width: 0.6667em; + height: 1.25em; + background-color: $colour; + //border: 1px solid $white; + //opacity: 0.75; + z-index: 1000; + margin-left: -0.5em; + margin-top: -2em; + @include _(mix-blend-mode, multiply); + @include default-box-shadow(top, 2); + @include _(animation, bouncy 1s infinite alternate); + + $twidth: 0.8em; + @include after { + content: ''; + width: 0; + height: 0; + position: absolute; + border-style: solid; + border-color: $colour transparent transparent; + border-width: $twidth $twidth 0; + top: 100%; + left: -.4em; + } + + &.up { + margin-top: 2em; + + @include after { + top: auto; + bottom: 100%; + border-color: transparent transparent $colour; + border-width: 0 $twidth $twidth; + } + } +} + +.translated-content { + //overflow: auto; + display: inherit; +} diff --git a/app/assets/stylesheets/_translations.scss b/app/assets/stylesheets/_translations.scss index ff672b6..d802c42 100644 --- a/app/assets/stylesheets/_translations.scss +++ b/app/assets/stylesheets/_translations.scss @@ -13,9 +13,9 @@ $bumbleberry-no-markup: true; li { display: inline-block; - float: left; width: 25%; padding: 1em; + min-width: 10em; } a { @@ -135,6 +135,7 @@ $bumbleberry-no-markup: true; font-size: 0.65em; margin-bottom: 1em; vertical-align: sub; + @include _(text-stroke, 0); &.special { background-color: $colour-4; @@ -348,9 +349,9 @@ html #lingua-franca-translation-form { @include _(transform, scale(0.75) translate(0, 0)); @include default-box-shadow(top, 2); - @include breakpoint(large) { - left: 8.75rem; - } + //@include breakpoint(large) { + // left: 8.75rem; + //} } @include after { @@ -388,6 +389,9 @@ html #lingua-franca-translation-form { } #lingua-franca-translation-history .translation-diff-info, +#lingua-franca-translation-history .diff { + @include clearfix; +} #lingua-franca-translation-history .diff ul { list-style: none; padding: 0; @@ -430,12 +434,6 @@ html #lingua-franca-translation-form { } } -@include breakpoint(large) { - .lingua-franca-translations { - left: $sidebar-width; - } - - .actions { - margin-top: 1em; - } +.actions { + margin-top: 1em; } diff --git a/app/controllers/conferences_controller.rb b/app/controllers/conferences_controller.rb index 9c8b2ab..73aabc6 100644 --- a/app/controllers/conferences_controller.rb +++ b/app/controllers/conferences_controller.rb @@ -49,7 +49,7 @@ class ConferencesController < ApplicationController @this_conference.info = params[:info] @this_conference.save - redirect_to edit_conference_path @this_conference + redirect_to edit_conference_path(@this_conference) end def hosts diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 5fc52bd..f9aad04 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -384,6 +384,29 @@ module ApplicationHelper end end + def m(*args) + _(*args) { |t| + markdown(t).html_safe + } + end + + def markdown(object, attribute = nil) + return '' unless object + content = attribute ? object.send(attribute.to_s) : object + @markdown ||= Redcarpet::Markdown.new(Redcarpet::Render::HTML.new({ + filter_html: true, + hard_wrap: true, + space_after_headers: true, + fenced_code_blocks: true, + link_attributes: { target: "_blank" } + }), { + autolink: true, + disable_indented_code_blocks: true, + superscript: true + }) + @markdown.render(content) + end + def paragraph(object, attribute = nil) return '' unless object content = attribute ? object.send(attribute.to_s) : object @@ -400,18 +423,7 @@ module ApplicationHelper result = '

' + result + '

' end else - @markdown ||= Redcarpet::Markdown.new(Redcarpet::Render::HTML.new({ - filter_html: true, - hard_wrap: true, - space_after_headers: true, - fenced_code_blocks: true, - link_attributes: { target: "_blank" } - }), { - autolink: true, - disable_indented_code_blocks: true, - superscript: true - }) - result = @markdown.render(content) + result = markdown(object, attribute) end result.html_safe end @@ -625,7 +637,7 @@ module ApplicationHelper end def nav_link(link, title) - link_to title, link, :class => (current_page?(link) ? 'current' : nil) + link_to "#{title}".html_safe, link, :class => (current_page?(link) ? 'current' : nil) end def date(date, format = :long) diff --git a/app/views/application/_header.html.haml b/app/views/application/_header.html.haml index ded44ee..488bf25 100644 --- a/app/views/application/_header.html.haml +++ b/app/views/application/_header.html.haml @@ -3,9 +3,9 @@ - style = nil - cover = nil - figure = nil - - if capable_of(:css_mixblendmode) || ENV['RAILS_ENV'] == 'test' + - if capable_of(:css_mixblendmode) - cover = "
" - - elsif capable_of(:svg) + - elsif capable_of(:svg) && Rails.env != 'test' - banner_image = 'application/banner_image.svg' - else - style = "background-image: url(#{image})" diff --git a/app/views/application/_login_confirmation_sent.html.haml b/app/views/application/_login_confirmation_sent.html.haml index bcd6caa..8d03d41 100644 --- a/app/views/application/_login_confirmation_sent.html.haml +++ b/app/views/application/_login_confirmation_sent.html.haml @@ -2,4 +2,4 @@ = columns(medium: 12) do %h2=_'articles.permission_denied.headings.confirmation_sent','Confirmation Sent' = columns(medium: 6) do - =paragraph _('articles.permission_denied.paragraphs.confirmation_sent', :p) + =m('articles.permission_denied.paragraphs.confirmation_sent', :p) diff --git a/app/views/conferences/_email_confirm.html.haml b/app/views/conferences/_email_confirm.html.haml index a2f0f59..c0472c7 100644 --- a/app/views/conferences/_email_confirm.html.haml +++ b/app/views/conferences/_email_confirm.html.haml @@ -3,4 +3,4 @@ = columns(medium: 12) do %h2=_'articles.conference_registration.headings.email_confirm','Please confirm your email address' = columns(medium: 12) do - =paragraph _('articles.conference_registration.paragraphs.email_confirm', :p) + =m('articles.conference_registration.paragraphs.email_confirm', :p) diff --git a/app/views/conferences/broadcast.html.haml b/app/views/conferences/broadcast.html.haml index 5710dc3..31e1ad7 100644 --- a/app/views/conferences/broadcast.html.haml +++ b/app/views/conferences/broadcast.html.haml @@ -5,12 +5,12 @@ - if @email_sent == :yes %p=_('articles.conference_registration.paragraphs.participants_emailed',"All participants of #{@this_conference.title} have been emailed.", :vars => {:conference_title => @this_conference.title}) - if @email_sent != :yes - =paragraph(_'articles.conference_registration.paragraphs.Email_Participants','This page is used to contact all participants. Text can be entered as [Markdown](http://daringfireball.net/projects/markdown/basics). Pressing \'test\' will send the email only to you, make sure you do this and use caution in general before pressing \'send\'') + =m('articles.conference_registration.paragraphs.Email_Participants','This page is used to contact all participants. Text can be entered as [Markdown](http://daringfireball.net/projects/markdown/basics). Pressing \'test\' will send the email only to you, make sure you do this and use caution in general before pressing \'send\'') - if @email_sent == :yes || @email_sent == :preview %h2=_'articles.conference_registration.headings.Preview' .email-preview %h3=@subject - =paragraph @content + =markdown @content - if @email_sent != :yes = form_tag broadcast_path(@this_conference.slug), class: 'composition' do - if @email_sent == :preview diff --git a/app/views/shared/_navbar.html.haml b/app/views/shared/_navbar.html.haml index 0eda2c7..e24721c 100644 --- a/app/views/shared/_navbar.html.haml +++ b/app/views/shared/_navbar.html.haml @@ -1,19 +1,21 @@ -%nav#main-nav - = link_to '/', :class => 'logo' do - = svg_sprite('icons', "bb-icon-logo", "Logo") - = svg_sprite('icons', "bb-icon-logo-text", "Logo Text") - .nav - = nav_link home_path, (@conference ? @conference.title : 'Bike!Bike!') - = nav_link about_path, (_'page_titles.About_BikeBike') - = nav_link policy_path, (_'page_titles.Safe_Space_Policy') - .actions - - if @conference.registration_open - - if params[:action] != 'register' && !@registration - = link_to register_path(@conference.slug), class: [:button, :register] do - =_'conference.actions.Register' - - else - = render 'shared/donate_button', :email_address => (@conference.paypal_email_address || @conference.email_address) - - if current_user - = form_tag :logout, class: :logout do - =hidden_field_tag :url, request.fullpath - =button_tag :Log_out \ No newline at end of file +%nav + #main-nav + .inner-nav + = link_to '/', :class => 'logo' do + = svg_sprite('icons', "bb-icon-logo", "Logo") + = svg_sprite('icons', "bb-icon-logo-text", "Logo Text") + .nav + = nav_link home_path, (@conference ? @conference.title : 'Bike!Bike!') + = nav_link about_path, (_'page_titles.About_BikeBike') + = nav_link policy_path, (_'page_titles.Safe_Space_Policy') + .actions + - if @conference.registration_open + - if params[:action] != 'register' && !@registration + = link_to register_path(@conference.slug), class: [:button, :register] do + =_'conference.actions.Register' + - else + = render 'shared/donate_button', :email_address => (@conference.paypal_email_address || @conference.email_address) + - if current_user + = form_tag :logout, class: :logout do + =hidden_field_tag :url, request.fullpath + =button_tag :Log_out \ No newline at end of file diff --git a/app/views/user_mailer/broadcast.html.haml b/app/views/user_mailer/broadcast.html.haml index b1145ba..0463213 100644 --- a/app/views/user_mailer/broadcast.html.haml +++ b/app/views/user_mailer/broadcast.html.haml @@ -1 +1 @@ -=paragraph @content \ No newline at end of file +=markdown @content \ No newline at end of file diff --git a/app/views/workshops/index.html.haml b/app/views/workshops/index.html.haml index f9c3032..b6fc089 100644 --- a/app/views/workshops/index.html.haml +++ b/app/views/workshops/index.html.haml @@ -13,7 +13,7 @@ %li =link_to view_workshop_path(@this_conference.slug, w.id) do %h4=_!(w.title) - =paragraph _!(w.info) + =markdown _!(w.info) = link_to (_'actions.workshops.create','New Workshop'), create_workshop_path(@this_conference.slug), class: :button = row do %ul.workshop-previews @@ -23,4 +23,4 @@ = columns(medium: 6) do =link_to view_workshop_path(@this_conference.slug, w.id) do %h4=_!(w.title) - =paragraph _!(w.info) + =markdown _!(w.info) diff --git a/app/views/workshops/new.html.haml b/app/views/workshops/new.html.haml index 77e7bdb..6365028 100644 --- a/app/views/workshops/new.html.haml +++ b/app/views/workshops/new.html.haml @@ -4,7 +4,7 @@ = form_tag save_workshop_path(@this_conference.slug), class: 'composition' do = (hidden_field_tag :workshop_id, @workshop.id) if @workshop = columns(medium: 12) do - =paragraph(_'articles.workshops.paragraphs.new_workshop','Please accurately describe your workshop in detail. This will help hosts decide if they wish to add it to the schedule and when it should best be scheduled. Enter normal text but if you want to get fancy you can use [Markdown](http://daringfireball.net/projects/markdown/basics).').html_safe + =m('articles.workshops.paragraphs.new_workshop','Please accurately describe your workshop in detail. This will help hosts decide if they wish to add it to the schedule and when it should best be scheduled. Enter normal text but if you want to get fancy you can use [Markdown](http://daringfireball.net/projects/markdown/basics).') .text-field.input-field.big = label_tag :title = text_field_tag :title, @title, :required => true diff --git a/app/views/workshops/show.html.haml b/app/views/workshops/show.html.haml index 515e151..1a4c6e6 100644 --- a/app/views/workshops/show.html.haml +++ b/app/views/workshops/show.html.haml @@ -3,7 +3,7 @@ = row do = columns(medium: 12) do %h2=_!@workshop.title - =paragraph _!(@workshop.info) || '' + =markdown _!(@workshop.info) || '' = columns(medium: 6) do %h3=_'articles.workshops.headings.facilitators' .facilitators @@ -28,7 +28,7 @@ - if @workshop.notes = columns(medium: 12) do %h3=_'articles.workshops.headings.notes','Notes' - =paragraph _!(@workshop.notes) + =markdown _!(@workshop.notes) = columns(medium: 12) do .actions = (link_to (_'actions.workshops.Edit'), edit_workshop_path(@this_conference.slug, @workshop.id), :class => 'button modify') if @workshop.can_edit?(current_user) diff --git a/config/locales/data/html_records/1.html b/config/locales/data/html_records/1.html deleted file mode 100644 index b9af7a9..0000000 --- a/config/locales/data/html_records/1.html +++ /dev/null @@ -1,519 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-
-

My Bike!Bike!

-Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/10.html b/config/locales/data/html_records/10.html deleted file mode 100644 index a97ce81..0000000 --- a/config/locales/data/html_records/10.html +++ /dev/null @@ -1,514 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

Workshops

-

Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum. In hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo. Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis. Sed ante.

-

Your Workshops

-
    -
-New Workshop -
    -
-
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/11.html b/config/locales/data/html_records/11.html deleted file mode 100644 index 6a2e279..0000000 --- a/config/locales/data/html_records/11.html +++ /dev/null @@ -1,526 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

My Workshop Title

-

Lorem Ipsum

- -

Facilitators

-
-
-
John Doe
-
creator
-
-
-

Languages

-

-

Needs

-

-

Notes

- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/12.html b/config/locales/data/html_records/12.html deleted file mode 100644 index b80fa65..0000000 --- a/config/locales/data/html_records/12.html +++ /dev/null @@ -1,597 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-
- -

Workshops are organized and run by attendees, they can be about anything that might concern community bicycle projects and can be in any format including presentations, hands-on workshops, discussion groups, and bicycle rides. If you would like to host you own workshop you can click on the "create workshop" button.

-
- - -
-
- - -
-

Languages

-
-
-
-
-
-
-

Theme

-
Which of the themes below best match your workshop? This will help hosts to avoid scheduling conflicts. Select other if none of the options match in any way.
-
-
-
-
-
-
-
-
-
-
-
-
-

Needs

-
-
-
-
-
-
-

Space

-
What kind of space do you need for your workshop?
-
-
-
-
-
-
-

Notes

-

Notes are only viewable by conference hosts and workshop facilitators

-
- - -
-
- -
-
- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/13.html b/config/locales/data/html_records/13.html deleted file mode 100644 index 3a03a73..0000000 --- a/config/locales/data/html_records/13.html +++ /dev/null @@ -1,526 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

Super Awesome Workshop

-

Lorem Ipsum

- -

Facilitators

-
-
-
John Doe
-
creator
-
-
-

Languages

-

-

Needs

-

-

Notes

- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/14.html b/config/locales/data/html_records/14.html deleted file mode 100644 index cf0760f..0000000 --- a/config/locales/data/html_records/14.html +++ /dev/null @@ -1,514 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

Delete Workshop

-
-
- - -
-
- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/15.html b/config/locales/data/html_records/15.html deleted file mode 100644 index ead4bae..0000000 --- a/config/locales/data/html_records/15.html +++ /dev/null @@ -1,521 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-

Please confirm your email address

-
- - - -
- -
-
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/16.html b/config/locales/data/html_records/16.html deleted file mode 100644 index 387dd3c..0000000 --- a/config/locales/data/html_records/16.html +++ /dev/null @@ -1,524 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

This page is used to contact all participants. Text can be entered as [Markdown](http://daringfireball.net/projects/markdown/basics). Pressing 'test' will send the email only to you, make sure you do this and use caution in general before pressing 'send'

-
-
- - -
-
- - -
-
- - -
-
- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/17.html b/config/locales/data/html_records/17.html deleted file mode 100644 index 9a3baf4..0000000 --- a/config/locales/data/html_records/17.html +++ /dev/null @@ -1,528 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-
-

What is Bike!Bike!?

-

Bike!Bike! is an international annual gathering organized by and for community bicycle projects. The conference is a space for participants from shops and related advocacy groups to converge in a different city each year over a 4 day period to have workshops and strengthen our social network.

-

What is a community bicycle project?

-

Bike!Bike! 2015: An international reunion meant to be a swap-meet for experiences and ideas about community bike projects. From collectives that use the bicycle as an excuse to change society, economy and the environment. Non-profit groups that have a community bike shops, cooperatives and other projects that promote the use of the bicycle and that come together to turn their communities into a place where riding is easier, more inclusive, safer and more fun. The list below uses the criteria found in the old Bicycle Organization Organization Project for what constitutes a community bike shop. The bike project need not meet all these criteria. Rather, it is a general list of qualities which are common among many bicycle projects.

-
    -
  • Bike shops that are accessible to people without money
  • -
  • Organizations that recycle bicycles and parts
  • -
  • Shops that have an educational focus, teaching others how to fix bikes
  • -
  • Shops that are volunteer run
  • -
  • Organizations that ship bikes to communities in other countries.
  • -
  • Shops that provide free or low-cost services to the community.
  • -
  • Non-profit bicycle organizations
  • -
-

Who is invited?

-

You don’t have to be an expert or belong to a huge group, you just need to be willing to share what you know about organization, mechanics, social impact, inequality alternatives, better access to bicycles or knowledge and social issues in your community or city.

-

What types of workshops will there be?

-
-

Workshops are organized and run by attendees, they can be about anything that might concern community bicycle projects and can be in any format including presentations, hands-on workshops, discussion groups, and bicycle rides. If you would like to host you own workshop you can enter details after registering. What ends up in the final schedule and when they happen are decided on by the conference hosts.

-

Where can I stay? What can I eat? How can I get around?

-

Traditionally conference hosts arrange shared accommodations, one to two meals a day, and bicycles will be available for registered attendees however you should check the conference details on the current conference. More information on how you can arrange your own accommodation and other recommended places to visit should also be provided to you by the hosts on the conference page or in hard copy upon arrival.

-

Can I volunteer?

-

Yes. Please!

-
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/18.html b/config/locales/data/html_records/18.html deleted file mode 100644 index 0ba0fa7..0000000 --- a/config/locales/data/html_records/18.html +++ /dev/null @@ -1,526 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-
-
-

The Agreement

-
    -
  • We enter with a commitment to mutual respect, mutual aid, anti-oppression advocacy, conflict resolution, anti-violence, and community building.
  • -
  • We respect everyone's names, preferred gender pronouns, expressed identities and experiences.
  • -
  • We support the empowerment of each person and group.
  • -
  • We commit to making spaces as accessible as possible; physically, socially, and personally.
  • -
  • We are peaceful and honest.
  • -
  • We respect each others bodies and spaces.
  • -
  • We commit to hearing each other and creating opportunities for all voices to be heard.
  • -
  • We accept a shared responsibility to hold ourselves and one another accountable for these agreements’ intent.
  • -
  • We encourage open minds and open hearts.
  • -
  • We promote inclusive learning spaces and questions in the spirit of personal growth.
  • -
-

Why have a Safer Space Agreement?

-

In order to set a common ground, we state our shared beliefs and desires for the space which is Bike!Bike!. We rally around these ideas for inspiration and to ensure that if there is behaviour which does not make us feel safe, we have something to point to. By agreeing to a commitment of mutual respect, we hope that if conflict does arise, we will remember what we have agreed to, and act accordingly.

-

How is it enforced?

-

The host city has the responsibility of mediating safer space issues. They will decide what constitutes a warning and what constitutes expulsion from the conference.

-
- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/19.html b/config/locales/data/html_records/19.html deleted file mode 100644 index 82cf19e..0000000 --- a/config/locales/data/html_records/19.html +++ /dev/null @@ -1,523 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -

-404: This page doesn't exist -

-

-Sorry, we couldn't find the page you were looking for. If you really believe that it should exist please contact admin@bikebike.org or file an issue on github: https://github.com/bikebike/BikeBike/issues -

-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/2.html b/config/locales/data/html_records/2.html deleted file mode 100644 index 9f87686..0000000 --- a/config/locales/data/html_records/2.html +++ /dev/null @@ -1,510 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-
-

My Bike!Bike!

-Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/3.html b/config/locales/data/html_records/3.html deleted file mode 100644 index ec0a3aa..0000000 --- a/config/locales/data/html_records/3.html +++ /dev/null @@ -1,510 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-
-

My Bike!Bike!

-Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/4.html b/config/locales/data/html_records/4.html deleted file mode 100644 index 374f908..0000000 --- a/config/locales/data/html_records/4.html +++ /dev/null @@ -1,532 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-
-

Safer Space Agreement

-

Safer Space Agreement

-
-

The Agreement

-
    -
  • We enter with a commitment to mutual respect, mutual aid, anti-oppression advocacy, conflict resolution, anti-violence, and community building.
  • -
  • We respect everyone's names, preferred gender pronouns, expressed identities and experiences.
  • -
  • We support the empowerment of each person and group.
  • -
  • We commit to making spaces as accessible as possible; physically, socially, and personally.
  • -
  • We are peaceful and honest.
  • -
  • We respect each others bodies and spaces.
  • -
  • We commit to hearing each other and creating opportunities for all voices to be heard.
  • -
  • We accept a shared responsibility to hold ourselves and one another accountable for these agreements’ intent.
  • -
  • We encourage open minds and open hearts.
  • -
  • We promote inclusive learning spaces and questions in the spirit of personal growth.
  • -
-

Why have a Safer Space Agreement?

-

In order to set a common ground, we state our shared beliefs and desires for the space which is Bike!Bike!. We rally around these ideas for inspiration and to ensure that if there is behaviour which does not make us feel safe, we have something to point to. By agreeing to a commitment of mutual respect, we hope that if conflict does arise, we will remember what we have agreed to, and act accordingly.

-

How is it enforced?

-

The host city has the responsibility of mediating safer space issues. They will decide what constitutes a warning and what constitutes expulsion from the conference.

-
- -

By clicking the "I Agree" button, you are pledging to do your best to uphold Bike!Bike!'s safer space agreement. Thank you!

-
-
-
- -
- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/5.html b/config/locales/data/html_records/5.html deleted file mode 100644 index 1bfc0ab..0000000 --- a/config/locales/data/html_records/5.html +++ /dev/null @@ -1,513 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

Please confirm your payment

-

You are about to confirm your payment of 50.00 for registration.

-
- -
- -
-
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/6.html b/config/locales/data/html_records/6.html deleted file mode 100644 index ead4bae..0000000 --- a/config/locales/data/html_records/6.html +++ /dev/null @@ -1,521 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-

Please confirm your email address

-
- - - -
- -
-
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/7.html b/config/locales/data/html_records/7.html deleted file mode 100644 index 30e7b87..0000000 --- a/config/locales/data/html_records/7.html +++ /dev/null @@ -1,573 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

Stats

-

Check Out who's coming and what they've paid so far. See at a glance how much accommodation is needed and what people prefer to eat.

-
    -
  • -

    Total Registrations

    -
    1
    -
  • -
  • -

    Total Donations

    -
    $0.00
    -
  • -
  • -

    Donation Count

    -
    -0 / 1 -
    -
  • -
  • -

    Housing

    -
    -
    -
    Indoor Location
    -
    1
    -
    -
    -
  • -
  • -

    Bikes

    -
    -
    1 / 1
    -
    -
    Medium
    -
    100.00%
    -
    -
    -
  • -
  • -

    Food

    -
    -
    -
    Omnivore
    -
    100.00%
    -
    -
    -
  • -
  • -

    Languages

    -
    -
    -
    English
    -
    100.00%
    -
    -
    -
  • -
-
-

Allergies

-
    -
-
-
-

Is there anything else you'd like to tell us?

-
    -
-
-
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/8.html b/config/locales/data/html_records/8.html deleted file mode 100644 index ead4bae..0000000 --- a/config/locales/data/html_records/8.html +++ /dev/null @@ -1,521 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
-

Please confirm your email address

-
- - - -
- -
-
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/html_records/9.html b/config/locales/data/html_records/9.html deleted file mode 100644 index 75cabe9..0000000 --- a/config/locales/data/html_records/9.html +++ /dev/null @@ -1,526 +0,0 @@ - - - -Bike!Bike! - - - - - - - - - - - - - - -
- -
- -
-

Payment

-

Thank you for completing your registration. We'll see you at Bike!Bike! Payment is by donation and can be done now or upon arrival but to help us fund the conference, we ask that you pay the registration donation as soon as you can.

-
- -
-
-
- -
-$ - - -

(amounts are in $USD)

-
- -
- -
-
-
- - - - - - \ No newline at end of file diff --git a/config/locales/data/translation-info.yml b/config/locales/data/translation-info.yml index 67ee436..1ac4675 100644 --- a/config/locales/data/translation-info.yml +++ b/config/locales/data/translation-info.yml @@ -3,61 +3,61 @@ geography.subregions.CA.NS: pages: - / examples: - - 1 - - 1 - - 3 - - 3 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- date.formats.span_same_month_date_1: pages: - / examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - View-stats-- + - View-stats-- + - Create-workshop-- + - Create-workshop-- + - Broadcast-message-- + - Broadcast-message-- date.month_names: pages: - / - /conferences/:slug/register examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 5 - - 5 - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats-- + - View-stats-- + - Create-workshop-- + - Create-workshop-- + - Broadcast-message-- + - Broadcast-message-- date.formats.span_same_month_date_2: pages: - / examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - View-stats-- + - View-stats-- + - Create-workshop-- + - Create-workshop-- + - Broadcast-message-- + - Broadcast-message-- date.date_span: pages: - / @@ -65,18 +65,18 @@ date.date_span: - :date_1 - :date_2 examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - View-stats-- + - View-stats-- + - Create-workshop-- + - Create-workshop-- + - Broadcast-message-- + - Broadcast-message-- page_descriptions.home: pages: - / @@ -95,51 +95,53 @@ page_descriptions.home: - /policy - /error_404 examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 page_titles.About_BikeBike: pages: - / @@ -158,51 +160,53 @@ page_titles.About_BikeBike: - /policy - /error_404 examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 page_titles.Safe_Space_Policy: pages: - / @@ -221,51 +225,53 @@ page_titles.Safe_Space_Policy: - /policy - /error_404 examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 donate.button_label: pages: - / @@ -274,12 +280,12 @@ donate.button_label: - /error_404 context: Donate! examples: - - 1 - - 1 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 links.footer.text.File_an_Issue: pages: - / @@ -298,51 +304,53 @@ links.footer.text.File_an_Issue: - /policy - /error_404 examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 links.footer.text.Help_contribute: pages: - / @@ -361,51 +369,53 @@ links.footer.text.Help_contribute: - /policy - /error_404 examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 links.footer.help_text.facebook: pages: - / @@ -425,51 +435,53 @@ links.footer.help_text.facebook: - /error_404 context: Join our facebook group examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 links.footer.help_text.select_language: pages: - / @@ -489,8370 +501,54 @@ links.footer.help_text.select_language: - /error_404 context: Select your language examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 -languages.af: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Afrikaans -languages.ar: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Arabic -languages.az: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Azerbaijani -languages.be: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Belarusian -languages.bg: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Bulgarian -languages.bn: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Bengali -languages.bs: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Bosnian -languages.ca: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Catalan -languages.cs: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Czech -languages.cy: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Welsh -languages.da: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Danish -languages.de: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: German -languages.el: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Greek -languages.en: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: English -languages.eo: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Esperanto -languages.es: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Spanish -languages.et: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Estonian -languages.eu: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Basque -languages.fa: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Persian -languages.fi: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Finnish -languages.fr: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: French -languages.gl: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Galician -languages.he: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Hebrew -languages.hi: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Hindi -languages.hr: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Croatian -languages.hu: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Hungarian -languages.id: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Indonesian -languages.is: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Icelandic -languages.it: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Italian -languages.ja: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Japanese -languages.km: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Khmer -languages.kn: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Kannada -languages.ko: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Korean -languages.lo: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Lao -languages.lt: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Lithuanian -languages.lv: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Latvian -languages.mk: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Macedonian -languages.mn: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Mongolian -languages.ms: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Malay -languages.nb: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Norwegian Bokmål -languages.ne: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Nepali -languages.nl: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Dutch -languages.nn: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Norwegian Nynorsk -languages.or: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Oriya -languages.pl: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Polish -languages.pt: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Portuguese -languages.rm: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Romansh -languages.ro: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Romanian -languages.ru: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Russian -languages.sk: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Slovak -languages.sl: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Slovenian -languages.sr: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Serbian -languages.sv: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Swedish -languages.sw: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Swahili -languages.ta: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Tamil -languages.th: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Thai -languages.tl: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Tagalog -languages.tr: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Turkish -languages.tt: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Tatar -languages.uk: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Ukrainian -languages.ur: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Urdu -languages.uz: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Uzbek -languages.vi: - pages: - - / - - /conferences/:slug/register - - /doconfirm - - /conferences/:slug/register/:button/:confirmation_token - - /confirm/:token - - /conferences/:slug/stats - - /conferences/:slug/workshops - - /conferences/:slug/workshops/create - - /conferences/:slug/workshops/:workshop_id - - /conferences/:slug/workshops/:workshop_id/edit - - /conferences/:slug/workshops/:workshop_id/delete - - /conferences/:slug/broadcast - - /about - - /policy - - /error_404 - examples: - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - context: Vietnamese -languages.wo: + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 +languages.en: pages: - / - /conferences/:slug/register @@ -8870,142 +566,106 @@ languages.wo: - /policy - /error_404 examples: - - 1 - - 1 - - 1 - - 1 - - 1 - - 1 - - 2 - - 2 - - 2 - - 2 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 4 - - 5 - - 5 - - 5 - - 5 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 6 - - 7 - - 7 - - 7 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 8 - - 9 - - 9 - - 9 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 10 - - 11 - - 11 - - 11 - - 12 - - 12 - - 12 - - 12 - - 12 - - 12 - - 13 - - 13 - - 13 - - 14 - - 14 - - 14 - - 14 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 16 - - 17 - - 17 - - 17 - - 18 - - 18 - - 18 - - 19 - - 19 - - 19 - - 19 - - 19 - - 19 - context: Wolof + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - View-stats--conferences.MyBikeBike.stats + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-about-page--about + - Read-the-policy-page--policy + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 + - See-a-404-page--error_404 + - See-a-404-page--error_404 + context: English links.footer.help_text.contributors: pages: - / @@ -9025,325 +685,333 @@ links.footer.help_text.contributors: - /error_404 context: Who contributed to building this website examples: - - 1 - - 1 - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 6 - - 6 - - 7 - - 8 - - 8 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 - - 17 - - 18 - - 19 - - 19 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Read-the-about-page--about + - Read-the-policy-page--policy + - See-a-404-page--error_404 + - See-a-404-page--error_404 geography.subregions.CA.NB: pages: - / examples: - - 2 - - 2 + - See-a-more-info-link-- + - See-a-more-info-link-- conference.actions.Register: pages: - / - /doconfirm - /confirm/:token examples: - - 2 - - 2 - - 3 - - 3 - - 3 - - 3 - - 6 - - 6 - - 6 - - 6 - - 8 - - 8 - - 8 - - 8 - - 15 - - 15 - - 15 - - 15 + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - See-a-more-info-link-- + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm + - View-stats--confirm.test + - View-stats--confirm.test + - View-stats-- + - View-stats-- + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Create-workshop-- + - Create-workshop-- + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message-- + - Broadcast-message-- page_titles.conferences.Conference_Registration: pages: - /conferences/:slug/register - /conferences/:slug/register/:button/:confirmation_token examples: - - 3 - - 4 - - 4 - - 4 - - 5 - - 5 - - 9 + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - Create-workshop--conferences.MyBikeBike.register articles.conference_registration.headings.Enter_Your_Email: pages: - /conferences/:slug/register context: Enter your email address examples: - - 3 + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register articles.conference_registration.paragraphs.confirm_email_address: pages: - /conferences/:slug/register context: p examples: - - 3 + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register forms.labels.generic.email: pages: - /conferences/:slug/register - /confirm/:token examples: - - 3 - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - View-stats--confirm.test + - View-stats--confirm.test + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test forms.actions.generic.register: pages: - /conferences/:slug/register examples: - - 3 - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 email.subject.confirm_email: pages: - /doconfirm examples: - - 3 + - Start-registration-from-landing-page--doconfirm email.confirmation.paragraph.please_confirm: pages: - /doconfirm context: 'Hello! To gain access to registration and other features of Bike!Bike!, please confirm your email address by clicking on following link:' examples: - - 3 - - 3 + - Start-registration-from-landing-page--doconfirm + - Start-registration-from-landing-page--doconfirm email.confirmation.link.please_confirm: pages: - /doconfirm examples: - - 3 + - Start-registration-from-landing-page--doconfirm page_titles.403.Please_Check_Email: pages: - /doconfirm examples: - - 3 + - Start-registration-from-landing-page--doconfirm articles.conference_registration.headings.email_confirm: pages: - /doconfirm context: Please confirm your email address examples: - - 3 + - Start-registration-from-landing-page--doconfirm articles.conference_registration.paragraphs.email_confirm: pages: - /doconfirm context: p examples: - - 3 + - Start-registration-from-landing-page--doconfirm page_titles.404.Page_Not_Found: pages: - /doconfirm - /error_404 examples: - - 3 - - 19 - - 19 + - Start-registration-from-landing-page--doconfirm + - See-a-404-page--error_404 + - See-a-404-page--error_404 error.404.title: pages: - /doconfirm - /error_404 context: This page does not exist! examples: - - 3 - - 19 - - 19 + - Start-registration-from-landing-page--doconfirm + - See-a-404-page--error_404 + - See-a-404-page--error_404 error.404.description: pages: - /doconfirm - /error_404 context: p examples: - - 3 - - 19 - - 19 + - Start-registration-from-landing-page--doconfirm + - See-a-404-page--error_404 + - See-a-404-page--error_404 articles.conference_registration.headings.Policy_Agreement: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.paragraphs.Policy_Agreement: pages: - /conferences/:slug/register context: s examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.policy.headings.The_Agreement: pages: - /conferences/:slug/register - /policy examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.commitment: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.respect: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.empowerment: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.accessible: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.peaceful: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.spaces: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.hearing: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.intent: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.open_minds: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.term.learning: pages: - /conferences/:slug/register - /policy context: s examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.headings.Why: pages: - /conferences/:slug/register - /policy context: Why have a Safer Space Agreement? examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.paragraphs.Why: pages: - /conferences/:slug/register - /policy context: p examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.headings.How: pages: - /conferences/:slug/register - /policy context: How is the policy enforced? examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.policy.paragraphs.How: pages: - /conferences/:slug/register - /policy context: p examples: - - 4 - - 18 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Read-the-policy-page--policy articles.conference_registration.paragraphs.Confirm_Agreement: pages: - /conferences/:slug/register context: p examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 forms.actions.generic.agree: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 forms.actions.generic.Log_out: pages: - /conferences/:slug/register @@ -9357,201 +1025,221 @@ forms.actions.generic.Log_out: - /conferences/:slug/workshops/:workshop_id/delete - /conferences/:slug/broadcast examples: - - 4 - - 4 - - 4 - - 5 - - 5 - - 6 - - 6 - - 7 - - 8 - - 8 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 15 - - 15 - - 16 - - 16 - - 16 - - 16 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats-- + - View-stats-- + - View-stats--conferences.MyBikeBike.stats + - Create-workshop-- + - Create-workshop-- + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message-- + - Broadcast-message-- + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast articles.conference_registration.headings.Registration_Info: pages: - /conferences/:slug/register context: Registration Info examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.paragraphs.Registration_Info: pages: - /conferences/:slug/register context: p examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.headings.name: pages: - /conferences/:slug/register context: What is your name? examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 forms.labels.generic.name: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.headings.location: pages: - /conferences/:slug/register context: Where are you coming from? examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 forms.labels.generic.location: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.headings.arrival_and_departure: pages: - /conferences/:slug/register context: How long do you plan to spend in the area? examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 forms.labels.generic.arrival: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 forms.labels.generic.departure: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.headings.languages: pages: - /conferences/:slug/register context: Which languages do you speak? examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 +languages.es: + pages: + - /conferences/:slug/register + - /conferences/:slug/workshops/create + - /conferences/:slug/workshops/:workshop_id/edit + examples: + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit +languages.fr: + pages: + - /conferences/:slug/register + - /conferences/:slug/workshops/create + - /conferences/:slug/workshops/:workshop_id/edit + examples: + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit articles.conference_registration.headings.housing: pages: - /conferences/:slug/register context: Do you need a place to stay? examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.questions.housing.none: pages: - /conferences/:slug/register examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.questions.housing.tent: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.questions.housing.house: pages: - /conferences/:slug/register - /conferences/:slug/stats examples: - - 4 - - 7 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.headings.bike: pages: - /conferences/:slug/register context: Do you need a bike? examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.questions.bike.none: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.questions.bike.small: pages: - /conferences/:slug/register examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.questions.bike.medium: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.questions.bike.large: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.headings.food: pages: - /conferences/:slug/register context: What are your eating habits? examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.questions.food.meat: pages: - /conferences/:slug/register - /conferences/:slug/stats examples: - - 4 - - 7 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.questions.food.vegetarian: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.questions.food.vegan: pages: - /conferences/:slug/register examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.headings.allergies: pages: - /conferences/:slug/register context: Do you have any allergies? examples: - - 4 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 forms.labels.generic.allergies: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.headings.other: pages: - /conferences/:slug/register - /conferences/:slug/stats context: Anything else we should know about your visit? examples: - - 4 - - 5 - - 7 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--conferences.MyBikeBike.stats forms.labels.generic.other: pages: - /conferences/:slug/register examples: - - 4 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 articles.conference_registration.headings.Payment: pages: - /conferences/:slug/register examples: - - 4 - - 9 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Create-workshop--conferences.MyBikeBike.register articles.conference_registration.paragraphs.Payment: pages: - /conferences/:slug/register @@ -9559,44 +1247,28 @@ articles.conference_registration.paragraphs.Payment: Payment is by donation and can be done now or upon arrival but to help us fund the conference, we ask that you pay the registration donation as soon as you can. examples: - - 4 - - 9 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Create-workshop--conferences.MyBikeBike.register forms.actions.generic.custom_amount: pages: - /conferences/:slug/register examples: - - 4 - - 9 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Create-workshop--conferences.MyBikeBike.register articles.conference_registration.paragraphs.currency: pages: - /conferences/:slug/register context: (amounts are in $USD) examples: - - 4 - - 9 -articles.conference_registration.headings.payment_confirm: - pages: - - /conferences/:slug/register/:button/:confirmation_token - context: Please confirm your payment - examples: - - 5 -articles.conference_registration.paragraphs.payment_confirm: - pages: - - /conferences/:slug/register/:button/:confirmation_token - context: You are about to confirm your payment of $ 50.00 USD for registration. - vars: - - :amount - examples: - - 5 -forms.actions.generic.confirm_amount: - pages: - - /conferences/:slug/register/:button/:confirmation_token - examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Create-workshop--conferences.MyBikeBike.register menu.submenu.registration.Registration: pages: - - /conferences/:slug/register/:button/:confirmation_token - /conferences/:slug/register + - /conferences/:slug/register/:button/:confirmation_token - /conferences/:slug/stats - /conferences/:slug/workshops - /conferences/:slug/workshops/create @@ -9605,27 +1277,28 @@ menu.submenu.registration.Registration: - /conferences/:slug/workshops/:workshop_id/delete - /conferences/:slug/broadcast examples: - - 5 - - 5 - - 7 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 16 - - 16 - - 16 - - 16 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast menu.submenu.registration.Workshops: pages: - - /conferences/:slug/register/:button/:confirmation_token - /conferences/:slug/register + - /conferences/:slug/register/:button/:confirmation_token - /conferences/:slug/stats - /conferences/:slug/workshops - /conferences/:slug/workshops/create @@ -9634,252 +1307,282 @@ menu.submenu.registration.Workshops: - /conferences/:slug/workshops/:workshop_id/delete - /conferences/:slug/broadcast examples: - - 5 - - 5 - - 7 - - 9 - - 10 - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 - - 14 - - 14 - - 16 - - 16 - - 16 - - 16 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-1 + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - View-stats--conferences.MyBikeBike.stats + - Create-workshop--conferences.MyBikeBike.register + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete + - Create-workshop--conferences.MyBikeBike.workshops-1 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast +articles.conference_registration.headings.payment_confirm: + pages: + - /conferences/:slug/register/:button/:confirmation_token + context: Please confirm your payment + examples: + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token +articles.conference_registration.paragraphs.payment_confirm: + pages: + - /conferences/:slug/register/:button/:confirmation_token + context: You are about to confirm your payment of $ 50.00 USD for registration. + vars: + - :amount + examples: + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token +forms.actions.generic.confirm_amount: + pages: + - /conferences/:slug/register/:button/:confirmation_token + examples: + - Start-registration-from-landing-page--conferences.MyBikeBike.register.paypal_confirm.token articles.conference_registration.headings.Youre_Done: pages: - /conferences/:slug/register context: You're Done! examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.paragraphs.done: pages: - /conferences/:slug/register context: p examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.paragraphs.workshops: pages: - /conferences/:slug/register context: You can now take a look at proposed workshops and even propose one yourself if you like. examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.actions.View_Workshops: pages: - /conferences/:slug/register examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.headings.Your_Registration: pages: - /conferences/:slug/register examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.headings.arrival: pages: - /conferences/:slug/register examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 time.formats.long: pages: - /conferences/:slug/register examples: - - 5 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 time.am: pages: - /conferences/:slug/register examples: - - 5 - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.headings.departure: pages: - /conferences/:slug/register examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.none: pages: - /conferences/:slug/register examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 articles.conference_registration.headings.payment: pages: - /conferences/:slug/register examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 forms.actions.generic.edit_registration: pages: - /conferences/:slug/register examples: - - 5 + - Start-registration-from-landing-page--conferences.MyBikeBike.register-2 page_titles.403.Please_Confirm_Email: pages: - /confirm/:token examples: - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - View-stats--confirm.test + - View-stats--confirm.test + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test articles.permission_denied.headings.confirm_email: pages: - /confirm/:token context: Please confirm your email address examples: - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - View-stats--confirm.test + - View-stats--confirm.test + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test forms.actions.generic.login: pages: - /confirm/:token examples: - - 6 - - 6 - - 8 - - 8 - - 15 - - 15 + - View-stats--confirm.test + - View-stats--confirm.test + - Create-workshop--confirm.test + - Create-workshop--confirm.test + - Broadcast-message--confirm.test + - Broadcast-message--confirm.test geography.subregions.US.AK: pages: - / examples: - - 6 - - 6 + - View-stats-- + - View-stats-- page_titles.conferences.Registration_Stats: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.headings.Stats: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.paragraphs.Stats: pages: - /conferences/:slug/stats context: p examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.terms.Total_Registrations: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.terms.Total_Donations: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.terms.Donation_Count: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.terms.Housing: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.terms.Bikes: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.questions.bikes.medium: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.terms.Food: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.terms.Languages: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats articles.conference_registration.headings.Allergies: pages: - /conferences/:slug/stats examples: - - 7 + - View-stats--conferences.MyBikeBike.stats +menu.submenu.registration.Edit: + pages: + - /conferences/:slug/stats + - /conferences/:slug/broadcast + examples: + - View-stats--conferences.MyBikeBike.stats + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast menu.submenu.registration.Stats: pages: - /conferences/:slug/stats - /conferences/:slug/broadcast examples: - - 7 - - 16 - - 16 - - 16 - - 16 + - View-stats--conferences.MyBikeBike.stats + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast menu.submenu.registration.Broadcast: pages: - /conferences/:slug/stats - /conferences/:slug/broadcast examples: - - 7 - - 16 - - 16 - - 16 - - 16 + - View-stats--conferences.MyBikeBike.stats + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast geography.subregions.US.TX: pages: - / examples: - - 8 - - 8 - - 15 - - 15 + - Create-workshop-- + - Create-workshop-- + - Broadcast-message-- + - Broadcast-message-- page_titles.conferences.Workshops: pages: - /conferences/:slug/workshops examples: - - 10 - - 14 + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops-1 articles.workshops.headings.Workshops: pages: - /conferences/:slug/workshops examples: - - 10 - - 14 + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops-1 articles.workshops.paragraphs.Workshops: pages: - /conferences/:slug/workshops context: p examples: - - 10 - - 14 + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops-1 articles.workshops.headings.Your_Workshops: pages: - /conferences/:slug/workshops examples: - - 10 - - 14 + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops-1 actions.workshops.create: pages: - /conferences/:slug/workshops context: New Workshop examples: - - 10 - - 14 + - Create-workshop--conferences.MyBikeBike.workshops + - Create-workshop--conferences.MyBikeBike.workshops-1 page_titles.conferences.Create_Workshop: pages: - /conferences/:slug/workshops/create examples: - - 10 + - Create-workshop--conferences.MyBikeBike.workshops.create articles.workshops.paragraphs.new_workshop: pages: - /conferences/:slug/workshops/create @@ -9888,22 +1591,22 @@ articles.workshops.paragraphs.new_workshop: decide if they wish to add it to the schedule and when it should best be scheduled. Enter normal text but if you want to get fancy you can use [Markdown](http://daringfireball.net/projects/markdown/basics). examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit forms.labels.generic.title: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit forms.labels.generic.info: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit articles.workshops.headings.languages: pages: - /conferences/:slug/workshops/create @@ -9911,70 +1614,70 @@ articles.workshops.headings.languages: - /conferences/:slug/workshops/:workshop_id/edit context: Workshop Language examples: - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 articles.workshops.headings.theme: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit context: Theme examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit articles.workshops.paragraphs.theme: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit context: p examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.theme.race_gender: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.theme.mechanics: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.theme.funding: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.theme.organization: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.theme.community: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.theme.other: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit articles.workshops.headings.needs: pages: - /conferences/:slug/workshops/create @@ -9982,70 +1685,70 @@ articles.workshops.headings.needs: - /conferences/:slug/workshops/:workshop_id/edit context: What do you need? examples: - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 workshop.options.needs.sound: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.needs.projector: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.needs.tools: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit articles.workshops.headings.space: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit context: Type of space examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit articles.workshops.paragraphs.space: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit context: p examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.space.meeting_room: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.space.workshop: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit workshop.options.space.outdoor_meeting: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit articles.workshops.headings.notes: pages: - /conferences/:slug/workshops/create @@ -10053,84 +1756,84 @@ articles.workshops.headings.notes: - /conferences/:slug/workshops/:workshop_id/edit context: Notes for Conference Organizers and Workshop Facilitators examples: - - 10 - - 10 - - 11 - - 12 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 articles.workshops.paragraphs.notes: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit context: Notes are only viewable by conference hosts and workshop facilitators examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit forms.labels.generic.notes: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit forms.actions.generic.save: pages: - /conferences/:slug/workshops/create - /conferences/:slug/workshops/:workshop_id/edit examples: - - 10 - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.create + - Create-workshop--conferences.MyBikeBike.workshops.1.edit page_titles.conferences.View_Workshop: pages: - /conferences/:slug/workshops/:workshop_id examples: - - 10 - - 11 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 articles.workshops.headings.facilitators: pages: - /conferences/:slug/workshops/:workshop_id examples: - - 10 - - 11 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 roles.workshops.facilitator.creator: pages: - /conferences/:slug/workshops/:workshop_id examples: - - 10 - - 11 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 actions.workshops.Edit: pages: - /conferences/:slug/workshops/:workshop_id examples: - - 10 - - 11 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 actions.workshops.Delete: pages: - /conferences/:slug/workshops/:workshop_id examples: - - 10 - - 11 - - 12 - - 13 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 + - Create-workshop--conferences.MyBikeBike.workshops.1-1 page_titles.conferences.Edit_Workshop: pages: - /conferences/:slug/workshops/:workshop_id/edit examples: - - 12 + - Create-workshop--conferences.MyBikeBike.workshops.1.edit page_titles.conferences.Delete_Workshop: pages: - /conferences/:slug/workshops/:workshop_id/delete examples: - - 14 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete articles.workshops.headings.Delete_Workshop: pages: - /conferences/:slug/workshops/:workshop_id/delete @@ -10138,25 +1841,25 @@ articles.workshops.headings.Delete_Workshop: vars: - :title examples: - - 14 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete forms.actions.generic.confirm: pages: - /conferences/:slug/workshops/:workshop_id/delete examples: - - 14 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete forms.actions.generic.cancel: pages: - /conferences/:slug/workshops/:workshop_id/delete examples: - - 14 + - Create-workshop--conferences.MyBikeBike.workshops.1.delete page_titles.conferences.Email_Participants: pages: - /conferences/:slug/broadcast examples: - - 16 - - 16 - - 16 - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast articles.conference_registration.paragraphs.Email_Participants: pages: - /conferences/:slug/broadcast @@ -10164,34 +1867,34 @@ articles.conference_registration.paragraphs.Email_Participants: Pressing 'test' will send the email only to you, make sure you do this and use caution in general before pressing 'send' examples: - - 16 - - 16 - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast forms.labels.generic.subject: pages: - /conferences/:slug/broadcast examples: - - 16 - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast forms.labels.generic.content: pages: - /conferences/:slug/broadcast examples: - - 16 - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast forms.actions.generic.preview: pages: - /conferences/:slug/broadcast examples: - - 16 - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast forms.actions.generic.test: pages: - /conferences/:slug/broadcast examples: - - 16 - - 16 - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast articles.conference_registration.notes.Test_Email_Sent: pages: - /conferences/:slug/broadcast @@ -10199,23 +1902,23 @@ articles.conference_registration.notes.Test_Email_Sent: vars: - :email_address examples: - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast articles.conference_registration.headings.Preview: pages: - /conferences/:slug/broadcast examples: - - 16 - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast + - Broadcast-message--conferences.MyBikeBike.broadcast forms.actions.generic.edit: pages: - /conferences/:slug/broadcast examples: - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast forms.actions.generic.send: pages: - /conferences/:slug/broadcast examples: - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast articles.conference_registration.paragraphs.participants_emailed: pages: - /conferences/:slug/broadcast @@ -10223,128 +1926,128 @@ articles.conference_registration.paragraphs.participants_emailed: vars: - :conference_title examples: - - 16 + - Broadcast-message--conferences.MyBikeBike.broadcast page_titles.about.About_BikeBike: pages: - /about examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.headings.What_is_BikeBike: pages: - /about context: t examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.paragraphs.What_is_BikeBike: pages: - /about context: p examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.headings.bicycle_project: pages: - /about context: t examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.paragraphs.bicycle_project_paragraph: pages: - /about context: p examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.term.non_profit: pages: - /about context: s examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.term.no_money: pages: - /about context: s examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.term.education: pages: - /about context: s examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.term.volunteer_run: pages: - /about context: s examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.term.export_bikes: pages: - /about context: s examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.term.low_cost: pages: - /about context: s examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.term.recycle_parts: pages: - /about context: s examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.headings.Who_is_Invited: pages: - /about context: t examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.paragraphs.Who_is_Invited: pages: - /about context: p examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.headings.Types_of_Workshops: pages: - /about context: t examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.paragraphs.Types_of_Workshops: pages: - /about context: p examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.headings.Amenities: pages: - /about context: t examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.paragraphs.Amenities: pages: - /about context: p examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.headings.Volunteer: pages: - /about context: t examples: - - 17 + - Read-the-about-page--about articles.about_bikebike.paragraphs.Volunteer: pages: - /about context: p examples: - - 17 + - Read-the-about-page--about page_titles.policy.Safer_Spaces_Policy: pages: - /policy examples: - - 18 + - Read-the-policy-page--policy diff --git a/config/locales/es.yml b/config/locales/es.yml index f06d219..a9f7c04 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -36,6 +36,7 @@ es: long: '%d de %B de %Y' short: '%d de %b' span_same_month_date_2: '%e, %Y' + span_same_month_date_1: '%B %e' month_names: - - enero @@ -255,6 +256,8 @@ es: uz: uzbeko vi: vietnamita wo: wólof + be: bielorruso + tt: tártaro geography: countries: AD: Andorra @@ -700,6 +703,7 @@ es: Your_Workshops: Actividades Policy_Agreement: Acuerdo del Espacio Mas Seguro Preview: Preestreno + Stats: Estadísticas paragraphs: Registration_Info: EL REGISTRO ESTÁ ABIERTOOOOO! :) Por favor llénalo lo más pronto que puedas, cualquier pregunta o mejora puedes comentarla más abajo, diff --git a/config/routes.rb b/config/routes.rb index 2600125..c896039 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -20,8 +20,8 @@ BikeBike::Application.routes.draw do # get 'resources' => 'pages#resources' # get '/confirm/:token' => 'application#confirm', :as => :confirm + match '/doconfirm' => 'application#do_confirm', :as => :do_confirm, via: [:get, :post] #post '/doconfirm' => 'application#do_confirm', :as => :do_confirm - post '/doconfirm' => 'application#do_confirm', :as => :do_confirm post '/logout' => 'application#user_logout', :as => :logout post '/translator-request' => 'application#translator_request', :as => :translator_request diff --git a/features/registration_page.feature b/features/registration_page.feature index c5d4f37..3cb426c 100644 --- a/features/registration_page.feature +++ b/features/registration_page.feature @@ -10,6 +10,8 @@ Feature: Registration Page Then I see the Bike!Bike! logo And I see a Register link And I click on the Register link + + Then I am on the registration page And I fill in email with myemail@bikebike.org And press register diff --git a/features/support/env.rb b/features/support/env.rb index 73cf852..8e3e917 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -7,6 +7,7 @@ require 'cucumber/rails' require 'capybara/poltergeist' require 'lingua_franca/capybara' +require 'mocha/mini_test' # Capybara defaults to CSS3 selectors rather than XPath. # If you'd prefer to use XPath, just uncomment this line and adjust any @@ -47,8 +48,12 @@ Before('@javascript') do end Before do - #ApplicationController::set_host 'en.bikebike.org' - #ApplicationController::set_location nil + user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A" + #request.stub!(:user_agent).and_return() + #controller.request.stub!(:user_agent).and_return(user_agent) + ActionDispatch::Request.any_instance.stubs(:user_agent).returns(user_agent) + #page.driver.browser.header('User-Agent', user_agent) + #page.driver.headers = { "User-Agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2403.157 Safari/537.36" } end After do |scenario| @@ -84,7 +89,7 @@ end # The :transaction strategy is faster, but might give you threading problems. # See https://github.com/cucumber/cucumber-rails/blob/master/features/choose_javascript_database_strategy.feature Capybara.register_driver :bb_poltergeist do |app| - Capybara::LinguaFrancaPoltergeist::Driver.new(app, :inspector => true, :timeout => 120) + I18n.backend.start_recording_html(Capybara::LinguaFrancaPoltergeist::Driver.new(app, :inspector => true, :timeout => 120)) end Cucumber::Rails::Database.javascript_strategy = :transaction