muck-friends 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +5 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +51 -0
- data/Rakefile +101 -0
- data/VERSION +1 -0
- data/app/controllers/muck/friends_controller.rb +70 -0
- data/app/helpers/muck_friends_helper.rb +93 -0
- data/app/models/friend_mailer.rb +25 -0
- data/app/views/activity_templates/follow.html.erb +1 -0
- data/app/views/activity_templates/friends_with.html.erb +1 -0
- data/app/views/friend_mailer/follow.text.html.erb +8 -0
- data/app/views/friend_mailer/follow.text.plain.erb +8 -0
- data/app/views/friend_mailer/friend_request.text.html.erb +8 -0
- data/app/views/friend_mailer/friend_request.text.plain.erb +8 -0
- data/app/views/friends/_friend_simple.html.erb +4 -0
- data/app/views/friends/_friends.html.erb +8 -0
- data/app/views/friends/_notifications.html.erb +32 -0
- data/app/views/friends/friend_or_follow_request.html.erb +8 -0
- data/app/views/friends/index.html.erb +1 -0
- data/config/muck_friends_routes.rb +4 -0
- data/db/migrate/20090608073052_create_friends.rb +16 -0
- data/install.rb +1 -0
- data/lib/active_record/acts/muck_friend.rb +141 -0
- data/lib/active_record/acts/muck_friend_user.rb +103 -0
- data/lib/muck_friends.rb +12 -0
- data/lib/muck_friends/initialize_routes.rb +8 -0
- data/lib/muck_friends/tasks.rb +27 -0
- data/locales/ar.yml +31 -0
- data/locales/bg.yml +31 -0
- data/locales/ca.yml +31 -0
- data/locales/cs.yml +31 -0
- data/locales/da.yml +31 -0
- data/locales/de.yml +31 -0
- data/locales/el.yml +31 -0
- data/locales/en.yml +31 -0
- data/locales/es.yml +31 -0
- data/locales/et.yml +31 -0
- data/locales/fa.yml +31 -0
- data/locales/fi.yml +31 -0
- data/locales/fr.yml +31 -0
- data/locales/gl.yml +31 -0
- data/locales/hi.yml +31 -0
- data/locales/hr.yml +31 -0
- data/locales/hu.yml +31 -0
- data/locales/id.yml +31 -0
- data/locales/it.yml +31 -0
- data/locales/iw.yml +31 -0
- data/locales/ja.yml +31 -0
- data/locales/ko.yml +31 -0
- data/locales/lt.yml +31 -0
- data/locales/lv.yml +31 -0
- data/locales/mt.yml +31 -0
- data/locales/nl.yml +31 -0
- data/locales/no.yml +32 -0
- data/locales/pl.yml +31 -0
- data/locales/pt-PT.yml +31 -0
- data/locales/pt.yml +6 -0
- data/locales/ro.yml +31 -0
- data/locales/ru.yml +31 -0
- data/locales/sk.yml +31 -0
- data/locales/sl.yml +31 -0
- data/locales/sq.yml +31 -0
- data/locales/sr.yml +31 -0
- data/locales/sv.yml +31 -0
- data/locales/th.yml +31 -0
- data/locales/tl.yml +31 -0
- data/locales/tr.yml +31 -0
- data/locales/uk.yml +31 -0
- data/locales/vi.yml +31 -0
- data/locales/zh-CN.yml +31 -0
- data/locales/zh-TW.yml +31 -0
- data/locales/zh.yml +31 -0
- data/muck-friends.gemspec +381 -0
- data/rails/init.rb +4 -0
- data/tasks/rails.rake +1 -0
- data/test/rails_root/.gitignore +8 -0
- data/test/rails_root/.rake_tasks +103 -0
- data/test/rails_root/Capfile +3 -0
- data/test/rails_root/Rakefile +15 -0
- data/test/rails_root/app/controllers/application_controller.rb +21 -0
- data/test/rails_root/app/controllers/default_controller.rb +7 -0
- data/test/rails_root/app/helpers/application_helper.rb +3 -0
- data/test/rails_root/app/models/.keep +0 -0
- data/test/rails_root/app/models/activity.rb +3 -0
- data/test/rails_root/app/models/friend.rb +4 -0
- data/test/rails_root/app/models/user.rb +8 -0
- data/test/rails_root/app/models/user_session.rb +2 -0
- data/test/rails_root/app/views/default/index.html.erb +1 -0
- data/test/rails_root/app/views/layouts/default.html.erb +26 -0
- data/test/rails_root/config/amazon_s3.yml +14 -0
- data/test/rails_root/config/boot.rb +109 -0
- data/test/rails_root/config/database.yml +14 -0
- data/test/rails_root/config/environment.rb +27 -0
- data/test/rails_root/config/environments/development.rb +19 -0
- data/test/rails_root/config/environments/production.rb +1 -0
- data/test/rails_root/config/environments/test.rb +34 -0
- data/test/rails_root/config/global_config.yml +72 -0
- data/test/rails_root/config/initializers/inflections.rb +10 -0
- data/test/rails_root/config/initializers/mime_types.rb +5 -0
- data/test/rails_root/config/initializers/requires.rb +13 -0
- data/test/rails_root/config/initializers/session_store.rb +8 -0
- data/test/rails_root/config/routes.rb +3 -0
- data/test/rails_root/db/.keep +0 -0
- data/test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb +16 -0
- data/test/rails_root/db/migrate/20090402033319_add_muck_activities.rb +36 -0
- data/test/rails_root/db/migrate/20090602041838_create_users.rb +39 -0
- data/test/rails_root/db/migrate/20090608073052_create_friends.rb +16 -0
- data/test/rails_root/features/step_definitions/webrat_steps.rb +99 -0
- data/test/rails_root/features/support/env.rb +14 -0
- data/test/rails_root/public/.htaccess +40 -0
- data/test/rails_root/public/404.html +30 -0
- data/test/rails_root/public/422.html +30 -0
- data/test/rails_root/public/500.html +30 -0
- data/test/rails_root/public/dispatch.rb +10 -0
- data/test/rails_root/public/favicon.ico +0 -0
- data/test/rails_root/public/images/arrow_left.gif +0 -0
- data/test/rails_root/public/images/arrow_right.gif +0 -0
- data/test/rails_root/public/images/blue/preview.gif +0 -0
- data/test/rails_root/public/images/icons/accept.png +0 -0
- data/test/rails_root/public/images/icons/add.png +0 -0
- data/test/rails_root/public/images/icons/delete.png +0 -0
- data/test/rails_root/public/images/icons/vote.png +0 -0
- data/test/rails_root/public/images/loading.gif +0 -0
- data/test/rails_root/public/images/profile_default.jpg +0 -0
- data/test/rails_root/public/images/rails.png +0 -0
- data/test/rails_root/public/images/red/preview.gif +0 -0
- data/test/rails_root/public/images/spinner.gif +0 -0
- data/test/rails_root/public/images/sprites.png +0 -0
- data/test/rails_root/public/javascripts/application.js +2 -0
- data/test/rails_root/public/javascripts/builder.js +136 -0
- data/test/rails_root/public/javascripts/controls.js +963 -0
- data/test/rails_root/public/javascripts/dragdrop.js +972 -0
- data/test/rails_root/public/javascripts/effects.js +1120 -0
- data/test/rails_root/public/javascripts/fancyzoom.min.js +1 -0
- data/test/rails_root/public/javascripts/jquery/jquery-ui.js +273 -0
- data/test/rails_root/public/javascripts/jquery/jquery.form.js +637 -0
- data/test/rails_root/public/javascripts/jquery/jquery.jgrowl.js +2 -0
- data/test/rails_root/public/javascripts/jquery/jquery.js +19 -0
- data/test/rails_root/public/javascripts/jquery/jquery.tips.js +69 -0
- data/test/rails_root/public/javascripts/muck.js +76 -0
- data/test/rails_root/public/javascripts/muck_activities.js +108 -0
- data/test/rails_root/public/javascripts/prototype.js +4225 -0
- data/test/rails_root/public/javascripts/scriptaculous.js +58 -0
- data/test/rails_root/public/javascripts/slider.js +277 -0
- data/test/rails_root/public/javascripts/sound.js +60 -0
- data/test/rails_root/public/robots.txt +1 -0
- data/test/rails_root/public/stylesheets/.keep +0 -0
- data/test/rails_root/public/stylesheets/admin.css +12 -0
- data/test/rails_root/public/stylesheets/blueprint/ie.css +26 -0
- data/test/rails_root/public/stylesheets/blueprint/liquid_screen.css +203 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css +40 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css +134 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css +197 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css +109 -0
- data/test/rails_root/public/stylesheets/blueprint/print.css +30 -0
- data/test/rails_root/public/stylesheets/blueprint/screen.css +251 -0
- data/test/rails_root/public/stylesheets/blueprint/sprite.css +1 -0
- data/test/rails_root/public/stylesheets/blueprint/src/forms.css +49 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.css +213 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/src/ie.css +59 -0
- data/test/rails_root/public/stylesheets/blueprint/src/print.css +85 -0
- data/test/rails_root/public/stylesheets/blueprint/src/reset.css +38 -0
- data/test/rails_root/public/stylesheets/blueprint/src/typography.css +105 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/reset.css +0 -0
- data/test/rails_root/public/stylesheets/styles.css +79 -0
- data/test/rails_root/public/stylesheets/themes/blue/styles.css +1 -0
- data/test/rails_root/public/stylesheets/themes/red/styles.css +1 -0
- data/test/rails_root/script/about +3 -0
- data/test/rails_root/script/breakpointer +3 -0
- data/test/rails_root/script/console +3 -0
- data/test/rails_root/script/create_project.rb +52 -0
- data/test/rails_root/script/cucumber +7 -0
- data/test/rails_root/script/dbconsole +3 -0
- data/test/rails_root/script/destroy +3 -0
- data/test/rails_root/script/generate +3 -0
- data/test/rails_root/script/performance/benchmarker +3 -0
- data/test/rails_root/script/performance/profiler +3 -0
- data/test/rails_root/script/performance/request +3 -0
- data/test/rails_root/script/plugin +3 -0
- data/test/rails_root/script/process/inspector +3 -0
- data/test/rails_root/script/process/reaper +3 -0
- data/test/rails_root/script/process/spawner +3 -0
- data/test/rails_root/script/runner +3 -0
- data/test/rails_root/script/server +3 -0
- data/test/rails_root/test/factories.rb +50 -0
- data/test/rails_root/test/functional/.keep +0 -0
- data/test/rails_root/test/functional/friends_controller_test.rb +171 -0
- data/test/rails_root/test/integration/.keep +0 -0
- data/test/rails_root/test/mocks/development/.keep +0 -0
- data/test/rails_root/test/mocks/test/.keep +0 -0
- data/test/rails_root/test/shoulda_macros/controller.rb +45 -0
- data/test/rails_root/test/shoulda_macros/forms.rb +32 -0
- data/test/rails_root/test/shoulda_macros/models.rb +50 -0
- data/test/rails_root/test/shoulda_macros/pagination.rb +53 -0
- data/test/rails_root/test/shoulda_macros/plugins.rb +34 -0
- data/test/rails_root/test/test_helper.rb +38 -0
- data/test/rails_root/test/unit/.keep +0 -0
- data/test/rails_root/test/unit/friend_mailer_test.rb +37 -0
- data/test/rails_root/test/unit/friend_test.rb +186 -0
- data/test/rails_root/test/unit/user_test.rb +170 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/README +43 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +62 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb +132 -0
- data/test/rails_root/vendor/plugins/validation_reflection/CHANGELOG +24 -0
- data/test/rails_root/vendor/plugins/validation_reflection/LICENSE +20 -0
- data/test/rails_root/vendor/plugins/validation_reflection/README +64 -0
- data/test/rails_root/vendor/plugins/validation_reflection/Rakefile +22 -0
- data/test/rails_root/vendor/plugins/validation_reflection/about.yml +7 -0
- data/test/rails_root/vendor/plugins/validation_reflection/init.rb +8 -0
- data/test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb +129 -0
- data/test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb +36 -0
- data/test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb +126 -0
- data/uninstall.rb +1 -0
- metadata +416 -0
data/locales/da.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
da:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Tilhængere
|
|
6
|
+
friends_with: Venner
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Accepter anmodning om venskab"
|
|
9
|
+
accept: (accepter)
|
|
10
|
+
delete: (slet)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Friend Request"
|
|
14
|
+
friend_request_pending: "Ven anmodning indtil {{link}}"
|
|
15
|
+
friend_request_sent: "Ven Anmodning Sendte"
|
|
16
|
+
friends_title: "Mine venner"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignore)
|
|
19
|
+
no_followers: "Du kan i øjeblikket ikke har nogen followers"
|
|
20
|
+
no_friends: "Du kan i øjeblikket ikke har nogen venner"
|
|
21
|
+
not_following_anyone: "Du er ikke i øjeblikket efter nogen"
|
|
22
|
+
problem_adding_follow: "Der var et problem at tilføje {{user}} til din følge listen. Please try again."
|
|
23
|
+
problem_sending_friend_request: "Der var et problem at sende en anmodning om venskab til {{user}}. Please try again."
|
|
24
|
+
removed_friendship: "Fjernet ven forholdet"
|
|
25
|
+
same_inviter_error_message: "Bruger kan ikke være venner med selv."
|
|
26
|
+
sign_up_to_follow: "Tilmeld dig til at følge"
|
|
27
|
+
start_following: "Start Efter"
|
|
28
|
+
stop_being_friends: "Holde op med at være venner"
|
|
29
|
+
stop_following: "Stop Efter"
|
|
30
|
+
view_all: "Vis alle"
|
|
31
|
+
you_are_now_following: "Du er nu følgende {{user}}"
|
data/locales/de.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
de:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Anhänger
|
|
6
|
+
friends_with: Freunde
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Nehmen Sie Friend Request"
|
|
9
|
+
accept: (akzeptieren)
|
|
10
|
+
delete: (Löschen)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Friend Request"
|
|
14
|
+
friend_request_pending: "Freund Anfrage bis {{link}}"
|
|
15
|
+
friend_request_sent: "Freund Anfrage gesendet"
|
|
16
|
+
friends_title: "Meine Freunde"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignore)
|
|
19
|
+
no_followers: "Sie derzeit nicht über alle Anhänger"
|
|
20
|
+
no_friends: "Sie derzeit nicht haben keine Freunde"
|
|
21
|
+
not_following_anyone: "Sie sind derzeit noch nicht nach jeder"
|
|
22
|
+
problem_adding_follow: "Es gab ein Problem hinzufügen {{user}} zu Ihrer Liste folgen. Bitte versuchen Sie es noch einmal."
|
|
23
|
+
problem_sending_friend_request: "Es wurde ein Problem, das Senden einer Anfrage an {{user}}. Bitte versuchen Sie es noch einmal."
|
|
24
|
+
removed_friendship: "Entfernt Freund Beziehung"
|
|
25
|
+
same_inviter_error_message: "User können sich nicht selbst mit Freunden."
|
|
26
|
+
sign_up_to_follow: "Melden Sie sich an Folgen"
|
|
27
|
+
start_following: "Nach Start"
|
|
28
|
+
stop_being_friends: "Stop Being Freunde"
|
|
29
|
+
stop_following: "Stop Nach"
|
|
30
|
+
view_all: "Alle anzeigen"
|
|
31
|
+
you_are_now_following: "Sie befinden sich nun folgende {{user}}"
|
data/locales/el.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
el:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: "Οι οπαδοί"
|
|
6
|
+
friends_with: Φίλοι
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Αποδοχή φίλου Αίτηση"
|
|
9
|
+
accept: (αποδεχθεί)
|
|
10
|
+
delete: (διαγραφή)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Αίτηση Φίλου"
|
|
14
|
+
friend_request_pending: "Φίλος εκκρεμεί αίτηση {{link}}"
|
|
15
|
+
friend_request_sent: "Φίλος Αίτηση Σταλθέντα"
|
|
16
|
+
friends_title: "My Friends"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignore)
|
|
19
|
+
no_followers: "Εσείς δεν έχουν σήμερα καμία οπαδοί"
|
|
20
|
+
no_friends: "Μπορείτε επί του παρόντος δεν έχει φίλους"
|
|
21
|
+
not_following_anyone: "Αυτή τη στιγμή δεν ακόλουθες κανέναν"
|
|
22
|
+
problem_adding_follow: "Υπήρξε πρόβλημα στην προσθήκη {{user}} σας λίστα παρακολούθησης. Παρακαλώ δοκιμάστε ξανά."
|
|
23
|
+
problem_sending_friend_request: "Υπήρξε ένα πρόβλημα κατά την αποστολή σε ένα φίλο αίτηση για {{user}}. Παρακαλώ δοκιμάστε ξανά."
|
|
24
|
+
removed_friendship: "Καταργήθηκε ο φίλος σχέση"
|
|
25
|
+
same_inviter_error_message: "Χρήστης δεν μπορεί να γίνει με τους φίλους αυτών των ιδίων."
|
|
26
|
+
sign_up_to_follow: "Sign-up για την Παρακολούθηση"
|
|
27
|
+
start_following: "Ξεκινήστε Μετά"
|
|
28
|
+
stop_being_friends: "Σταμάτα να είσαι Φίλοι"
|
|
29
|
+
stop_following: "Διακοπή Μετά"
|
|
30
|
+
view_all: "Προβολή όλων"
|
|
31
|
+
you_are_now_following: "Τώρα μετά {{user}}"
|
data/locales/en.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
en:
|
|
2
|
+
muck:
|
|
3
|
+
friends:
|
|
4
|
+
friends_title: "My Friends"
|
|
5
|
+
same_inviter_error_message: "User cannot become friends with themself."
|
|
6
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
7
|
+
friend_request: "{{name}} has sent you a friend request on {{application_name}}"
|
|
8
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
9
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
10
|
+
not_following_anyone: "You aren't currently following anyone"
|
|
11
|
+
no_followers: "You don't currently have any followers"
|
|
12
|
+
no_friends: "You don't currently have any friends"
|
|
13
|
+
you_are_now_following: "You are now following {{user}}"
|
|
14
|
+
friend_request_sent: "Friend Request Sent"
|
|
15
|
+
problem_adding_follow: "There was a problem adding {{user}} to your follow list. Please try again."
|
|
16
|
+
problem_sending_friend_request: "There was a problem sending a friend request to {{user}}. Please try again."
|
|
17
|
+
removed_friendship: "Removed friend relationship"
|
|
18
|
+
view_all: "View All"
|
|
19
|
+
sign_up_to_follow: "Sign-up to Follow"
|
|
20
|
+
stop_being_friends: "Stop Being Friends"
|
|
21
|
+
stop_following: "Stop Following"
|
|
22
|
+
friend_request_pending: "Friend request pending {{link}}"
|
|
23
|
+
acccept_friend_request: "Accept Friend Request"
|
|
24
|
+
start_following: "Start Following"
|
|
25
|
+
friend_request: "Friend Request"
|
|
26
|
+
delete: "(delete)"
|
|
27
|
+
accept: "(accept)"
|
|
28
|
+
ignore: "(ignore)"
|
|
29
|
+
activity_templates:
|
|
30
|
+
follow: "Followers"
|
|
31
|
+
friends_with: "Friends"
|
data/locales/es.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
es:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Seguidores
|
|
6
|
+
friends_with: Amigos
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Aceptar la solicitud de amistad"
|
|
9
|
+
accept: (aceptar)
|
|
10
|
+
delete: (suprimir)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Solicitud amigo"
|
|
14
|
+
friend_request_pending: "En espera de solicitud de amistad {{link}}"
|
|
15
|
+
friend_request_sent: "La solicitud se ha enviado un amigo"
|
|
16
|
+
friends_title: "Mis amigos"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignorar)
|
|
19
|
+
no_followers: "Que actualmente no tiene ningún seguidores"
|
|
20
|
+
no_friends: "Usted no tiene actualmente ningún amigo"
|
|
21
|
+
not_following_anyone: "Usted no está actualmente siguientes a nadie"
|
|
22
|
+
problem_adding_follow: "Ha habido un problema {{user}} añadir a su lista de seguimiento. Por favor, inténtelo de nuevo."
|
|
23
|
+
problem_sending_friend_request: "Ha habido un problema el envío de una solicitud de amistad a {{user}}. Por favor, inténtelo de nuevo."
|
|
24
|
+
removed_friendship: "Eliminado relación amigo"
|
|
25
|
+
same_inviter_error_message: "El usuario no puede convertirse en amigos con él mismo."
|
|
26
|
+
sign_up_to_follow: "Suscríbete a seguir"
|
|
27
|
+
start_following: "Después de iniciar"
|
|
28
|
+
stop_being_friends: "Dejar de ser amigos"
|
|
29
|
+
stop_following: "Después de dejar de"
|
|
30
|
+
view_all: "Ver todos"
|
|
31
|
+
you_are_now_following: "Ahora está tras {{user}}"
|
data/locales/et.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
et:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Järgijad
|
|
6
|
+
friends_with: Sõbrad
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Nõus Friend Request"
|
|
9
|
+
accept: (nõus)
|
|
10
|
+
delete: "(välja jäetud)"
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Sõber Soov"
|
|
14
|
+
friend_request_pending: "Sõber taotleda kuni {{link}}"
|
|
15
|
+
friend_request_sent: "Sõber Taotlus saadetud"
|
|
16
|
+
friends_title: "Minu sõbrad"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignoreerib)
|
|
19
|
+
no_followers: "Sul ei ole praegu mingit järgijaid"
|
|
20
|
+
no_friends: "Sul ei ole praegu ühtegi sõpra"
|
|
21
|
+
not_following_anyone: "Sa ei ole hetkel järgmised igaüks"
|
|
22
|
+
problem_adding_follow: "Probleem, lisades {{user}} oma järgida nimekirja. Palun proovige uuesti."
|
|
23
|
+
problem_sending_friend_request: "Probleem saates sõber taotluse {{user}}. Palun proovige uuesti."
|
|
24
|
+
removed_friendship: "Eemaldatud sõbrale suhted"
|
|
25
|
+
same_inviter_error_message: "Kasutaja ei saa sõpru endale."
|
|
26
|
+
sign_up_to_follow: "Sign kuni Järgige"
|
|
27
|
+
start_following: "Start Pärast"
|
|
28
|
+
stop_being_friends: "Peatus Olles sõbrad"
|
|
29
|
+
stop_following: "Peatus Pärast"
|
|
30
|
+
view_all: "View All"
|
|
31
|
+
you_are_now_following: "Olete nüüd järgmised {{user}}"
|
data/locales/fa.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
fa:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: پیروان
|
|
6
|
+
friends_with: دوستان
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "پذیرفتن درخواست دوستان"
|
|
9
|
+
accept: (قبول)
|
|
10
|
+
delete: (حذف)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "درخواست دوستان"
|
|
14
|
+
friend_request_pending: "درخواست دوستان در انتظار {{link}}"
|
|
15
|
+
friend_request_sent: "درخواست ارسال به دوستان"
|
|
16
|
+
friends_title: "دوستان من"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: "(نادیده گرفتن)"
|
|
19
|
+
no_followers: "شما در حال حاضر نیست به هر پیروان"
|
|
20
|
+
no_friends: "شما در حال حاضر نیست به هر دوستان"
|
|
21
|
+
not_following_anyone: "شما در حال حاضر نیست زیر هر کسی"
|
|
22
|
+
problem_adding_follow: "یک مشکل در اضافه کردن {{user}}به خود را دنبال لیست وجود دارد. لطفا دوباره سعی کنید."
|
|
23
|
+
problem_sending_friend_request: "یک اشکال در ارسال درخواست یک دوست به {{user}}.وجود دارد. لطفا دوباره سعی کنید."
|
|
24
|
+
removed_friendship: "حذف رابطه دوست"
|
|
25
|
+
same_inviter_error_message: "کاربر نمی تواند تبدیل به دوستان با themself."
|
|
26
|
+
sign_up_to_follow: "ورود به سیستم به دنبال"
|
|
27
|
+
start_following: "شروع به دنبال"
|
|
28
|
+
stop_being_friends: "دوستان در حال توقف"
|
|
29
|
+
stop_following: "به دنبال توقف"
|
|
30
|
+
view_all: "نمایش همه"
|
|
31
|
+
you_are_now_following: "شما در حال حاضر زیر {{user}}"
|
data/locales/fi.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
fi:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Seuraajat
|
|
6
|
+
friends_with: Ystävät
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Hyväksy Friend Request"
|
|
9
|
+
accept: (hyväksy)
|
|
10
|
+
delete: (poista)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Friend Request"
|
|
14
|
+
friend_request_pending: "Kaveriksitulopyynnön kunnes {{link}}"
|
|
15
|
+
friend_request_sent: "Friend Pyyntö lähetetty"
|
|
16
|
+
friends_title: Ystävät
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ohittaa)
|
|
19
|
+
no_followers: "Sinulla ei tällä hetkellä ole seuraajia"
|
|
20
|
+
no_friends: "Sinulla ei tällä hetkellä ole yhtään ystävää"
|
|
21
|
+
not_following_anyone: "Et ole tällä hetkellä seuraavat kukaan"
|
|
22
|
+
problem_adding_follow: "Ongelma lisäämällä {{user}} teidän seurata luettelosta. Ole hyvä ja yritä uudelleen."
|
|
23
|
+
problem_sending_friend_request: "Ongelma lähettää ystävälle pyynnön {{user}}. Ole hyvä ja yritä uudelleen."
|
|
24
|
+
removed_friendship: "Poistetut ystävälle suhde"
|
|
25
|
+
same_inviter_error_message: "Käyttäjä ei voi tulla ystävien kanssa ilmoittanut."
|
|
26
|
+
sign_up_to_follow: "Sign-up seurata"
|
|
27
|
+
start_following: "Käynnistä jälkeen"
|
|
28
|
+
stop_being_friends: "Stop Being Friends"
|
|
29
|
+
stop_following: "Stop jälkeen"
|
|
30
|
+
view_all: "Näytä kaikki"
|
|
31
|
+
you_are_now_following: "Olet nyt seuraavat {{user}}"
|
data/locales/fr.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
fr:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Followers
|
|
6
|
+
friends_with: Amis
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Accepter Friend Request"
|
|
9
|
+
accept: (accepter)
|
|
10
|
+
delete: (supprimer)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Friend Request"
|
|
14
|
+
friend_request_pending: "Ami demande en attendant {{link}}"
|
|
15
|
+
friend_request_sent: "Friend Request Sent"
|
|
16
|
+
friends_title: "My Friends"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignorer)
|
|
19
|
+
no_followers: "Vous n'avez pas actuellement de fans"
|
|
20
|
+
no_friends: "Vous n'avez pas actuellement d'amis"
|
|
21
|
+
not_following_anyone: "Vous n'êtes pas n'importe qui suivant"
|
|
22
|
+
problem_adding_follow: "Il y avait un problème {{user}} d'ajouter à votre liste de suivi. S'il vous plaît essayez de nouveau."
|
|
23
|
+
problem_sending_friend_request: "Il y avait un problème d'envoi à un ami demande {{user}}. S'il vous plaît essayez de nouveau."
|
|
24
|
+
removed_friendship: "Enlevée ami relation"
|
|
25
|
+
same_inviter_error_message: "L'utilisateur ne peut pas devenir amis avec eux-mêmes."
|
|
26
|
+
sign_up_to_follow: "Inscrivez-vous à suivre"
|
|
27
|
+
start_following: "Démarrer la suite"
|
|
28
|
+
stop_being_friends: "Stop Being Friends"
|
|
29
|
+
stop_following: "Stop la suite"
|
|
30
|
+
view_all: "Voir tout"
|
|
31
|
+
you_are_now_following: "Vous êtes désormais {{user}}"
|
data/locales/gl.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
gl:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Seguidores
|
|
6
|
+
friends_with: Amigos
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Aceptar Amigo Solicitude"
|
|
9
|
+
accept: (aceptar)
|
|
10
|
+
delete: (borrar)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Friend request"
|
|
14
|
+
friend_request_pending: "Amigo petición pendente {{link}}"
|
|
15
|
+
friend_request_sent: "Amigo Solicitude enviado"
|
|
16
|
+
friends_title: "Meus amigos"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignorar)
|
|
19
|
+
no_followers: "Non ten actualmente calquera seguidores"
|
|
20
|
+
no_friends: "Non ten actualmente calquera amigos"
|
|
21
|
+
not_following_anyone: "Non está ninguén na secuencia"
|
|
22
|
+
problem_adding_follow: "Houbo un problema engadindo {{user}} para o seu seguimento lista. Por favor, ténteo de novo."
|
|
23
|
+
problem_sending_friend_request: "Houbo un problema ó enviar unha solicitude ao amigo {{user}}. Por favor, ténteo de novo."
|
|
24
|
+
removed_friendship: "Eliminar amigo relación"
|
|
25
|
+
same_inviter_error_message: "O usuario non se tornar-se amigos con themself."
|
|
26
|
+
sign_up_to_follow: "Rexístrese seguintes"
|
|
27
|
+
start_following: "Iniciar Seguindo"
|
|
28
|
+
stop_being_friends: "Parar Ser Amigos"
|
|
29
|
+
stop_following: "Pare de Abaixo"
|
|
30
|
+
view_all: "Ver Todos"
|
|
31
|
+
you_are_now_following: "Está agora na secuencia {{user}}"
|
data/locales/hi.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
hi:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: अनुयायियों
|
|
6
|
+
friends_with: मित्रों
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "स्वीकार मित्र अनुरोध"
|
|
9
|
+
accept: "() को स्वीकार"
|
|
10
|
+
delete: "() को नष्ट"
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "मित्र अनुरोध"
|
|
14
|
+
friend_request_pending: "मित्र अनुरोध लंबित {{link}}"
|
|
15
|
+
friend_request_sent: "मित्र अनुरोध भेजा गया"
|
|
16
|
+
friends_title: "मेरे मित्र"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: "() की उपेक्षा"
|
|
19
|
+
no_followers: "आप वर्तमान में किसी भी अनुयायियों नहीं है"
|
|
20
|
+
no_friends: "आप वर्तमान में कोई दोस्त नहीं है"
|
|
21
|
+
not_following_anyone: "आप वर्तमान में किसी को भी पीछा नहीं कर रहे हैं"
|
|
22
|
+
problem_adding_follow: "एक समस्या सूची का पालन करने के लिए अपने {{user}} जोड़ रहा था. कृपया पुन: प्रयास करें."
|
|
23
|
+
problem_sending_friend_request: "एक समस्या {{user}}. करने के लिए एक मित्र का अनुरोध भेजने था कृपया पुन: प्रयास करें."
|
|
24
|
+
removed_friendship: "हटाया दोस्त रिश्ता"
|
|
25
|
+
same_inviter_error_message: "प्रयोक्ता themself साथ दोस्त नहीं बन सकते हैं."
|
|
26
|
+
sign_up_to_follow: "साइन अप का पालन करने के लिए"
|
|
27
|
+
start_following: "शुरू के बाद"
|
|
28
|
+
stop_being_friends: "मित्र होने के नाते बंद करो"
|
|
29
|
+
stop_following: "बंद के बाद"
|
|
30
|
+
view_all: "सभी देखें"
|
|
31
|
+
you_are_now_following: "अब आप {{user}} का अनुसरण कर रहे हैं"
|
data/locales/hr.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
hr:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Sljedbenici
|
|
6
|
+
friends_with: Prijatelji
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Prihvatite zahtjev za prijateljstvom"
|
|
9
|
+
accept: (prihvatiti)
|
|
10
|
+
delete: (brisanje)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Friend Request"
|
|
14
|
+
friend_request_pending: "Zahtjev za prijateljstvo na čekanju {{link}}"
|
|
15
|
+
friend_request_sent: "Friend Request Sent"
|
|
16
|
+
friends_title: "Moji prijatelji"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (zanemarite)
|
|
19
|
+
no_followers: "Ne Trenutno imate bilo kakvih sljedbenika"
|
|
20
|
+
no_friends: "Ne trenutno imate prijatelje"
|
|
21
|
+
not_following_anyone: "Trenutno ne sljedeće nikome"
|
|
22
|
+
problem_adding_follow: "Došlo je do problema u dodavanju {{user}} pratite na svoj popis. Please try again."
|
|
23
|
+
problem_sending_friend_request: "Došlo je do problema prilikom slanja zahtjeva za {{user}}. prijatelju Please try again."
|
|
24
|
+
removed_friendship: "Odstranjena prijatelju odnos"
|
|
25
|
+
same_inviter_error_message: "Korisnik ne može postati prijatelj sa themself."
|
|
26
|
+
sign_up_to_follow: "Sign-up pratiti"
|
|
27
|
+
start_following: "Započni Slijedeći"
|
|
28
|
+
stop_being_friends: "Stop Being Friends"
|
|
29
|
+
stop_following: "Nakon Stop"
|
|
30
|
+
view_all: "View All"
|
|
31
|
+
you_are_now_following: "Sada ste sljedeće {{user}}"
|
data/locales/hu.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
hu:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Followers
|
|
6
|
+
friends_with: Barátok
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Accept Friend Request"
|
|
9
|
+
accept: (accept)
|
|
10
|
+
delete: (törlés)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Friend Request"
|
|
14
|
+
friend_request_pending: "Friend request pending {{link}}"
|
|
15
|
+
friend_request_sent: "Friend Request Elküldött"
|
|
16
|
+
friends_title: "My Friends"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (ignore)
|
|
19
|
+
no_followers: "Ön jelenleg nem rendelkeznek olyan követői"
|
|
20
|
+
no_friends: "Ön jelenleg nem rendelkeznek olyan barátok"
|
|
21
|
+
not_following_anyone: "Pillanatnyilag nem követően bárki"
|
|
22
|
+
problem_adding_follow: "Gond van a hozzá {{user}} a követési listán. Kérjük, próbálja újra."
|
|
23
|
+
problem_sending_friend_request: "Gond van a küldés egy barátnak kérés {{user}}. Kérjük, próbálja újra."
|
|
24
|
+
removed_friendship: "Eltávolított barátomnak kapcsolat"
|
|
25
|
+
same_inviter_error_message: "A felhasználó nem lehet barátja themself."
|
|
26
|
+
sign_up_to_follow: "Jelentkezzen nyomon követése"
|
|
27
|
+
start_following: "Indítás után"
|
|
28
|
+
stop_being_friends: "Stop Being Barátok"
|
|
29
|
+
stop_following: "Stop követően"
|
|
30
|
+
view_all: "Összes megtekintése"
|
|
31
|
+
you_are_now_following: "Ön most következő {{user}}"
|
data/locales/id.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
id:
|
|
3
|
+
muck:
|
|
4
|
+
activity_templates:
|
|
5
|
+
follow: Pengikutnya
|
|
6
|
+
friends_with: Teman-teman
|
|
7
|
+
friends:
|
|
8
|
+
acccept_friend_request: "Teman menerima Permintaan"
|
|
9
|
+
accept: (menerima)
|
|
10
|
+
delete: (menghapus)
|
|
11
|
+
follow_activity: "{{inviter}} is now following {{invited}}"
|
|
12
|
+
following_you: "{{name}} is now following you on {{application_name}}"
|
|
13
|
+
friend_request: "Permintaan teman"
|
|
14
|
+
friend_request_pending: "Permintaan tertunda {{link}}"
|
|
15
|
+
friend_request_sent: "Teman Permintaan Terkirim"
|
|
16
|
+
friends_title: "Teman saya"
|
|
17
|
+
friends_with: "{{inviter}} is now friends with {{invited}}"
|
|
18
|
+
ignore: (abaikan)
|
|
19
|
+
no_followers: "Anda saat ini tidak mempunyai pengikutnya"
|
|
20
|
+
no_friends: "Anda saat ini tidak mempunyai teman-teman"
|
|
21
|
+
not_following_anyone: "Saat ini Anda tidak berikut siapapun"
|
|
22
|
+
problem_adding_follow: "Terjadi masalah {{user}} menambahkan Anda ke daftar ikuti. Coba lagi."
|
|
23
|
+
problem_sending_friend_request: "Terjadi masalah mengirimkan permintaan ke {{user}}. Coba lagi."
|
|
24
|
+
removed_friendship: "Dihapus hubungan teman"
|
|
25
|
+
same_inviter_error_message: "Pengguna tidak dapat menjadi teman-teman dengan themself."
|
|
26
|
+
sign_up_to_follow: "Sign-up untuk Ikuti"
|
|
27
|
+
start_following: "Setelah mulai"
|
|
28
|
+
stop_being_friends: "Berhenti Menjadi Teman"
|
|
29
|
+
stop_following: "Berhenti Mengikuti"
|
|
30
|
+
view_all: "Lihat Semua"
|
|
31
|
+
you_are_now_following: "Anda sekarang berikut {{user}}"
|