diff --git a/.github/.github/workflows/ci_main.yml b/.github/.github/workflows/ci_main.yml new file mode 100644 index 00000000..30a9e0ad --- /dev/null +++ b/.github/.github/workflows/ci_main.yml @@ -0,0 +1,48 @@ +name: "[CI] Main folder" +on: + push: + branches: + - master + pull_request: + branches-ignore: + - "chore/l10n*" + +env: + CI: "true" + RUBY_VERSION: 3.1.1 + NODE_VERSION: 16.9.1 + +concurrency: + group: ${{ github.head_ref || github.ref_name }} + cancel-in-progress: true + +jobs: + main: + name: Tests + runs-on: ubuntu-latest + timeout-minutes: 60 + steps: + - uses: actions/checkout@v2.0.0 + with: + fetch-depth: 1 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ env.RUBY_VERSION }} + bundler-cache: true + - uses: actions/setup-node@v1 + with: + node-version: ${{ env.NODE_VERSION }} + - name: Get npm cache directory path + id: npm-cache-dir-path + run: echo "::set-output name=dir::$(npm get cache)-main" + - uses: actions/cache@v2 + id: npm-cache + with: + path: ${{ steps.npm-cache-dir-path.outputs.dir }} + key: npm-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + npm- + - name: Install JS dependencies + run: npm ci + - run: bundle exec rspec + name: RSpec diff --git a/.gitignore b/.gitignore index 0e9b1d1a..5b95500b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,11 @@ build/ tmp/ .byebug_history +cache/ +source/stylesheets/tailwind.css +node_modules/ + +# Ignore rubocop rules from decidim +.rubocop-https---raw-githubusercontent-com-decidim-decidim-* + +spec/examples.txt diff --git a/.node-version b/.node-version new file mode 100644 index 00000000..b009dfb9 --- /dev/null +++ b/.node-version @@ -0,0 +1 @@ +lts/* diff --git a/.rspec b/.rspec new file mode 100644 index 00000000..c99d2e73 --- /dev/null +++ b/.rspec @@ -0,0 +1 @@ +--require spec_helper diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 00000000..b60bba3f --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,13 @@ +inherit_from: https://raw.githubusercontent.com/decidim/decidim/develop/.rubocop.yml + +AllCops: + Include: + - "**/*.rb" + - "**/*.rake" + - "**/*.ru" + - "**/Gemfile" + - "**/Rakefile" + Exclude: + - "node_modules/**/*" + - "db/schema.rb" + - "vendor/**/*" diff --git a/.ruby-version b/.ruby-version index 860487ca..ef538c28 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.7.1 +3.1.2 diff --git a/Dockerfile b/Dockerfile index 68a48594..82a33b82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM ruby:2.7.1 +FROM ruby:2.7.4 RUN apt-get update -qq && apt-get install -y \ build-essential \ libpq-dev -RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \ +RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash - \ && apt-get install -y nodejs RUN mkdir /app @@ -13,6 +13,7 @@ WORKDIR /app ADD Gemfile /app/Gemfile ADD Gemfile.lock /app/Gemfile.lock RUN bundle install +RUN npm install ENV LANG C.UTF-8 ENV LANGUAGE C.UTF-8 diff --git a/Gemfile b/Gemfile index c66f87e0..2ba9d09b 100644 --- a/Gemfile +++ b/Gemfile @@ -1,16 +1,24 @@ source 'https://rubygems.org' -gem 'middleman', '~> 4.3' -gem 'middleman-autoprefixer', '~> 2.7' +gem 'middleman', '~> 4.4' gem 'middleman-livereload', '~> 3.4' gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby] gem 'wdm', '~> 0.1', platforms: [:mswin, :mingw] +gem "rubocop", "~> 1.31" +gem "i18n-tasks", "~> 1.0" gem 'middleman-blog', '~> 4.0' gem 'redcarpet', '~> 3.5' gem 'nokogiri', '~> 1.13.6' gem 'builder', '~> 3.0' +gem "debug", "~> 1.6" gem 'middleman-images', '~> 0.2' gem 'mini_magick', '~> 4.11' gem 'image_optim', '~> 0.30' + +group :test do + gem 'rake', '~> 13.0' + gem 'rspec', '~> 3.11' + gem 'capybara', '~> 3.37' +end diff --git a/Gemfile.lock b/Gemfile.lock index 87877743..686bbace 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,78 +1,133 @@ GEM remote: https://rubygems.org/ specs: - activesupport (5.2.4.4) + actionpack (6.1.7) + actionview (= 6.1.7) + activesupport (= 6.1.7) + rack (~> 2.0, >= 2.0.9) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actionview (6.1.7) + activesupport (= 6.1.7) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activesupport (6.1.7) concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) - autoprefixer-rails (9.8.6.5) - execjs - backports (3.18.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + ast (2.4.2) + backports (3.23.0) + better_html (1.0.16) + actionview (>= 4.0) + activesupport (>= 4.0) + ast (~> 2.0) + erubi (~> 1.4) + html_tokenizer (~> 0.0.6) + parser (>= 2.4) + smart_properties builder (3.2.4) + capybara (3.37.1) + addressable + matrix + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) coffee-script (2.4.1) coffee-script-source execjs coffee-script-source (1.12.2) - concurrent-ruby (1.1.7) + concurrent-ruby (1.1.10) contracts (0.13.0) - dotenv (2.7.6) - em-websocket (0.5.1) + crass (1.0.6) + debug (1.6.2) + irb (>= 1.3.6) + reline (>= 0.3.1) + diff-lcs (1.5.0) + dotenv (2.8.1) + em-websocket (0.5.3) eventmachine (>= 0.12.9) - http_parser.rb (~> 0.6.0) + http_parser.rb (~> 0) + erubi (1.11.0) erubis (2.7.0) eventmachine (1.2.7) - execjs (2.7.0) + execjs (2.8.1) exifr (1.3.9) - fast_blank (1.0.0) - fastimage (2.2.0) - ffi (1.13.1) + fast_blank (1.0.1) + fastimage (2.2.6) + ffi (1.15.5) fspath (3.1.2) - haml (5.1.2) + haml (5.2.2) temple (>= 0.8.0) tilt hamster (3.0.0) concurrent-ruby (~> 1.0) hashie (3.6.0) - http_parser.rb (0.6.0) - i18n (0.9.5) + highline (2.0.3) + html_tokenizer (0.0.7) + http_parser.rb (0.8.0) + i18n (1.6.0) concurrent-ruby (~> 1.0) - image_optim (0.30.0) + i18n-tasks (1.0.11) + activesupport (>= 4.0.2) + ast (>= 2.1.0) + better_html (~> 1.0) + erubi + highline (>= 2.0.0) + i18n + parser (>= 2.2.3.0) + rails-i18n + rainbow (>= 2.2.2, < 4.0) + terminal-table (>= 1.5.1) + image_optim (0.31.1) exifr (~> 1.2, >= 1.2.2) fspath (~> 3.0) - image_size (>= 1.5, < 3) + image_size (>= 1.5, < 4) in_threads (~> 1.3) progress (~> 3.0, >= 3.0.1) - image_size (2.1.0) - in_threads (1.5.4) - kramdown (2.3.1) + image_size (3.0.2) + in_threads (1.6.0) + io-console (0.5.11) + irb (1.4.1) + reline (>= 0.3.0) + json (2.6.2) + kramdown (2.4.0) rexml listen (3.0.8) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) + loofah (2.19.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + matrix (0.4.2) memoist (0.16.2) - middleman (4.3.11) + method_source (1.0.0) + middleman (4.4.2) coffee-script (~> 2.2) haml (>= 4.0.5) kramdown (>= 2.3.0) - middleman-cli (= 4.3.11) - middleman-core (= 4.3.11) - middleman-autoprefixer (2.10.1) - autoprefixer-rails (~> 9.1) - middleman-core (>= 3.3.3) + middleman-cli (= 4.4.2) + middleman-core (= 4.4.2) middleman-blog (4.0.3) addressable (~> 2.3) middleman-core (>= 4.0.0) tzinfo (>= 0.3.0) - middleman-cli (4.3.11) + middleman-cli (4.4.2) thor (>= 0.17.0, < 2.0) - middleman-core (4.3.11) - activesupport (>= 4.2, < 6.0) - addressable (~> 2.3) + middleman-core (4.4.2) + activesupport (>= 6.1, < 7.0) + addressable (~> 2.4) backports (~> 3.6) - bundler + bundler (~> 2.0) contracts (~> 0.13.0) dotenv erubis @@ -81,74 +136,140 @@ GEM fastimage (~> 2.0) hamster (~> 3.0) hashie (~> 3.4) - i18n (~> 0.9.0) + i18n (~> 1.6.0) listen (~> 3.0.0) memoist (~> 0.14) - padrino-helpers (~> 0.13.0) + padrino-helpers (~> 0.15.0) parallel rack (>= 1.4.5, < 3) sassc (~> 2.0) servolux tilt (~> 2.0.9) + toml uglifier (~> 3.0) + webrick middleman-images (0.2.0) middleman-core (>= 4.1.14, < 5.1) - middleman-livereload (3.4.6) + middleman-livereload (3.4.7) em-websocket (~> 0.5.1) middleman-core (>= 3.3) rack-livereload (~> 0.3.15) mini_magick (4.11.0) + mini_mime (1.1.2) mini_portile2 (2.8.0) - minitest (5.14.2) - nokogiri (1.13.6) + minitest (5.16.3) + nokogiri (1.13.8) mini_portile2 (~> 2.8.0) racc (~> 1.4) - padrino-helpers (0.13.3.4) - i18n (~> 0.6, >= 0.6.7) - padrino-support (= 0.13.3.4) + padrino-helpers (0.15.1) + i18n (>= 0.6.7, < 2) + padrino-support (= 0.15.1) tilt (>= 1.4.1, < 3) - padrino-support (0.13.3.4) - activesupport (>= 3.1) - parallel (1.19.2) + padrino-support (0.15.1) + parallel (1.22.1) + parser (3.1.2.1) + ast (~> 2.4.1) + parslet (2.0.0) progress (3.6.0) - public_suffix (4.0.6) + public_suffix (5.0.0) racc (1.6.0) - rack (2.2.3) + rack (2.2.4) rack-livereload (0.3.17) rack - rb-fsevent (0.10.4) + rack-test (2.0.2) + rack (>= 1.3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.4.3) + loofah (~> 2.3) + rails-i18n (7.0.5) + i18n (>= 0.7, < 2) + railties (>= 6.0.0, < 8) + railties (6.1.7) + actionpack (= 6.1.7) + activesupport (= 6.1.7) + method_source + rake (>= 12.2) + thor (~> 1.0) + rainbow (3.1.1) + rake (13.0.6) + rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) redcarpet (3.5.1) + regexp_parser (2.5.0) + reline (0.3.1) + io-console (~> 0.5) rexml (3.2.5) + rspec (3.11.0) + rspec-core (~> 3.11.0) + rspec-expectations (~> 3.11.0) + rspec-mocks (~> 3.11.0) + rspec-core (3.11.0) + rspec-support (~> 3.11.0) + rspec-expectations (3.11.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.11.0) + rspec-mocks (3.11.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.11.0) + rspec-support (3.11.1) + rubocop (1.36.0) + json (~> 2.3) + parallel (~> 1.10) + parser (>= 3.1.2.1) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.20.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 3.0) + rubocop-ast (1.21.0) + parser (>= 3.1.1.0) + ruby-progressbar (1.11.0) sassc (2.4.0) ffi (~> 1.9) servolux (0.13.0) + smart_properties (1.17.0) temple (0.8.2) - thor (1.0.1) - thread_safe (0.3.6) - tilt (2.0.10) - tzinfo (1.2.7) - thread_safe (~> 0.1) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + thor (1.2.1) + tilt (2.0.11) + toml (0.3.0) + parslet (>= 1.8.0, < 3.0.0) + tzinfo (2.0.5) + concurrent-ruby (~> 1.0) uglifier (3.2.0) execjs (>= 0.3.0, < 3) + unicode-display_width (2.3.0) + webrick (1.7.0) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.6.0) PLATFORMS ruby DEPENDENCIES builder (~> 3.0) + capybara (~> 3.37) + debug (~> 1.6) + i18n-tasks (~> 1.0) image_optim (~> 0.30) - middleman (~> 4.3) - middleman-autoprefixer (~> 2.7) + middleman (~> 4.4) middleman-blog (~> 4.0) middleman-images (~> 0.2) middleman-livereload (~> 3.4) mini_magick (~> 4.11) nokogiri (~> 1.13.6) + rake (~> 13.0) redcarpet (~> 3.5) + rspec (~> 3.11) + rubocop (~> 1.31) tzinfo-data wdm (~> 0.1) BUNDLED WITH - 2.1.4 + 2.3.5 diff --git a/README.md b/README.md index 0cf4954d..1643796e 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Install the dependencies and start the middleman server. ```bash bundle install +npm install bundle exec middleman s ``` @@ -31,3 +32,8 @@ You can help us with translations to your locale. For doing so, you can: 2. If you see your langugage you can ask for permissions there, if not you can [Contact us](https://crowdin.com/messages/create/13134379/434002) so we can add your language. Thanks!! + +## Credits + +* Made with [Middleman](https://middlemanapp.com/) and [TailwindCSS](https://tailwindcss.com/) +* Icons from [Remix Icon](https://remixicon.com/) diff --git a/Rakefile b/Rakefile index 52a2b4c2..70a846df 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,5 @@ -require 'middleman-gh-pages' +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new(:spec) + +task :default => :spec diff --git a/config.rb b/config.rb index 968ce7db..ed2969fe 100644 --- a/config.rb +++ b/config.rb @@ -1,27 +1,35 @@ +require "debug" + require 'lib/i18n_helpers' require 'lib/i18n_title_helpers' require 'lib/data_helpers' require 'lib/format_helpers' +require 'lib/icon_helpers' +require 'lib/page_helpers' helpers I18nHelpers helpers I18nTitleHelpers helpers DataHelpers helpers FormatHelpers +helpers IconHelpers +helpers PageHelpers # Activate multi-language activate :i18n, :mount_at_root => :en activate :directory_indexes -activate :autoprefixer do |prefix| - prefix.browsers = "last 2 versions" -end - # Reload the browser automatically whenever files change configure :development do activate :livereload end +activate :external_pipeline, + name: :tailwindcss, + command: "./node_modules/tailwindcss/lib/cli.js --postcss -i ./source/stylesheets/site.css -o ./source/stylesheets/tailwind.css #{ build? ? "--minify" : "--watch" }", + source: "source/stylesheets", + latency: 1 + # Per-page layout changes page '/*.xml', layout: false page '/*.json', layout: false @@ -30,16 +38,17 @@ # Blog activate :blog do |blog| blog.paginate = false - + blog.layout = "blog_layout" blog.permalink = "blog/{year}-{month}-{day}-{title}.html" blog.sources = "blog/en/{year}-{month}-{day}-{title}.html" - blog.layout = "layout-blog" blog.default_extension = ".md" blog.tag_template = "blog/tag.html" blog.calendar_template = "blog/calendar.html" end -activate :images +configure :build do + activate :images +end # Copy Netlify's _redirects file on build proxy "_redirects", "netlify-redirects", ignore: true diff --git a/config/i18n-tasks.yml b/config/i18n-tasks.yml new file mode 100644 index 00000000..a76e5a0c --- /dev/null +++ b/config/i18n-tasks.yml @@ -0,0 +1,167 @@ +# i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks + +# The "main" locale. +base_locale: en +## All available locales are inferred from the data by default. Alternatively, specify them explicitly: +# locales: [es, fr] +## Reporting locale, default: en. Available: en, ru. +# internal_locale: en + +# Read and write translations. +data: + ## Translations are read from the file system. Supported format: YAML, JSON. + ## Provide a custom adapter: + # adapter: I18n::Tasks::Data::FileSystem + + # Locale files or `File.find` patterns where translations are read from: + read: + - locales/%{locale}.yml + ## Default: + # - config/locales/%{locale}.yml + ## More files: + # - config/locales/**/*.%{locale}.yml + + # Locale files to write new keys to, based on a list of key pattern => file rules. Matched from top to bottom: + # `i18n-tasks normalize -p` will force move the keys according to these rules + write: + ## For example, write devise and simple form keys to their respective files: + # - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml'] + ## Catch-all default: + # - config/locales/%{locale}.yml + + # External locale data (e.g. gems). + # This data is not considered unused and is never written to. + external: + ## Example (replace %#= with %=): + # - "<%#= %x[bundle info vagrant --path].chomp %>/templates/locales/%{locale}.yml" + + ## Specify the router (see Readme for details). Valid values: conservative_router, pattern_router, or a custom class. + # router: conservative_router + + yaml: + write: + # do not wrap lines at 80 characters + line_width: -1 + + ## Pretty-print JSON: + # json: + # write: + # indent: ' ' + # space: ' ' + # object_nl: "\n" + # array_nl: "\n" + +# Find translate calls +search: + ## Paths or `File.find` patterns to search in: + paths: + - source/ + + ## Root directories for relative keys resolution. + # relative_roots: + # - app/controllers + # - app/helpers + # - app/mailers + # - app/presenters + # - app/views + + ## Directories where method names which should not be part of a relative key resolution. + # By default, if a relative translation is used inside a method, the name of the method will be considered part of the resolved key. + # Directories listed here will not consider the name of the method part of the resolved key + # + # relative_exclude_method_name_paths: + # - + + ## Files or `File.fnmatch` patterns to exclude from search. Some files are always excluded regardless of this setting: + ## *.jpg *.jpeg *.png *.gif *.svg *.ico *.eot *.otf *.ttf *.woff *.woff2 *.pdf *.css *.sass *.scss *.less + ## *.yml *.json *.zip *.tar.gz *.swf *.flv *.mp3 *.wav *.flac *.webm *.mp4 *.ogg *.opus *.webp *.map *.xlsx + exclude: + - source/fonts + - source/images + - source/javascripts + - source/pdf + - source/stylesheets + - source/uploads + + ## Alternatively, the only files or `File.fnmatch patterns` to search in `paths`: + ## If specified, this settings takes priority over `exclude`, but `exclude` still applies. + # only: ["*.rb", "*.html.slim"] + + ## If `strict` is `false`, guess usages such as t("categories.#{category}.title"). The default is `true`. + # strict: true + + ## Allows adding ast_matchers for finding translations using the AST-scanners + ## The available matchers are: + ## - RailsModelMatcher + ## Matches ActiveRecord translations like + ## User.human_attribute_name(:email) and User.model_name.human + ## + ## To implement your own, please see `I18n::Tasks::Scanners::AstMatchers::BaseMatcher`. + <%# I18n::Tasks.add_ast_matcher('I18n::Tasks::Scanners::AstMatchers::RailsModelMatcher') %> + + ## Multiple scanners can be used. Their results are merged. + ## The options specified above are passed down to each scanner. Per-scanner options can be specified as well. + ## See this example of a custom scanner: https://github.com/glebm/i18n-tasks/wiki/A-custom-scanner-example + +## Translation Services +# translation: +# # Google Translate +# # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate +# google_translate_api_key: "AbC-dEf5" +# # DeepL Pro Translate +# # Get an API key and subscription at https://www.deepl.com/pro to use DeepL Pro +# deepl_api_key: "48E92789-57A3-466A-9959-1A1A1A1A1A1A" +# # deepl_host: "https://api.deepl.com" +# # deepl_version: "v2" + +## Do not consider these keys missing: +# ignore_missing: +# - 'errors.messages.{accepted,blank,invalid,too_short,too_long}' +# - '{devise,simple_form}.*' + +## Consider these keys used: +ignore_unused: + - 'nav.*' + - 'about.values.*' + - 'faqs.questions.*.{question, answer, type}' + - 'index.cards.*.{title,link,content}' + - 'first-steps.*.{pre,title,content,link1}' + - 'partnership-policy.explanation.{p1,p2,p3}' + - 'press.links.*.{title,link}' + - '{legal-notice,privacy-policy}.*.{title,paragraph}' + - 'trademark.{p1,p2,p3}' + - 'trademark.goals.{l1,l2,l3}' + - 'trademark.{examples-1,examples-2,examples-3}.{title,l1,l2,l3}' +# - 'activerecord.attributes.*' +# - '{devise,kaminari,will_paginate}.*' +# - 'simple_form.{yes,no}' +# - 'simple_form.{placeholders,hints,labels}.*' +# - 'simple_form.{error_notification,required}.:' + +## Exclude these keys from the `i18n-tasks eq-base' report: +# ignore_eq_base: +# all: +# - common.ok +# fr,es: +# - common.brand + +## Exclude these keys from the `i18n-tasks check-consistent-interpolations` report: +# ignore_inconsistent_interpolations: +# - 'activerecord.attributes.*' + +## Ignore these keys completely: +# ignore: +# - kaminari.* + +## Sometimes, it isn't possible for i18n-tasks to match the key correctly, +## e.g. in case of a relative key defined in a helper method. +## In these cases you can use the built-in PatternMapper to map patterns to keys, e.g.: +# +# <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper', +# only: %w(*.html.haml *.html.slim), +# patterns: [['= title\b', '.page_title']] %> +# +# The PatternMapper can also match key literals via a special %{key} interpolation, e.g.: +# +# <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper', +# patterns: [['\bSpree\.t[( ]\s*%{key}', 'spree.%{key}']] %> diff --git a/data/about_us.yml b/data/about_us.yml new file mode 100644 index 00000000..a240bc70 --- /dev/null +++ b/data/about_us.yml @@ -0,0 +1,24 @@ +- name: Guillem Gal·la + role: Founder + image: +- name: Vicent Sara + role: Founder + image: +- name: Mar Rubèn + role: Founder + image: +- name: Jesús Manel + role: Founder + image: +- name: Agnès Adam + role: Founder + image: +- name: Mariona Montse + role: Founder + image: +- name: Alexandra Biel + role: Founder + image: +- name: Arnau Ramon + role: Founder + image: diff --git a/data/alert.yml b/data/alert.yml new file mode 100644 index 00000000..16af83c4 --- /dev/null +++ b/data/alert.yml @@ -0,0 +1,2 @@ +enabled: true +url: https://meta.decidim.org/ diff --git a/data/case_studies.yml b/data/case_studies.yml new file mode 100644 index 00000000..8b739996 --- /dev/null +++ b/data/case_studies.yml @@ -0,0 +1,15 @@ +- case_study1: + name: City of Helsinky + image: /images/case_studies/omastadi_helsinki.png + id: n1 + url: /blog/2022-06-01-decidim-and-the-city-of-helsinki/ +- case_study2: + name: Code for Japan + image: /images/case_studies/metadecidim_japan.png + id: n2 + url: /blog/2022-06-01-the-japanese-case/ +- case_study3: + name: European Commission + image: /images/case_studies/conference_future_of_europe.png + id: n3 + url: /blog/2022-06-01-the-conference-on-the-future-of-europe/ diff --git a/data/community.yml b/data/community.yml new file mode 100644 index 00000000..b7bad0f0 --- /dev/null +++ b/data/community.yml @@ -0,0 +1,6 @@ +- icon: ri-microscope-line + title: community1 +- icon: ri-team-line + title: community2 +- icon: ri-question-line + title: community3 diff --git a/data/facts.yml b/data/facts.yml new file mode 100644 index 00000000..00456743 --- /dev/null +++ b/data/facts.yml @@ -0,0 +1,18 @@ +- value: 390 + text: f1 +- value: 30 + text: f2 +- value: 240 + text: f3 +- value: 150 + text: f4 +- value: "925.152" + text: f5 +- value: 427 + text: f6 +- value: "100.129" + text: f7 +- value: "120.554" + text: f8 +- value: "11.215" + text: f9 diff --git a/data/faqs.yml b/data/faqs.yml new file mode 100644 index 00000000..e323445c --- /dev/null +++ b/data/faqs.yml @@ -0,0 +1,7 @@ +types: + - about + - users + - features + - community + - install + - association diff --git a/data/features.yml b/data/features.yml index a53f04e6..e5acd05f 100644 --- a/data/features.yml +++ b/data/features.yml @@ -1,68 +1,41 @@ -- feature1: - type: spaces - image: /images/features/processes.svg - id: feature1 -- feature2: - type: spaces - image: /images/features/assemblies.svg - id: feature2 -- feature3: - type: spaces - image: /images/features/consultations.svg - id: feature3 -- feature4: - type: spaces - image: /images/features/initiatives.svg - id: feature4 -- feature5: - type: components - image: /images/features/proposals.svg - id: feature5 -- feature6: - type: components - image: /images/features/voting.svg - id: feature6 -- feature7: - type: components - image: /images/features/results.svg - id: feature7 -- feature8: - type: components - image: /images/features/accountability.svg - id: feature8 -- feature9: - type: components - image: /images/features/meetings.svg - id: feature9 -- feature10: - type: components - image: /images/features/texts.svg - id: feature10 -- feature11: - type: other - image: /images/features/conference.svg - id: feature11 -- feature12: - type: other - image: /images/features/survey.svg - id: feature12 -- feature13: - type: other - image: /images/features/sortition.svg - id: feature13 -- feature14: - type: other - image: /images/features/comments.svg - id: feature14 -- feature15: - type: other - image: /images/features/blog.svg - id: feature15 -- feature16: - type: other - image: /images/features/notifications.svg - id: feature16 -- feature17: - type: other - image: /images/features/newsletter.svg - id: feature17 \ No newline at end of file +spaces: + - image: /images/features/participatory_processes.png + icon: ri-user-voice-line + id: feature1 + - image: /images/features/assemblies.png + icon: ri-team-line + id: feature2 + - image: /images/features/consultations.png + icon: ri-question-line + id: feature3 + - image: /images/features/initiatives.png + icon: ri-guide-line + id: feature4 + +components: + - icon: ri-git-commit-line + id: feature5 + - icon: ri-checkbox-multiple-fill + id: feature6 + - icon: ri-auction-line + id: feature7 + - icon: ri-text-wrap + id: feature8 + - icon: ri-calendar-line + id: feature9 + - icon: ri-file-text-line + id: feature10 + - icon: ri-mic-line + id: feature11 + - icon: ri-list-unordered + id: feature12 + - icon: ri-shuffle-fill + id: feature13 + - icon: ri-question-answer-fill + id: feature14 + - icon: ri-dashboard-fill + id: feature15 + - icon: ri-notification-3-line + id: feature16 + - icon: ri-mail-send-line + id: feature17 diff --git a/data/first_steps.yml b/data/first_steps.yml new file mode 100644 index 00000000..436e4ca8 --- /dev/null +++ b/data/first_steps.yml @@ -0,0 +1,18 @@ +- url1: https://docs.decidim.org + link1: first-steps1.link1 + icon: ri-computer-line + pre: first-steps1.pre + title: first-steps1.title + content: first-steps1.content +- url1: /features + link1: first-steps2.link1 + icon: ri-government-line + pre: first-steps2.pre + title: first-steps2.title + content: first-steps2.content +- url1: /partners + link1: first-steps3.link1 + icon: ri-team-line + pre: first-steps3.pre + title: first-steps3.title + content: first-steps3.content diff --git a/data/index.yml b/data/index.yml new file mode 100644 index 00000000..a02745d4 --- /dev/null +++ b/data/index.yml @@ -0,0 +1,39 @@ +features: + - id: feature1 + icon: ri-flow-chart + image: /images/index/accountability.png + - id: feature2 + icon: ri-user-voice-line + image: /images/index/participatory_processes.png + - id: feature3 + icon: ri-team-line + image: /images/index/assemblies.png + - id: feature4 + icon: ri-question-line + image: /images/index/initiatives.png + - id: feature5 + icon: ri-pie-chart-line + image: /images/index/budgets.png + - id: feature6 + icon: ri-discuss-line + image: /images/index/conversations.png + +cards: + - id: feature1 + icon: ri-briefcase-line + title: card1.title + content: card1.content + link: card1.link + url: /features + - id: feature1 + icon: ri-service-line + title: card2.title + content: card2.content + link: card2.link + url: /contract + - id: feature1 + icon: ri-hand-heart-line + title: card3.title + content: card3.content + link: card3.link + url: /community diff --git "a/data/installations/assembl\303\251e-nationale.yml" "b/data/installations/assembl\303\251e-nationale.yml" index adbaf1f2..10b29769 100644 --- "a/data/installations/assembl\303\251e-nationale.yml" +++ "b/data/installations/assembl\303\251e-nationale.yml" @@ -1,6 +1,7 @@ title: Assemblée Nationale url: https://petitions.assemblee-nationale.fr/ image: /uploads/logo_assemblee_nationale_fr.svg +home_image: /uploads/logo_assemblee_nationale_fr_red.png type: region priority: 95 home: true diff --git a/data/installations/barcelona.yml b/data/installations/barcelona.yml index 1160e39a..67c0624c 100644 --- a/data/installations/barcelona.yml +++ b/data/installations/barcelona.yml @@ -1,6 +1,7 @@ title: Barcelona url: 'https://www.decidim.barcelona/' image: /uploads/logo_aj_barcelona.jpg +home_image: /uploads/logo_aj_barcelona_red.png type: city priority: 100 home: true diff --git a/data/installations/ciudad-de-mexico.yml b/data/installations/ciudad-de-mexico.yml index fe0ab940..b38cf75d 100644 --- a/data/installations/ciudad-de-mexico.yml +++ b/data/installations/ciudad-de-mexico.yml @@ -1,6 +1,7 @@ title: Ciudad de Mexico url: https://plazapublica.cdmx.gob.mx/ image: /uploads/logo_aj_cdmx.png +home_image: /uploads/logo_aj_cdmx_red.png type: city priority: 95 home: true diff --git a/data/installations/conference-on-the-future-of-europe.yml b/data/installations/conference-on-the-future-of-europe.yml index d3bf3b3b..e419e0a4 100644 --- a/data/installations/conference-on-the-future-of-europe.yml +++ b/data/installations/conference-on-the-future-of-europe.yml @@ -1,6 +1,7 @@ title: Conference on the Future of Europe url: https://futureu.europa.eu/ image: /uploads/logo_european_comission.jpg +home_image: /uploads/logo_european_comission_red.png type: region priority: 99 home: true diff --git a/data/installations/generalitat-de-catalunya.yml b/data/installations/generalitat-de-catalunya.yml index 8b339fdd..2cc200a2 100644 --- a/data/installations/generalitat-de-catalunya.yml +++ b/data/installations/generalitat-de-catalunya.yml @@ -1,6 +1,7 @@ title: Generalitat de Catalunya url: 'http://participa.gencat.cat/' image: /uploads/logo_gencat.png +home_image: /uploads/logo_gencat_red.png type: region priority: 95 home: true diff --git a/data/installations/helsinki.yml b/data/installations/helsinki.yml index 89a66984..b883fb77 100644 --- a/data/installations/helsinki.yml +++ b/data/installations/helsinki.yml @@ -1,6 +1,7 @@ title: Helsinki -url: https://osallistu.hel.fi/ +url: https://omastadi.hel.fi/ image: /uploads/logo_aj_helsinki.png +home_image: /uploads/logo_aj_helsinki_red.png type: city priority: 98 home: true diff --git a/data/installations/kakogawa.yml b/data/installations/kakogawa.yml index c02602f9..0df38e30 100644 --- a/data/installations/kakogawa.yml +++ b/data/installations/kakogawa.yml @@ -1,6 +1,7 @@ title: Kakogawa url: https://kakogawa.diycities.jp/ image: /uploads/logo_aj_kakogawa.png +home_image: /uploads/logo_aj_kakogawa_red.png type: city priority: 90 home: true diff --git a/data/installations/nyc.yml b/data/installations/nyc.yml index cf286b0b..57673721 100644 --- a/data/installations/nyc.yml +++ b/data/installations/nyc.yml @@ -1,6 +1,7 @@ title: NYC url: https://www.participate.nyc.gov/ image: /uploads/logo_aj_nyc.png +home_image: /uploads/logo_aj_nyc_red.png type: city priority: 99 home: true diff --git "a/data/installations/r\303\251publique-et-canton-de-gen\303\250ve.yml" "b/data/installations/r\303\251publique-et-canton-de-gen\303\250ve.yml" index 3da434df..86dcb75b 100644 --- "a/data/installations/r\303\251publique-et-canton-de-gen\303\250ve.yml" +++ "b/data/installations/r\303\251publique-et-canton-de-gen\303\250ve.yml" @@ -1,6 +1,7 @@ title: République et Canton de Genève url: https://participer.ge.ch/ image: /uploads/logo_geneve.png +home_image: /uploads/logo_geneve_red.png type: region priority: 2 home: true diff --git "a/data/installations/s\303\251nat-fr.yml" "b/data/installations/s\303\251nat-fr.yml" index d3079069..f1cd786d 100644 --- "a/data/installations/s\303\251nat-fr.yml" +++ "b/data/installations/s\303\251nat-fr.yml" @@ -1,6 +1,7 @@ title: Sénat (FR) url: https://petitions.senat.fr/ image: /uploads/logo_senat_fr.png +home_image: /uploads/logo_senat_fr_red.png type: region priority: 95 home: true diff --git a/data/installations/uned.yml b/data/installations/uned.yml index 9e0b4da5..573ea537 100644 --- a/data/installations/uned.yml +++ b/data/installations/uned.yml @@ -1,6 +1,7 @@ title: UNED url: 'https://participa.uned.es' image: /uploads/logo-uned.png +home_image: /uploads/logo-uned-red.png type: org priority: 90 home: true diff --git "a/data/installations/universit\303\251-de-bordeaux.yml" "b/data/installations/universit\303\251-de-bordeaux.yml" index 3554ca8a..7d930c5c 100644 --- "a/data/installations/universit\303\251-de-bordeaux.yml" +++ "b/data/installations/universit\303\251-de-bordeaux.yml" @@ -1,6 +1,7 @@ title: Université de Bordeaux url: 'https://participation.u-bordeaux.fr/' image: /uploads/logo_uni_bordeaux.svg +home_image: /uploads/logo_uni_bordeaux_red.png type: org priority: 70 home: true diff --git a/data/languages.yml b/data/languages.yml index caf0a1c4..6ea8505a 100644 --- a/data/languages.yml +++ b/data/languages.yml @@ -2,36 +2,27 @@ - spanish: name: 'Castellano' path: 'es' - short_code: "Cas" - catalan: name: 'Català' path: 'ca' - short_code: "Cat" - czech: name: 'Čeština' path: 'cs' - short_code: "Cze" - english: name: 'English' path: 'en' - short_code: "Eng" - french: name: 'Français' path: 'fr' - short_code: "Fre" - german: name: 'Deutsch' path: 'de' - short_code: "Deu" - japanese: name: '日本語' path: 'ja' - short_code: "Jpn" - romanian: name: 'Română' path: 'ro' - short_code: "Rum" - suomi: name: 'Suomi' path: 'fi' - short_code: "Fin" diff --git a/data/links.yml b/data/links.yml new file mode 100644 index 00000000..f164d8d7 --- /dev/null +++ b/data/links.yml @@ -0,0 +1,93 @@ +decidim: + - name: nav.first-steps + url: /first-steps + - name: nav.features + url: /features + - name: nav.use-cases + url: /tags/casestudy + - name: nav.demo + url: https://try.decidim.org/ + - name: nav.modules + url: /modules + - name: nav.docs.title + url: https://docs.decidim.org/ + - name: nav.code + url: https://github.com/decidim/decidim + +about_us: + - name: nav.association + url: /about + - name: nav.community + url: /community + - name: nav.contract + url: /contract + - name: nav.partners + url: /partners + - name: nav.faqs + url: /faqs + - name: nav.press + url: /press + - name: nav.contact + url: /contact + +stay_up_to_date: + - name: nav.blog + url: /blog + +legal: + - name: nav.legal-notice + url: /legal-notice + - name: nav.privacy-policy + url: /privacy-policy + - name: nav.trademark + url: /trademark-policy + +social_media: + - name: Twitter + icon: ri-twitter-fill + url: https://twitter.com/decidim_org + footer: true + - name: Telegram + icon: ri-telegram-fill + url: https://t.me/s/decidim + footer: true + - name: Matrix + icon: ri-markdown-fill + url: https://matrix.to/#/#decidim:matrix.org + footer: true + - name: Mastodon + icon: ri-mastodon-fill + url: https://freeradical.zone/@decidim + footer: false + - name: YouTube + icon: ri-youtube-fill + url: https://www.youtube.com/channel/UCbxXpC5MmKImcGFzUJxdAUw + footer: true + - name: Instagram + icon: ri-instagram-fill + url: https://www.instagram.com/decidim_org/ + footer: true + - name: Linkedin + icon: ri-linkedin-fill + url: https://gt.linkedin.com/company/decidim/ + footer: false + - name: GitHub + icon: ri-github-fill + url: https://github.com/decidim/decidim + footer: false + - name: OpenCollective + icon: ri-donut-chart-fill + url: https://opencollective.com/decidim + footer: true + - name: Spotify + icon: ri-spotify-fill + url: https://open.spotify.com/show/1Cf4HJkv3M3SYanO8iEE1t + footer: false + - name: iVoox + icon: ri-information-fill + url: https://www.ivoox.com/en/podcast-radio-decidim_sq_f1990276_1.html + footer: false + - name: XRCB + icon: ri-close-fill + url: https://xrcb.cat/ca/radio/radio-decidim/ + footer: true diff --git a/data/partners.yml b/data/partners.yml index 7577737c..2de42a7c 100644 --- a/data/partners.yml +++ b/data/partners.yml @@ -1,123 +1,11 @@ +- name: Ajuntament de Barcelona + url: http://www.barcelona.cat/ + image: /images/partners/logo_partner_ajbcn.png + - name: Localret url: http://www.localret.cat/ image: /images/partners/logo_partner_localret.png -- name: Tecnopolitica - url: http://tecnopolitica.net/ - image: /images/partners/logo_partner_tecnopolitica.png - -- name: Internet Interdisciplinary Institute - IN3 - url: http://www.uoc.edu/portal/ca/in3/index.html - image: /images/partners/logo_partner_in3.png - -- name: aLabs - url: https://alabs.org/ - image: /images/partners/logo_partner_alabs.png - -- name: Eurecat - url: https://eurecat.org/ - image: /images/partners/logo_partner_eurecat.png - -- name: UPF - url: https://www.upf.edu/ - image: /images/partners/logo_partner_upf.png - -- name: Fundació Ferrer i Guardia - url: http://www.ferrerguardia.org/ - image: /images/partners/logo_partner_ffg.png - -- name: DECODE - url: https://dddc.decodeproject.eu/ - image: /images/partners/logo_partner_decode.png - -- name: Bitlab - url: http://www.bitlab.cat/ - image: /images/partners/logo_partner_bitlab.jpg - -- name: Populate Tools - url: http://populate.tools/ - image: /images/partners/logo_partner_populate-tools.png - -- name: Swwweet - url: https://www.swwweet.com/ - image: /images/partners/logo_partner_swwweet.svg - -- name: Open Source Politics - url: http://www.opensourcepolitics.eu/ - image: /images/partners/logo_partner_opensourcepolitics.jpg - -- name: ASP Gems - url: https://www.aspgems.com/ - image: /images/partners/logo_partner_aspgems.png - -- name: El Camino del Élder - url: http://elcaminodelelder.org/ - image: /images/partners/logo_partner_elder.jpg - -- name: Adab1ts - url: https://www.adabits.org/ - image: /images/partners/logo_partner_adab1ts.png - -- name: Codegram - url: https://www.codegram.com/ - image: /images/partners/logo_partner_codegram.png - -- name: Marsbased - url: https://marsbased.com/ - image: /images/partners/logo_partner_marsbased.png - -- name: CodiTramuntana - url: https://www.coditramuntana.com/ - image: /images/partners/logo_partner_coditramuntana.svg - -- name: Colectic Coop - url: https://colectic.coop/ - image: /images/partners/logo_partner_colectic.jpg - -- name: Ethicoo - url: http://ethicoo.org/ - image: /images/partners/logo_partner_ethicoo.png - -- name: Platoniq - url: http://platoniq.net/ - image: /images/partners/logo_partner_platoniq.png - -- name: Digital Fems - url: http://digitalfems.org - image: /images/partners/logo_partner_digitalfems.jpg - -- name: Mainio Tech - url: https://www.mainiotech.fi/ - image: /images/partners/logo_partner_mainio_tech.svg - -- name: Coopdevs - url: https://coopdevs.org/ - image: /images/partners/logo_partner_coopdevs.png - -- name: Liquid Voting - url: https://liquidvoting.io/ - image: /images/partners/logo_partner_liquidvoting.jpg - -- name: Octree - url: https://octree.ch/ - image: /images/partners/logo_partner_octree.png - -- name: Digidem Lab - url: https://digidemlab.org/ - image: /images/partners/logo_partner_digidemlab.svg - -- name: Tremend - url: https://tremend.com/ - image: /images/partners/logo_partner_tremend.png - -- name: Puzzle ITC - url: https://puzzle.ch - image: /images/partners/logo_partner_puzzle.svg - -- name: Afroleadership - url: https://afroleadership.org/ - image: /images/partners/logo_partner_afroleadership.jpg - -- name: Mitgestalten - url: https://partizipationsbuero.at/ - image: /images/partners/logo_partner_mitgestalten.jpg +- name: Generalitat de Catalunya + url: http://www.gencat.cat/ + image: /images/partners/logo_partner_gencat.png diff --git a/data/press.yml b/data/press.yml new file mode 100644 index 00000000..630817a3 --- /dev/null +++ b/data/press.yml @@ -0,0 +1,43 @@ +media: + - url: https://www.deutschlandfunk.de/wenn-buerger-politik-gestalten-barcelonas-erfolg-mit-der.795.de.html?dram:article_id=471680 + title: Barcelonas Erfolg mit der Plattform Decidim. + source: Deutschlandfunk + - url: https://www.lavanguardia.com/local/barcelona/20200219/473656039153/tecnologia-ciudad-y-democracia.html + title: Tecnología, Ciudad y Democracia. + source: La Vanguardia + - url: https://bherria.eus/es/una-plataforma-disenada-para-articular-procesos-democraticos-debe-contar-con-una-gobernanza-democratica/ + title: Una plataforma diseñada para articular procesos democráticos debe contar con una gobernanza democrática. + source: Bherria + - url: https://www.ft.com/content/67c52480-b51f-11e9-8cb2-799a3a8cf37b + title: Smart cities still need a human touch. + source: Financial Times + - url: https://www.information-age.com/negative-image-of-smart-cities-123485288/ + title: Why we should dispel the negative image of smart cities. + source: Information Age + - url: https://www.lemonde.fr/economie/article/2019/06/07/a-barcelone-un-modele-original-de-commun-numerique_5473033_3234.html + title: A Barcelone, un modèle original de « commun numérique ». + source: Le Monde + - url: https://kontrast.at/barcelona-smart-city-wirtschaft/ + title: In Barcelona schreiben die Bürger das Regierungsprogramm selbst – und machen ihre Stadt sozialer. + source: Kontrast + - url: https://www.vice.com/it/article/ev3334/m5s-di-maio-offerta-rousseau-gilet-gialli-proteste-francia-democrazia-diretta + title: L'offerta del M5S di dare Rousseau ai Gilet Gialli suona più come una minaccia. + source: Vice + - url: https://netzpolitik.org/2018/freie-software-als-oeffentliches-gut-und-was-rathaeuser-dafuer-tun-koennen/ + title: 'Interview: Wie Barcelona eine offene "Smart City" im Dienste des Gemeinwohls plant.' + source: Netzpolitik + - url: https://www.rbb-online.de/doku/b/besser-geht-immer/besser-geht-immer.html + title: Besser geht immer. Astrid Frohloff trifft kreative Bürokraten + source: RBB + +kit: + - icon: /images/decidim-symbol.svg + url: https://decidim.org/pdf/identity-manual-ca.pdf + - icon: ri-movie-2-line + url: https://www.youtube.com/watch?v=f6JMgJAQ2tc + - icon: ri-vidicon-2-line + url: https://meta.decidim.org/conferences/DecidimFest21 + - icon: ri-video-line + url: https://www.youtube.com/channel/UCbxXpC5MmKImcGFzUJxdAUw + - icon: ri-map-2-line + url: https://decidim.org/pdf/Decidim_Triptic_EN.pdf diff --git a/data/testimonials.yml b/data/testimonials.yml index 3c7f6cf1..a231aed1 100644 --- a/data/testimonials.yml +++ b/data/testimonials.yml @@ -2,27 +2,39 @@ name: Gala Pin image: /images/testimonials/gala_pin.jpg id: n1 + url: - testimonial2: name: Yaiza Blanch image: /images/testimonials/yaiza_blanch.jpg id: n2 + url: - testimonail6: name: Kasia Odrozek image: /images/testimonials/kasia_odrozek.jpg id: n6 + url: - testimonail7: name: Sivan Pätsch image: /images/testimonials/sivan_patsch.jpg id: n7 + url: - testimonial3: name: Renán A. Barrera Concha image: /images/testimonials/renain_barrera.jpg id: n3 + url: - testimonail4: name: Katja Henttonen image: /images/testimonials/katja_henttonen.jpg id: n4 + url: - testimonail5: name: Alejandra González image: /images/testimonials/alejandra_gonzalez.jpg id: n5 + url: +- testimonial8: + name: Francisco Tena + image: /images/testimonials/francisco_tena.jpg + id: n8 + url: diff --git a/lib/data_helpers.rb b/lib/data_helpers.rb index 0e5b31f6..726db58b 100644 --- a/lib/data_helpers.rb +++ b/lib/data_helpers.rb @@ -1,19 +1,59 @@ -module DataHelpers +# frozen_string_literal: true - def data_select_by(data, type) - data.select {|id,m| m["type"] == type} +module DataHelpers + # Extract the data files that has a given key + # Used for filtering the installations by type + # + # @param data [Array] An array with the name of the installation and the data hash from Middleman + # @param type [String] The type key to use in the selection + # @return [Array] + def data_select_by_type(data, type) + data.select { |_, m| m["type"] == type } end + # Extract the data files that has the home=true key and value + # Used for the installations in the homepage + # + # @param data [Middleman::Util::EnhancedHash] The data hash from Middleman + # @return [Middleman::Util::EnhancedHash] def data_select_home(data) - data.select {|id,m| m["home"] == true} + data.select { |_, m| m["home"] } end + # Extract from the data files that has the footer=true key and value + # Used for the social media links in the footer + # + # @param data [Hashie::Array] The data hash from Middleman + # @return [Hashie::Array] + def data_select_footer_social_media(hash) + hash.select { |m| m["footer"] } + end + + # Sort from the data files that has the numeric priority key + # + # @param data [Hash] A hash with the name of the installation as key and the middleman data hash as value + # @option String [Middleman::Util::EnhancedHash] + # @return [Hash] def data_sort_by_priority(data) - data.sort_by {|id,m| m["priority"] }.reverse + data.sort_by { |_, m| m["priority"] }.reverse end + # Sort alphabetically from the data files that has the title key + # + # @param data [Array] An array with the name of the installation and the data hash from Middleman + # @return [Middleman::Util::EnhancedHash] def data_sort_by_title(data) - data.sort_by {|id,m| m["title"] } + data.sort_by { |_, m| m["title"] } end -end \ No newline at end of file + # Clean an HTML string from image tags + # Used for the blog snippets or summaries in the homepage + # + # @param html [String] HTML with the string that needs to be cleaned up + # @return [String] + def strip_img(html) + doc = Nokogiri::HTML(html) + doc.search(".//img").remove + doc.to_html + end +end diff --git a/lib/format_helpers.rb b/lib/format_helpers.rb index d3026812..5ac12944 100644 --- a/lib/format_helpers.rb +++ b/lib/format_helpers.rb @@ -1,7 +1,7 @@ -module FormatHelpers +# frozen_string_literal: true +module FormatHelpers def markdown(string) - Tilt['markdown'].new(context: @app) { string }.render + Tilt["markdown"].new(context: @app) { string }.render end - end diff --git a/lib/i18n_helpers.rb b/lib/i18n_helpers.rb index 3933d450..61c52118 100644 --- a/lib/i18n_helpers.rb +++ b/lib/i18n_helpers.rb @@ -1,29 +1,60 @@ -module I18nHelpers - # https://gist.github.com/johnnyshields/98a695df51b1e99f3593579d3c9a3fd1 - - def current_path_for_locale(loc = I18n.locale, is_link = true) - return 'javascript: void(0);' if is_link && I18n.locale == loc +# frozen_string_literal: true +module I18nHelpers + # Return the current path for a given locale. + # This is used on the language switcher, so we can link to the same page where we are, + # instead of linking to the root page of all the languages. + # + # @see https://gist.github.com/johnnyshields/98a695df51b1e99f3593579d3c9a3fd1 + # @param loc [Symbol] The current locale + # @param current_path [String] The current page. We give it as a parameter to it's easier to test. + def current_path_for_locale(loc = I18n.locale, current_path = current_page.url) url_regex = /\A\/(?:(#{I18n.available_locales.join('|')})\/)?/ - current_page.url.gsub(url_regex, '').blank? ? - home_for_locale(loc) : - current_page.url.gsub(url_regex, root_for_locale(loc)) - end - - def path_for_locale(path, loc = I18n.locale) - root_for_locale(loc) + path + if current_path.gsub(url_regex, "").blank? + home_for_locale(loc) + else + current_path.gsub(url_regex, root_for_locale(loc)) + end end + # Return the homepage for a given locale. + # + # @see https://gist.github.com/johnnyshields/98a695df51b1e99f3593579d3c9a3fd1 + # @param [Symbol] + # @return [String] def home_for_locale(loc = I18n.locale) root_for_locale(loc) end + # Return the root for a given locale. + # As we have configured the :mount_at_root setting with English, then we return the "/" for :en + # + # @see https://gist.github.com/johnnyshields/98a695df51b1e99f3593579d3c9a3fd1 + # @param [Symbol] + # @return [String] def root_for_locale(loc = I18n.locale) - loc == "en" ? '/' : "/#{loc}/" + loc.to_s == "en" ? "/" : "/#{loc}/" end + def url(path) + # Don't append pathname if these match + return path if URI(path).scheme.present? || path.start_with?("/blog") + + t(:path) + path + end + + # Wheter if we show the language switcher or not + # On the case of the blog section we don't, as we don't translate all the blog posts to all the locales + # + # @return [Boolean] def show_language_switcher? - current_page.path.include?("blog") ? false : true + !current_page.path.include?("blog") # rubocop:disable Rails/NegateInclude end + # In order to get a successful build, it requires to parse the missing i18n keys + # for languages others than english, so this function returns the translations if exists + # otherwise it returns a default value + def t_with_default(key, default = {}) + t(key, default: "").presence || default + end end diff --git a/lib/i18n_title_helpers.rb b/lib/i18n_title_helpers.rb index 0ae2bd78..90ba4492 100644 --- a/lib/i18n_title_helpers.rb +++ b/lib/i18n_title_helpers.rb @@ -1,9 +1,10 @@ +# frozen_string_literal: true + module I18nTitleHelpers def page_title(page) - if defined?(page.data.nav) - title = I18n.t("nav.#{page.data.nav}") - return "#{title} | Decidim" - end - return "Decidim" + return "#{I18n.t("nav.#{page.data.nav}")} | Decidim" if defined?(page.data.nav) + return "#{page.data.title} | Decidim" if defined?(page.data.title) + + "Decidim" end -end \ No newline at end of file +end diff --git a/lib/icon_helpers.rb b/lib/icon_helpers.rb new file mode 100644 index 00000000..e57f8a33 --- /dev/null +++ b/lib/icon_helpers.rb @@ -0,0 +1,20 @@ +# frozen_string_literal: true + +module IconHelpers + def icon(id, args = {}) + if list_icons.include?(id) + icon_reference = { "xlink:href" => "/images/remixicon.symbol.svg##{id}" } + opts = { "fill" => "currentColor" }.merge(args) + content_tag(:svg, content_tag(:use, "", icon_reference), opts) + else + image_tag(id, **args) + end + end + + def list_icons + @list_icons ||= begin + file = File.open("./source/images/remixicon.symbol.svg") + Nokogiri::XML(file).css("symbol").map { |node| node["id"] } + end + end +end diff --git a/lib/page_helpers.rb b/lib/page_helpers.rb new file mode 100644 index 00000000..2131e487 --- /dev/null +++ b/lib/page_helpers.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +module PageHelpers + # Check if we're in the homepage + # + # @param current_path [String] The current page. We give it as a parameter to it's easier to test. + # @return [Boolean] + def is_homepage?(current_path = current_page.url) + I18n.available_locales.map{ |code| "/#{code}/" }.push("/").include? current_path + end + + # Return true if the alert banner is enabled + # + # @param enabled [Boolean] Whether the alert is enabled. We give it as a parameter to it's easier to test. + def alert_enabled?(enabled = data.alert.enabled) + enabled + end +end diff --git a/locales/ca.yml b/locales/ca.yml index ee6fda09..434e8c64 100644 --- a/locales/ca.yml +++ b/locales/ca.yml @@ -1,448 +1,589 @@ +--- ca: - path: '/ca' - activeLang: 'Català' - nav: - text: 'Navegació' - demo: 'Demo' - community: 'Comunitat' - contract: 'Contracte social' - code: 'Codi' - docs: - title: 'Documentació' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Funcionalitats' - faqs: 'FAQs' - contact: 'Contacte' - used_by: 'Ja fan servir Decidim' - partners: 'Entitats col·laboradores' - modules: 'Mòduls' - press: 'Prensa' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democràcia, Tecnologia i Justícia Global | 20, 21 i 22 Octubre' - subtitle: 'Oberta convocatòria' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/?locale=ca - desc: 'Un programa intensiu de 3 dies d''activitats dedicat al projecte Decidim, la democràcia participativa i les eines de codi obert per a la intel·ligència col·lectiva en l''era de la democràcia global.' - index: - hero: - heading: 'Democràcia participativa de codi obert per a ciutats i organitzacions' - subheading: 'Decidim és una plataforma digital
de participació ciutadana' - intro: 'Tecnologia lliure i segura.
Amb totes les garanties democràtiques.
Reprogramar la democràcia ara és possible amb Decidim.' - video: - play: 'Reproduir vídeo' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Tancar el vídeo' - subhero: - intro: 'Decidim ajuda a ciutadans, organitzacions i institucions públiques a auto-organitzar-se democràticament a tots els nivells.' - feature1: 'Planificació
estratègica' - feature2: 'Pressupostos
participatius' - feature3: 'Iniciatives i
consultes ciutadanes' - feature4: 'Processos
participatius' - feature5: 'Òrgans
de participació' - feature6: 'Comunicació
en xarxa' - used_by: - title: 'Ja fan servir Decidim' - cta: 'Veure tots' - cta: - title: 'comença a fer servir Decidim' - button: - code: 'Codi a GitHub' - footer: - supported_by: 'Supported by' - attribution: '- Amb llicència Creative Commons By-SA' - demo: - title: Demo en línia - p1: Coneix i prova lliurement la plataforma Decidim amb la demo en línia. - p2: La plataforma Decidim està activa en diversos exemples que pots visitar i explorar, Decidim Barcelona, de la ciutat de Barcelona, o bé pots visitar els llocs de Gavà i de l'Hospitalet. Però aquests són exemples reals i potser no els pots experimentar lliurement perquè no ets ciutadà o ciutadana d'aquests municipis, i tampoc no pots explorar els llocs com a administrador. - p3: Si vols anar més enllà, et convidem a provar Decidim des del lloc web de demostració (cortesia dels desenvolupadors de aLabs). Entra al lloc de demostració i prova lliurement el potencial de Decidim i les seves característiques. - p4: Pots accedir com a administrador (amb el nom d'usuari admin@example.org i la contrasenya decidim123456). - button: Demo en línia + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, la nostra comunitat' - subtitle: 'Una comunitat democràtica que gestiona el projecte Decidim en totes les seves dimensions' - intro: 'Metadecidim és una comunitat que col·labora en el disseny de la plataforma i la construcció del projecte. Entre totes podem dissenyar i desenvolupar noves funcionalitats i notificar bugs per una millora continua de la plataforma.' - cta: 'Començar' - features: - title: 'Proposa noves funcionalitats' - subtitle: 'Dissenyar i desenvolupar Decidim entre totes' - text: 'Pots crear debats sobre el futur de Decidim o proposar noves funcionalitats o millores. Les propostes poden rebre adhesions i comentaris, per mostrar, per exemple, l''interès que desperten en la comunitat i valorar el seu desenvolupament. Seran útils per al projecte les propostes que comptin amb un patrocinador o sponsor (com un ajuntament o qualsevol altra entitat), responsable de buscar i aportar els recursos necessaris per dur a terme el seu desenvolupament.' - cta: 'Entra i participa ara' - bug: - title: 'Notifica un bug' - subtitle: 'Col·laboració per a la millora contínua' - text: 'Cada nova versió (release) de Decidim incorpora noves funcionalitats i millores d''usabilitat, però no sempre tot funciona a la primera i poden aparèixer errors. Aquí pots reportar els errors (bugs) que trobis. Així ajudes a l''equip de desenvolupament a corregir-los ràpidament.' - cta: 'Entra i participa ara' - img_alt: 'Fotografia de la comunitat Decidim a les jornades Metadecidim 2016' - timeline: - title: 'Disseny col·laboratiu de funcionalitats' - step1: - title: 'Nova proposta' - text: 'Descripció funcional' - step2: - title: 'Proposta validada' - text: 'Validació tècnica i tecnopolítica' - step3: - title: 'Proposta planificada' - text: 'Recursos pel desenvolupament (compartits o no)' - step4: - title: 'Issue' - text: 'Descripció tècnica' - step5: - title: 'Pull request' - text: 'Codi desenvolupat' - step6: - title: 'Funcionalitat feta' - text: 'Disponible en la següent versió' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Començar + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Fotografia de la comunitat Decidim a les jornades Metadecidim 2016 + intro: Metadecidim és una comunitat que col·labora en el disseny de la plataforma i la construcció del projecte. Entre totes podem dissenyar i desenvolupar noves funcionalitats i notificar bugs per una millora continua de la plataforma. + subtitle: Una comunitat democràtica que gestiona el projecte Decidim en totes les seves dimensions + title: Metadecidim, la nostra comunitat contact: - title: Contacta amb nosaltres - bot_field: "No omplis aquest camp si ets human:" - name: Nom - entity: Entitat + bot_field: 'No omplis aquest camp si ets human:' email: Correu electrònic - subject: Assumpte message: Missatge + name: Nom privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Enviar - thanks: - title: Gràcies per contactar-nos - message: Gràcies pel teu correu electrònic, et respondrem en breu. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contacta amb nosaltres + demo: + button: Demo en línia + p1: Coneix i prova lliurement la plataforma Decidim amb la demo en línia. + strong: Try Online + title: Demo en línia + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Preguntes més freqüents + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funcionalitats' - intro: '

Pots utilitzar Decidim en una organització pública o privada, amb centenars o milers de potencials participants, com un ajuntament, una associació, una universitat, una ONG, un sindicat, un col·lectiu de barri o cooperativa…

Gràcies a Decidim podràs configurar espais de participació (iniciatives, assemblees, processos o consultes) i enriquir-los a través dels múltiples components disponibles (trobades presencials, enquestes, propostes, votacions, seguiment de resultats, comentaris i molts més).

' - list: - n1: - title: 'Pressupostos
participatius' - content: 'Analitza les propostes rebudes i potencia una nova forma de distribuir els recursos comuns.' - n2: - title: 'Iniciatives
i consultes ciutadanes' - content: 'Empodera a la teva comunitat a través d''iniciatives ciutadanes. Promou votacions rellevants a través de consultes.' - n3: - title: 'La potència
d''una xarxa política' - content: 'Porta la deliberació, la col·laboració i la decisió a una dimensió multitudinària, amb milers de persones participant en temps real.' - n4: - title: 'Un sistema
democràtic i flexible' - content: 'Gràcies a la seva arquitectura modular i la seva lògica escalable, podràs configurar un potent sistema de governança democràtica en tot tipus d''organitzacions.' - n5: - title: 'Ens prenem la democràcia
seriosament' - content: 'Decidim assegura la transparència, traçabilitat i integritat de la informació com mai abans. Proporciona seguretat, privadesa i confidencialitat a totes les participants.' - n6: - title: "És vostra.
Compartiu-la. Milloreu-la." - content: 'Una plataforma pensada completament amb programari lliure, de contingut obert i col·laboratiu gràcies a la comunitat Metadecidim.' - cta: - features: 'Veure totes les funcionalitats' - values: 'Anar al contracte social' + intro: "

Pots utilitzar Decidim en una organització pública o privada, amb centenars o milers de potencials participants, com un ajuntament, una associació, una universitat, una ONG, un sindicat, un col·lectiu de barri o cooperativa…

Gràcies a Decidim podràs configurar espais de participació (iniciatives, assemblees, processos o consultes) i enriquir-los a través dels múltiples components disponibles (trobades presencials, enquestes, propostes, votacions, seguiment de resultats, comentaris i molts més).

" page: feature1: - title: 'Processos participatius' - subtitle: 'per democratitzar assumptes comuns, pas a pas' - text: >- - Processos permet crear, activar/desactivar i administrar diferents processos de participació, articular-los en diferents fases en què poden combinar-se tots els components. Exemples de processos participatius son: un procés d’elecció dels membres d’un consell, pressupostació participativa, un procés de planificació estratègica, la redacció col·laborativa d’un reglament o norma, el disseny d’un espai urbà o la producció d’un pla de polítiques públiques. - feature2: - title: 'Òrgans
de participació' - subtitle: 'el poder de la autorganització col·lectiva' - text: >- - Les Assemblees ofereixen la possibilitat de definir òrgans o grups de decisió (consells, grups de treball, comitès, etc.) que es reuneixen periòdicament, detallar-ne la composició, llistant i geolocalitzant les seves trobades i permetent la participació (per exemple; acudint-hi si l’aforament i la naturalesa de l’assemblea ho permet, introduint punts en l’ordre del dia o comentant les propostes i decisions preses per l’òrgan esmentat). - feature3: - title: 'Consultes' - subtitle: 'el dret a decidir amb totes les garanties democràtiques' - text: >- - Consultes fa possible articular referèndums, generar discussions i debats, connectar amb un sistema de vot electrònic segur i mostrar els resultats. - feature4: - title: 'Iniciatives' - subtitle: "marcar l’agenda de totes, a l'abast de qualsevol" - text: >- - Iniciatives permet crear iniciatives de manera col·laborativa, definir-ne la trajectòria i l’objectiu, recollir suports, discutir, debatre i difondre la iniciativa i definir punts de trobada per a la recollida de signatures presencial o debats oberts a altres membres de l’organització. - feature5: - title: 'Propostes' - subtitle: 'les vostres idees, detalladament' - text: >- - El component propostes permet a l’usuari crear una proposta utilitzant un assistent de creació comparar-la amb les existents, publicar-la a la plataforma i incloure informació addicional com geolocalització o adjuntar documents i imatges. Aquest component també permet navegar, filtrar i interactuar amb un conjunt de propostes. A més, amb la proposta-incubadora podeu crear propostes col·laboratives. - feature6: - title: 'Votacions' - subtitle: 'decideix el teu vot' - text: >- - El component votacions ofereix a les organitzacions la possibilitat d’activar diferents sistemes de votació o suport sobre les propostes: vot il·limitat, a un determinat sector, ponderat, basat en costos, etcètera. - feature7: - title: 'Resultats' - subtitle: 'cap proposta sense resposta' - text: >- - El component resultats serveix per convertir propostes en resultats i donar respostes oficials a la seva acceptació o rebuig, fusionant diverses propostes en un sol resultat. - feature8: - title: 'Rendició de comptes' - subtitle: 'transparència de principi a fi' - text: >- - El component de rendició de comptes ofereix la possibilitat de subdividir els resultats en projectes, definir i aplicar estats de progrés entorn de la seva implementació, així com mostrar el grau d'implementació dels resultats agrupats per categories i abast. - feature9: - title: 'Trobades' - subtitle: 'per trobar-se i no perdre''s res' - text: >- - El component trobades ofereix a les organitzacions i als participants la possibilitat de convocar reunions, definir lloc i hora, registrar i limitar el nombre d’assistents, definir l’estructura i els continguts d’una cita o trobada presencial, així com de publicar-ne les actes i les propostes resultants. + subtitle: per democratitzar assumptes comuns, pas a pas + text: 'Processos permet crear, activar/desactivar i administrar diferents processos de participació, articular-los en diferents fases en què poden combinar-se tots els components. Exemples de processos participatius son: un procés d’elecció dels membres d’un consell, pressupostació participativa, un procés de planificació estratègica, la redacció col·laborativa d’un reglament o norma, el disseny d’un espai urbà o la producció d’un pla de polítiques públiques.' + title: Processos participatius feature10: - title: 'Textos participatius' - subtitle: 'per analitzar, sintetitzar, i construir en comú' - text: >- - El component textos participatius permet dividir un document de text en diverses propostes o resultats i, inversament, compondre i visualitzar un text unificat partint d’una col·lecció de propostes o resultats. + subtitle: per analitzar, sintetitzar, i construir en comú + text: El component textos participatius permet dividir un document de text en diverses propostes o resultats i, inversament, compondre i visualitzar un text unificat partint d’una col·lecció de propostes o resultats. + title: Textos participatius feature11: - title: 'Conferència' - subtitle: 'On els grans esdeveniments s’estrenen' - text: >- - El component conferència permet a una organització crear un lloc web per a un gran esdeveniment unint tot una sèrie de trobades predefinides (xats, tallers, etc.), creant un programa unificat i gestionant l’assistència. + subtitle: On els grans esdeveniments s’estrenen + text: El component conferència permet a una organització crear un lloc web per a un gran esdeveniment unint tot una sèrie de trobades predefinides (xats, tallers, etc.), creant un programa unificat i gestionant l’assistència. + title: Conferència feature12: - title: 'Enquestes' - subtitle: 'Perquè l''opinió de la teva comunitat importa' - text: >- - El component enquestes es pot utilitzar per dissenyar i publicar enquestes i per mostrar i descarregar els seus resultats. + subtitle: Perquè l'opinió de la teva comunitat importa + text: El component enquestes es pot utilitzar per dissenyar i publicar enquestes i per mostrar i descarregar els seus resultats. + title: Enquestes feature13: - title: 'Sorteig' - subtitle: 'La igualtat i la justícia de l''atzar' - text: >- - El component sorteig permet escollir un número de propostes (per exemple, candidats a un jurat) amb procediments aleatoris, però reproduïbles, que garanteixen distribucions no esbiaixades i uniformes. + subtitle: La igualtat i la justícia de l'atzar + text: El component sorteig permet escollir un número de propostes (per exemple, candidats a un jurat) amb procediments aleatoris, però reproduïbles, que garanteixen distribucions no esbiaixades i uniformes. + title: Sorteig feature14: - title: 'Comentaris' - subtitle: 'Construyendo la inteligencia colectiva' - text: >- - El component comentaris permet als usuaris afegir comentaris, identificar el comentari com a favor, en contra o neutral en relació amb l’objecte comentat, votar comentaris, respondre-hi i rebre notificacions sobre les respostes. + subtitle: Construyendo la inteligencia colectiva + text: El component comentaris permet als usuaris afegir comentaris, identificar el comentari com a favor, en contra o neutral en relació amb l’objecte comentat, votar comentaris, respondre-hi i rebre notificacions sobre les respostes. + title: Comentaris feature15: - title: 'Pàgines i blogs' - subtitle: 'La teva comunitat, informada i al dia' - text: >- - El component pàgines serveix per crear pàgines informatives amb text enriquit, imatges i vídeos. El component blog permet la creació de missatges o notícies, i navegar cronològicament per ells. + subtitle: La teva comunitat, informada i al dia + text: El component pàgines serveix per crear pàgines informatives amb text enriquit, imatges i vídeos. El component blog permet la creació de missatges o notícies, i navegar cronològicament per ells. + title: Pàgines i blogs feature16: - title: 'Notificacions' - subtitle: 'Informació personalitzada de continguts d’interès' - text: >- - Decidim permet seguir qualsevol espai o component per rebre actualitzacions cada vegada que es produeixin. + subtitle: Informació personalitzada de continguts d’interès + text: Decidim permet seguir qualsevol espai o component per rebre actualitzacions cada vegada que es produeixin. + title: Notificacions feature17: - title: 'Butlletí' - subtitle: 'Sencill però potent' - text: >- - El component butlletí permet enviar correus electrònics a totes les persones registrades en la plataforma. + subtitle: Sencill però potent + text: El component butlletí permet enviar correus electrònics a totes les persones registrades en la plataforma. + title: Butlletí + feature2: + subtitle: el poder de la autorganització col·lectiva + text: Les Assemblees ofereixen la possibilitat de definir òrgans o grups de decisió (consells, grups de treball, comitès, etc.) que es reuneixen periòdicament, detallar-ne la composició, llistant i geolocalitzant les seves trobades i permetent la participació (per exemple; acudint-hi si l’aforament i la naturalesa de l’assemblea ho permet, introduint punts en l’ordre del dia o comentant les propostes i decisions preses per l’òrgan esmentat). + title: Òrgans
de participació + feature3: + subtitle: el dret a decidir amb totes les garanties democràtiques + text: Consultes fa possible articular referèndums, generar discussions i debats, connectar amb un sistema de vot electrònic segur i mostrar els resultats. + title: Consultes + feature4: + subtitle: marcar l’agenda de totes, a l'abast de qualsevol + text: Iniciatives permet crear iniciatives de manera col·laborativa, definir-ne la trajectòria i l’objectiu, recollir suports, discutir, debatre i difondre la iniciativa i definir punts de trobada per a la recollida de signatures presencial o debats oberts a altres membres de l’organització. + title: Iniciatives + feature5: + subtitle: les vostres idees, detalladament + text: El component propostes permet a l’usuari crear una proposta utilitzant un assistent de creació comparar-la amb les existents, publicar-la a la plataforma i incloure informació addicional com geolocalització o adjuntar documents i imatges. Aquest component també permet navegar, filtrar i interactuar amb un conjunt de propostes. A més, amb la proposta-incubadora podeu crear propostes col·laboratives. + title: Propostes + feature6: + subtitle: decideix el teu vot + text: 'El component votacions ofereix a les organitzacions la possibilitat d’activar diferents sistemes de votació o suport sobre les propostes: vot il·limitat, a un determinat sector, ponderat, basat en costos, etcètera.' + title: Votacions + feature7: + subtitle: cap proposta sense resposta + text: El component resultats serveix per convertir propostes en resultats i donar respostes oficials a la seva acceptació o rebuig, fusionant diverses propostes en un sol resultat. + title: Resultats + feature8: + subtitle: transparència de principi a fi + text: El component de rendició de comptes ofereix la possibilitat de subdividir els resultats en projectes, definir i aplicar estats de progrés entorn de la seva implementació, així com mostrar el grau d'implementació dels resultats agrupats per categories i abast. + title: Rendició de comptes + feature9: + subtitle: per trobar-se i no perdre's res + text: El component trobades ofereix a les organitzacions i als participants la possibilitat de convocar reunions, definir lloc i hora, registrar i limitar el nombre d’assistents, definir l’estructura i els continguts d’una cita o trobada presencial, així com de publicar-ne les actes i les propostes resultants. + title: Trobades + subtitle: For democratic organizations and collectives of any size and kind. + title: Funcionalitats type1: - title: 'Espais de participació' - subtitle: 'Perquè els participants realitzin propostes i prenguin decisions' + title: Espais de participació type2: - title: 'Components' - subtitle: 'Perquè les participants i espais interactuïn' - other: - subtitle: 'Atreveix-te a combinar els components als espais per dissenyar i implementar amb facilitat un potent sistema democràtic i adaptar-ho a les necessitats de la teva organització' - cta: - title: 'Descobreix com funciona Decidim a fons' - button: 'Funcionalitats i característiques' - partners: - notice: Els logotips de les entitats col·laboradores són propietat intel·lectual dels seus respectius titulars de drets d'autor. No pertanyen a la llicència Creative Commons By-SA , la resta de continguts del lloc tenen llicència. - modules: - description: Descripció - explanation: Utilitzant mòduls, podeu ampliar la funcionalitat Decidim i compartir-la amb altres usuaris. Et permet actualitzar fàcilment en el futur. Consulta la documentació per crear el teu propi mòdul . - image: Imatge - name: Nom - type: - community: Comunitat - auth: Autoritzacions - official: Oficials - used_by: - explain: Aquestes ciutats, regions i organitzacions ja fan servir Decidim - type: - city: Ciutats - region: Regions - organizations: Organitzacions - testimonials: - n1: - quote: >- - Gràcies a Decidim, hem aconseguit a Barcelona co-produir un pla estratègic de ciutat conjuntament amb la ciutadania. En el 2016 inaugurem el Pla d'Acció Municipal en forma de procés participatiu a través de Decidim Barcelona. Actualment aquest pla recull gairebé 7 mil propostes ciutadanes. Una dels avantatges d'utilitzar aquesta plataforma és que pots seguir en tot moment l'estat d'implementació de les propostes acceptades. - org: Ajuntament de Barcelona (2015-2019) - n2: - quote: >- - With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. - org: Som Energia - n3: - quote: >- - La plataforma digital Decide Mèrida va ser una oportunitat que va obrir com mai els mecanismes de participació ciutadana per a l'elaboració del Pla Municipal de Desenvolupament de Mèrida 2018-2021. Vam tenir més de 3 mil interaccions ciutadanes entre propostes, comentaris, suggeriments i suports que van donar lloc al major consens possible sobre què és el millor per a la nostra ciutat. Sens dubte, la plataforma Decide Mèrida continuarà sent la nostra aliada per a fer de Mèrida una societat cada dia més participativa. - org: President Municipal de Mèrida Yucatán, Mèxic. Ajuntament de Mérida Yucatán, Mèxic - n4: - quote: >- - Els principis democràtics com la rendició de comptes, la igualtat i la transparència estan en el centre del disseny. Decidim és està construït tenint al cap la democràcia, és el seu gran focus. - org: Ajuntament d’Helsinki - n5: - quote: >- - Pràcticament cada procés participatiu que ens ha arribat, l'hem pogut resoldre utilitzant les regles de negoci de Decidim. És una eina molt potent. No obstant això, la part que ens sembla més forta i important és la seva comunitat, tant de desenvolupadores com d'aquelles persones que la utilitzen per a processos participatius. Conviure amb aquesta comunitat ens ha fet dimensionar els desafiaments que comporta implementar la democràcia participativa en el món real. - org: Govern Obert de Ciutat de Méxic - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Preguntes més freqüents - q01: - question: Què és Decidim? - answer: >- - Decidim és una plataforma digital de participació ciutadana de codi lliure i obert per a ciutats i organitzacions. Però també Decidim és més que una plataforma digital: és un projecte i una infraestructura oberta que inclou codi, documentació, disseny, formació, un marc legal, interfícies col·laboratives, una comunitat d'usuaris i facilitadores i una visió global. - q02: - question: Qui està utilitzant Decidim actualment? - answer: >- - Actualment ho utilitzen ciutats i organitzacions. De fet qualsevol grup de persones pot utilitzar-ho, sigui una ONG, universitat, sindicat, cooperativa, col·lectiu de barri, etc. Consulta el [llistat sencer d'instàncies actives en l'actualitat](/ca/usedby/). - q03: - question: Què pot fer un administrador de Decidim? - answer: >- - Configurar processos participatius fàcilment. Vols fer un pla estratègic? O discutir noves normatives? O debatre sobre una plaça nova o un edifici públic per aconseguir el be comú? Gràcies a Decidim podràs configurar espais de participació (iniciatives, assemblees, processos o consultes) i enriquir-los a través dels múltiples components disponibles (trobades presencials, enquestes, propostes, votacions, seguiment de resultats, comentaris i molts més). - q04: - question: Què pot fer un participant (usuari) de Decidim? - answer: >- - Decidim fa possible que milers de persones s'organitzin democràticament realitzant propostes, assistint a reunions públiques, creant discussions deliberatives, decidint mitjançant diferents formes de votació i monitoritzant la implementació de les decisions. Participants can also communicate between them through the networked communication Decidim functionalities. - q05: - question: Vull provar Decidim ja, sense instal·lar-m'ho, per veure com funciona. Teniu una Demo? - answer: 'Si, tenim una [demo](/ca/demo).' - q06: - question: Amb quina freqüència hi ha actualitzacions de la plataforma? - answer: >- - Cada mes, aproximadament, alliberem una nova versió. En [aquest enllaç](https://github.com/decidim/decidim/releases) pots consultar l'històric de versions. - q07: - question: Què necessito per instal·lar Decidim? - answer: >- - Instal·lar Decidim és fàcil però necessites alguns coneixements i requeriments tècnics. Pots consultar el [tutorial d’instal·lació manual oficial](https://docs.decidim.org/en/install/). - q08: - question: On puc trobar el roadmap del projecte i les funcionalitats planificades? - answer: Pots trobar el roadmap de noves funcionalitats del projecte a [GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Què significa que Decidim sigui gratuït, lliure i de codi obert?' - answer: >- - Decidim és una plataforma de participació ciutadana feta per persones i per a persones. El seu codi font és obert i pot ser inspeccionat, modificat i millorat per qualsevol. El programari Decidim està cobert per la [llicència AGPL](https://ca.wikipedia.org/wiki/GNU_Affero_General_Public_License). Això vol dir que el pots utilitzar, modificar i redistribuir les seves versions derivades, sempre que respectis la llicència AGPL. - q10: - question: >- - Tinc idees de noves funcionalitats, de millora. Vull conèixer millor el projecte. Què puc fer? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Tinc molts dubtes, de tot tipus...on els puc plantejar o resoldre? - answer: >- - La millor manera d'intentar resoldre àgilment els teus dubtes és a través de la comunitat Metadecidim. Entra ara en el procés [“Fòrum de Suport”](https://meta.decidim.org/processes/supportforum?locale=es) i fixa't si el teu dubte existeix o si ha estat resolt i en cas contrari entra per realitzar consultes. Si no aconsegueixes resoldre el teu assumpte en aquest espai, potser és moment de contactar amb nosaltres a través del [formulari de contacte](http://decidim.org/ca/contact). - q12: - question: Existeix algun manual d'ajuda per començar a configurar-ho? - answer: >- - A l'apartat de [Documentació](https://decidim.org/ca/docs/) pots consultar l'última versió del nostre manual d'administrador. - q13: - question: Què és el Contracte Social? - answer: >- - Així és com anomenem al nostre Codi de Garanties Democràtiques i Col·laboració Democràtica. Tots els membres de la comunitat han de adherir-se al [Contracte Social](http://decidim.org/ca/contract). - q14: - question: Quines diferències hi ha amb el projecte Consul / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Què és la comunitat Metadecidim? - answer: >- - [Metadecidim](http://meta.decidim.org) és la comunitat de Decidim que col·labora en el disseny de la plataforma i la construcció del projecte Decidim. Ens reunim periòdicament a través de les [SOM (Sessions Operatives Metadecidim)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) i dels [Seminaris LAB de recerca](https://meta.decidim.org/assemblies/eix-lab). Entra a [meta.decidim.org](http://meta.decidim.org) per seguir d'a prop les convocatòries i si vols unir-te a la comunitat, nosaltres encantades ;-) - q16: - question: Puc participar en la comunitat Metadecidim encara que no resideixi a Barcelona? - answer: >- - Decidim és un projecte que neix a Barcelona i és per això que hi ha un vincle territorial fort amb aquest ciutat. Però sí, pots col·laborar en línia, a través dels processos participatius, debats, etc...que proporcionem en Metadecidim. Encara que potser vulguis venir a Barcelona alguna vegada :) - q17: - question: Volem formalitzar un acord de col·laboració. Existeix alguna plantilla que puguem usar? - answer: Sí, tenim plantilles per formalitzar acords de col·laboració. [Posa't en contacte amb nosaltres](/ca/contact). - q18: - question: A quin tipus de membres accepteu en la comunitat Metadecidim? - answer: A qualsevol que tingui bona fe i una actitud correcta cap a la col·laboració democràtica. - q19: - question: Oferiu instal·lació gratuïta a organitzacions sense ànim de lucre? - answer: >- - Sí, solament si ets una organització amb seu a Barcelona. Envia'ns un missatge i la Direcció de Recerca, Desenvolupament i Innovació de l'Àrea de Drets de Ciutadania, Participació i Transparència de l'Ajuntament de Barcelona t'ajudarà. - q20: - question: Recolzeu a les institucions? - answer: >- - Sí, però cal tenir paciència. Hi ha un munt d'institucions que volen usar Decidim en aquests moments i els estem ajudant pas a pas. [Posa't en contacte amb nosaltres](/ca/contact) per a qualsevol pregunta i et respondrem al més aviat possible. - q21: - question: Què és l'Associació Decidim? - answer: >- - L'Associació de Programari Lliure Decidim (Associació Decidim) és una associació democràtica que s'encarrega de la governança de la comunitat Decidim. - q22: - question: Com puc obtenir més informació sobre l'Associació Decidim? - answer: >- - A l['assemblea general de l'Associació Decidim](https://meta.decidim.org/assemblies/general-assembly-association) podràs conèixer-nos millor, seguir l'activitat de les trobades i consultar informació rellevant (estatuts, convenis, el reglament intern) - q23: - question: Com em puc fer sòcia de l'Associació Decidim? - answer: >- - Ara les persones implicades en el projecte poden ser sòcies. [Aquí t'expliquem en detall com ho has de fer.](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=ca) - q24: - question: Quan neix l'Associació Decidim? - answer: >- - L'Associació Decidim es funda [el 16 de febrer de 2019 a una assemblea extraordinària de la comunitat](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), amb l'aprovació dels estatuts. + title: Components + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Tecnologia lliure i segura.
Amb totes les garanties democràtiques.
Reprogramar la democràcia ara és possible amb Decidim. + subheading: Decidim és una plataforma digital
de participació ciutadana + subhero: + cta: Explore all features + feature1: Planificació
estratègica + feature2: Pressupostos
participatius + feature3: Iniciatives i
consultes ciutadanes + feature4: Processos
participatius + feature5: Òrgans
de participació + feature6: Comunicació
en xarxa + intro: Decidim ajuda a ciutadans, organitzacions i institucions públiques a auto-organitzar-se democràticament a tots els nivells. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Ja fan servir Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Codi + community: Comunitat + contact: Contacte + contract: Contracte social + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentació + faqs: FAQs + features: Funcionalitats + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Mòduls + partners: Entitats col·laboradores + partnership-policy: Partnership policy + press: Prensa + privacy-policy: Privacy policy + text: Navegació + trademark: Trademark policy + use-cases: Use cases + used_by: Ja fan servir Decidim + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/ca" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Ajuntament de Barcelona (2015-2019) + quote: Gràcies a Decidim, hem aconseguit a Barcelona co-produir un pla estratègic de ciutat conjuntament amb la ciutadania. En el 2016 inaugurem el Pla d'Acció Municipal en forma de procés participatiu a través de Decidim Barcelona. Actualment aquest pla recull gairebé 7 mil propostes ciutadanes. Una dels avantatges d'utilitzar aquesta plataforma és que pots seguir en tot moment l'estat d'implementació de les propostes acceptades. + n2: + org: Som Energia + quote: With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. + n3: + org: President Municipal de Mèrida Yucatán, Mèxic. Ajuntament de Mérida Yucatán, Mèxic + quote: La plataforma digital Decide Mèrida va ser una oportunitat que va obrir com mai els mecanismes de participació ciutadana per a l'elaboració del Pla Municipal de Desenvolupament de Mèrida 2018-2021. Vam tenir més de 3 mil interaccions ciutadanes entre propostes, comentaris, suggeriments i suports que van donar lloc al major consens possible sobre què és el millor per a la nostra ciutat. Sens dubte, la plataforma Decide Mèrida continuarà sent la nostra aliada per a fer de Mèrida una societat cada dia més participativa. + n4: + org: Ajuntament d’Helsinki + quote: Els principis democràtics com la rendició de comptes, la igualtat i la transparència estan en el centre del disseny. Decidim és està construït tenint al cap la democràcia, és el seu gran focus. + n5: + org: Govern Obert de Ciutat de Méxic + quote: Pràcticament cada procés participatiu que ens ha arribat, l'hem pogut resoldre utilitzant les regles de negoci de Decidim. És una eina molt potent. No obstant això, la part que ens sembla més forta i important és la seva comunitat, tant de desenvolupadores com d'aquelles persones que la utilitzen per a processos participatius. Conviure amb aquesta comunitat ens ha fet dimensionar els desafiaments que comporta implementar la democràcia participativa en el món real. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Gràcies pel teu correu electrònic, et respondrem en breu. + title: Gràcies per contactar-nos + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/cs.yml b/locales/cs.yml index 5e8c8b85..05a34ec2 100644 --- a/locales/cs.yml +++ b/locales/cs.yml @@ -1,448 +1,589 @@ +--- cs: - path: '/cs' - activeLang: 'Čeština' - nav: - text: 'Navigace' - demo: 'Demo' - community: 'Komunita' - contract: 'Sociální smlouva' - code: 'Kód' - docs: - title: 'Dokumentace' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Vlastnosti' - faqs: 'Časté dotazy' - contact: 'Kontakt' - used_by: 'Kde se používá' - partners: 'Spolupracující subjekty' - modules: 'Moduly' - press: 'Pro média' - legal-notice: 'Právní ustanovení' - privacy-policy: 'Zásady ochrany soukromí' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21. a 22. října' - subtitle: 'Připojte se k výzvě' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest je intenzivní třídenní program aktivit věnovaný projektu Decidim, participativní demokracie a nástrojům otevřených zdrojů pro kolektivní inteligenci v éře globální demokracie.' - index: - hero: - heading: 'Participativní demokracie pro města a organizace s otevřeným kódem' - subheading: 'Decidim je digitální platforma
pro participaci občanů' - intro: 'Dostupná a bezpečná technologie.
Se všemi demokratickými zárukami.
Přeprogramování demokracie je nyní možné s Decidim.' - video: - play: 'Přehrát video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Zavřít video' - subhero: - intro: 'Decidim pomáhá občanům, organizacím a veřejným institucím, aby se demokraticky organizovali v jakémkoliv rozsahu.' - feature1: 'Strategické
plánování' - feature2: 'Účastnické
sestavování rozpočtu' - feature3: 'Iniciativy a
konzultace občanů' - feature4: 'Účastnické
procesy' - feature5: 'Shromáždění' - feature6: 'Síťová komunikace
' - used_by: - title: 'Již používají Decidim' - cta: 'Zobrazit vše' - cta: - title: 'začněte používat Decidim už dnes' - button: - code: 'Kód na Github' - footer: - supported_by: 'Podporováno' - attribution: '- Creative Commons By-SA' - demo: - title: Online demo - p1: Zkoušejte a prozkoumejte zdarma platformu Decidim s naším online demo. - p2: Decidim běží na několika instancích, které můžete navštívit a prozkoumat, Decidim Barcelona v Barceloně nebo můžete navštívit stránky Gavà a L'Hospitalet. Ale toto jsou skutečné případy, kdy opravdu nemůžete volně zkoušet, protože nejste občanem těchto obcí, a nemůžete tyto stránky prozkoumat jako správce. - p3: Pokud chcete zjistit více, můžete vyzkoušet Decidim na našem zkušebním webu Decidim (díky laskavosti našich vývojářů z aLabs). Vstupte do demo stránky a bez obav prozkoumejte potenciál Decidim a jeho funkce. - p4: Můžete se přihlásit jako Admin (uživatelské jméno "admin@example.org" a heslo "decidim123456"). - button: Online demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, naše komunita' - subtitle: 'Demokratická komunita, která řídí projekt Decidim ve všech jeho rozměrech' - intro: 'Metadecidim je komunita, která spolupracuje na návrhu platformy a výstavbě projektu. Společně můžeme navrhnout a vyvinout nové funkce a nahlásit chyby pro trvalé zlepšování platformy.' - cta: 'Začněte' - features: - title: 'Navrhněte nové funkce' - subtitle: 'Navrhujte a vyvíjejte Decidim pro všechny' - text: 'Můžete vytvářet debaty o budoucnosti projektu Decidim nebo navrhovat nové funkce nebo vylepšení. Návrhy mohou obdržet potvrzení a komentáře, ukázat například zájem, který vzbuzují v komunitě a oceňují jejich rozvoj. Návrhy sponzora (např. městská rada nebo jakýkoli jiný subjekt), Pro projekt bude užitečný i pro hledání a poskytování nezbytných zdrojů pro jejich rozvoj.' - cta: 'Vstupte a zúčastněte se' - bug: - title: 'Nahlašte chybu' - subtitle: 'Spolupráce za účelem postupného zlepšování' - text: 'Každé nové vydání Decidim obsahuje nové funkce a vylepšení použitelnosti, ale ne všechno funguje na poprvé a mohou se objevit chyby. Zde můžete nahlásit chyby, které najdete a pomoci vývojářům je rychle opravit.' - cta: 'Vstupte a zúčastněte se' - img_alt: 'Fotografie komunity Decidim na Metadecidim setkání v roce 2016' - timeline: - title: 'Kolaborativní návrh funkcí' - step1: - title: 'Nový návrh' - text: 'Popis funkčnosti' - step2: - title: 'Schválený návrh' - text: 'Technické a technopolitické ověření' - step3: - title: 'Plánovaný návrh' - text: 'Zdroje pro vývoj (sdílené či nesdílené)' - step4: - title: 'Problém' - text: 'Technický popis' - step5: - title: 'Pull požadavek' - text: 'Vývojový kód' - step6: - title: 'Funkce dokončena' - text: 'Dostupné v další verzi' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Začněte + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Fotografie komunity Decidim na Metadecidim setkání v roce 2016 + intro: Metadecidim je komunita, která spolupracuje na návrhu platformy a výstavbě projektu. Společně můžeme navrhnout a vyvinout nové funkce a nahlásit chyby pro trvalé zlepšování platformy. + subtitle: Demokratická komunita, která řídí projekt Decidim ve všech jeho rozměrech + title: Metadecidim, naše komunita contact: - title: Kontaktujte nás - bot_field: "Nevyplňujte, pokud jste člověk:" - name: Jméno - entity: Subjekt + bot_field: 'Nevyplňujte, pokud jste člověk:' email: E-mail - subject: Předmět message: Zpráva + name: Jméno privacy_policy: - accept: Přijímám Zásady ochrany osobních údajů - message: >- -

Když nás lidé kontaktují kontaktním formulářem, e-mailem nebo podobným komunikačním prostředkem, budeme automaticky shromažďovat následující informace: jméno, entita, e-mailová adresa a obsah zprávy uživatele pro účast na vašich komentářích, žádostech, návrzích atd.

Kromě toho můžeme zpracovat tato data pro statistické studie pomocí pseudonymizace a dokonce i anonymizačních technik, jako je agregace údajů, které brání tomuto následnému zpracování v identifikaci jednotlivých uživatelů.

+ accept: I accept the Privacy Policy + message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Odeslat - thanks: - title: Děkujeme za váš e-mail - message: Děkujeme, že jste nás kontaktovali, brzy se k vám vrátíme. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Kontaktujte nás + demo: + button: Online demo + p1: Zkoušejte a prozkoumejte zdarma platformu Decidim s naším online demo. + strong: Try Online + title: Online demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Často kladené otázky + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Vlastnosti' - intro: '

Můžete použít Decidim ve veřejné nebo soukromé organizaci se stovkami nebo tisíci potenciálních účastníků, jako městská rada, sdružení, univerzita, nevládní organizace, odborový svaz, spolek, nebo družstvo...

Díky Decidim budete moci nakonfigurovat prostory pro účast (iniciativy, shromáždění, procesy nebo konzultace) a obohatit je prostřednictvím četných dostupných doplňků (osobních setkání, průzkumů, návrhů, hlasování, sledování výsledků, připomínek a mnoha dalších).

' - list: - n1: - title: 'Účastnické
rozpočty' - content: 'Rozebírá předložené návrhy a podporuje nový způsob rozdělování společných zdrojů.' - n2: - title: 'Občanské iniciativy
a konzultace' - content: 'Posilujte vaši komunitu prostřednictvím iniciativ občanů. Propagujte příslušné hlasování prostřednictvím konzultací.' - n3: - title: 'Síla
politické sítě' - content: 'Vyžaduje to promyšlení, spolupráci a rozhodování v obrovském rozsahu, při kterém se tisíce lidí účastní v reálném čase.' - n4: - title: 'Demokratický
a pružný systém' - content: 'Díky své modulární architektuře a škálovatelné logice můžete konfigurovat výkonný systém demokratické správy ve všech typech organizací.' - n5: - title: 'Demokracii
bereme velmi vážně' - content: 'Decidim zajišťuje transparentnost, sledovatelnost a integritu informací jako nikdy předtím. Poskytuje bezpečnost a soukromí a důvěrnost všem účastníkům.' - n6: - title: "Je to na vás.
Sdílejte. Zlepšete to." - content: 'Platforma navržená zcela se svobodným softwarem, otevřeným a kooperativním obsahem díky komunitě Metadecidim.' - cta: - features: 'Zobrazit všechny funkce' - values: 'Přejít na sociální smlouvu' + intro: "

Můžete použít Decidim ve veřejné nebo soukromé organizaci se stovkami nebo tisíci potenciálních účastníků, jako městská rada, sdružení, univerzita, nevládní organizace, odborový svaz, spolek, nebo družstvo...

Díky Decidim budete moci nakonfigurovat prostory pro účast (iniciativy, shromáždění, procesy nebo konzultace) a obohatit je prostřednictvím četných dostupných doplňků (osobních setkání, průzkumů, návrhů, hlasování, sledování výsledků, připomínek a mnoha dalších).

" page: feature1: - title: 'Participační procesy' - subtitle: 'demokratizovat společné problémy, krok za krokem' - text: >- - Proces je prostor, který umožňuje vytvářet, aktivovat/deaktivovat a spravovat různé participativní procesy. Rozlišují se od ostatních prostor tím, že jsou strukturovány v různých fázích, do nichž mohou být začleněny všechny součásti. Příklady participačních procesů jsou: volební proces pro členy výboru, participativní sestavování rozpočtu, proces strategického plánování, společné vypracování nařízení nebo normy, návrh městského prostoru nebo vypracování plánu veřejné politiky. - feature2: - title: 'Shromáždění' - subtitle: 'pravomoci kolektivní organizace' - text: >- - Je prostor, který nabízí možnost ustavit rozhodovací orgány nebo skupiny (rady, pracovní skupiny, výbory atd.) které se pravidelně scházejí s podrobnými údaji o složení, seznamu a místě svých zasedání, a umožňují jejich účast (například účast, pokud to dovoluje kapacita míst a povaha shromáždění, doplnění bodů na pořad jednání nebo připomínky k návrhům a rozhodnutím přijatým tímto orgánem). - feature3: - title: 'Konzultace' - subtitle: 'právo rozhodovat se všemi demokratickými zárukami' - text: >- - Konzultace jsou prostorem, který umožňuje koordinovat referenda, rozpoutat diskuse a debaty, zveřejňovat výsledky hlasování; může být připojen k zabezpečenému systému elektronického hlasování. - feature4: - title: 'Iniciativy' - subtitle: "nastavení agendy pro všechny, v dosahu všech" - text: >- - Iniciativy jsou prostorem, který účastníkům umožňuje společně vytvářet iniciativy, definovat jejich trajektorii a cíle, shromažďovat schválení, diskutovat, debatovat a šířit iniciativy a vymezovat místa zasedání, kde mohou být podpisy shromažďovány od účastníků nebo diskusí, které byly otevřeny ostatním členům organizace. - feature5: - title: 'Návrhy' - subtitle: 'vaše nápady podrobně' - text: >- - Komponenta návrhů umožňuje uživateli vytvořit návrh pomocí průvodce vytvořením a porovnat jej s existujícími, zveřejňuje jej na platformě a obsahuje další informace, jako je geolokace nebo přiložené dokumenty a obrázky. Tato komponenta vám také umožňuje navigovat, filtrovat a komunikovat se souborem návrhů. Kromě toho můžete s navrhovaným inkubátorem vytvořit společné návrhy. - feature6: - title: 'Hlasování' - subtitle: 'rozhodne váš hlas' - text: >- - Komponenta Hlasování nabízí organizacím možnost aktivovat různé hlasovací nebo podpůrné systémy kolem návrhů: neomezené, omezené na určitou prahovou hodnotu, vážené, zaměřené na náklady atd. - feature7: - title: 'Výsledky' - subtitle: 'žádný návrh nezůstane bez odpovědi' - text: >- - Komponenta Výsledky se používají k přeměně návrhů na výsledky a k oficiálním odpovědím týkajícím se jejich přijetí nebo odmítnutí, sloučení různých návrhů do jediného výsledku. - feature8: - title: 'Odpovědnost' - subtitle: 'transparentnost od začátku do konce' - text: >- - Komponenta Odpovědnosti nabízí možnost rozdělení výsledků na projekty, definování a uplatňování stavů pokroku při jejich provádění, a rovněž zobrazování rozsahu provádění výsledků seskupených podle kategorií a oblastí působnosti. - feature9: - title: 'Zasedání' - subtitle: 'potkat se a nenechat si nic ujít' - text: >- - Komponenta Schůzky nabízí organizacím a účastníkům možnost svolat zasedání, určit jejich polohu a čas, zaregistrují a omezují účastníky, definují strukturu a obsah zasedání, jakož i zveřejňují zápisy a výsledné návrhy. + subtitle: demokratizovat společné problémy, krok za krokem + text: 'Proces je prostor, který umožňuje vytvářet, aktivovat/deaktivovat a spravovat různé participativní procesy. Rozlišují se od ostatních prostor tím, že jsou strukturovány v různých fázích, do nichž mohou být začleněny všechny součásti. Příklady participačních procesů jsou: volební proces pro členy výboru, participativní sestavování rozpočtu, proces strategického plánování, společné vypracování nařízení nebo normy, návrh městského prostoru nebo vypracování plánu veřejné politiky.' + title: Participační procesy feature10: - title: 'Texty participace' - subtitle: 'analyzovat, syntetizovat a společně budovat' - text: >- - Komponenta Participativní texty lze použít k převodu zdlouhavých textových dokumentů na různé návrhy nebo výsledky a naopak, vytvořit a zobrazit jednotný text založený na souboru návrhů nebo výsledků. + subtitle: analyzovat, syntetizovat a společně budovat + text: Komponenta Participativní texty lze použít k převodu zdlouhavých textových dokumentů na různé návrhy nebo výsledky a naopak, vytvořit a zobrazit jednotný text založený na souboru návrhů nebo výsledků. + title: Texty participace feature11: - title: 'Konference' - subtitle: 'Kde jsou velké události poprvé představeny' - text: >- - Komponenta Konference umožňuje organizaci vytvořit webové stránky pro velkou událost připojením se k sérii předem definovaných schůzek (chaty, workshopy atd.), sestavování sjednoceného programu a řízení účastníků. + subtitle: Kde jsou velké události poprvé představeny + text: Komponenta Konference umožňuje organizaci vytvořit webové stránky pro velkou událost připojením se k sérii předem definovaných schůzek (chaty, workshopy atd.), sestavování sjednoceného programu a řízení účastníků. + title: Konference feature12: - title: 'Průzkumy' - subtitle: 'Protože na názoru vaší komunity záleží' - text: >- - Komponentu Průzkumy lze použít k navrhování a publikování průzkumů a k zobrazení a stažení jejich výsledků. + subtitle: Protože na názoru vaší komunity záleží + text: Komponentu Průzkumy lze použít k navrhování a publikování průzkumů a k zobrazení a stažení jejich výsledků. + title: Průzkumy feature13: - title: 'Losování' - subtitle: 'Rovnost a spravedlnost náhodnosti' - text: >- - Komponenta pro Losování umožňuje vybrat několik návrhů (např. zájemci o účast v porotě) s náhodnými, avšak reprodukovatelnými postupy, které zaručují nestranné a jednotné rozdělování. + subtitle: Rovnost a spravedlnost náhodnosti + text: Komponenta pro Losování umožňuje vybrat několik návrhů (např. zájemci o účast v porotě) s náhodnými, avšak reprodukovatelnými postupy, které zaručují nestranné a jednotné rozdělování. + title: Losování feature14: - title: 'Komentáře' - subtitle: 'Budování kolektivní inteligence' - text: >- - Komponenta komentářů umožňuje uživatelům přidávat komentáře, označit komentář jako oblíbený, proti připomínkám nebo neutrální v souvislosti s nimi, hlasovat o připomínkách, reagovat na ně a přijímat oznámení o odpovědích. + subtitle: Budování kolektivní inteligence + text: Komponenta komentářů umožňuje uživatelům přidávat komentáře, označit komentář jako oblíbený, proti připomínkám nebo neutrální v souvislosti s nimi, hlasovat o připomínkách, reagovat na ně a přijímat oznámení o odpovědích. + title: Komentáře feature15: - title: 'Stránky a blogy' - subtitle: 'Vaše komunita, informovaná a aktuální' - text: >- - Komponenta Stránky se používá k vytváření informativních stránek s bohatým formátováním textu, vloženými obrázky a videi. Komponenta blogu umožňuje tvorbu příspěvků nebo zpráv a jejich navigaci chronologicky. + subtitle: Vaše komunita, informovaná a aktuální + text: Komponenta Stránky se používá k vytváření informativních stránek s bohatým formátováním textu, vloženými obrázky a videi. Komponenta blogu umožňuje tvorbu příspěvků nebo zpráv a jejich navigaci chronologicky. + title: Stránky a blogy feature16: - title: 'Oznámení' - subtitle: 'Osobní informace o zajímavém obsahu' - text: >- - Decidim vám umožňuje sledovat každý prostor nebo komponentu, abyste mohli dostávat aktualizace pokaždé, když se tak stane. + subtitle: Osobní informace o zajímavém obsahu + text: Decidim vám umožňuje sledovat každý prostor nebo komponentu, abyste mohli dostávat aktualizace pokaždé, když se tak stane. + title: Oznámení feature17: - title: 'Zpravodaj' - subtitle: 'Jednoduchý, ale výkonný' - text: >- - Komponenta Zpravodaje umožňuje posílat e-maily všem registrovaným na platformě nebo selektivněji těm, kteří se účastní určitého prostoru. + subtitle: Jednoduchý, ale výkonný + text: Komponenta Zpravodaje umožňuje posílat e-maily všem registrovaným na platformě nebo selektivněji těm, kteří se účastní určitého prostoru. + title: Zpravodaj + feature2: + subtitle: pravomoci kolektivní organizace + text: Je prostor, který nabízí možnost ustavit rozhodovací orgány nebo skupiny (rady, pracovní skupiny, výbory atd.) které se pravidelně scházejí s podrobnými údaji o složení, seznamu a místě svých zasedání, a umožňují jejich účast (například účast, pokud to dovoluje kapacita míst a povaha shromáždění, doplnění bodů na pořad jednání nebo připomínky k návrhům a rozhodnutím přijatým tímto orgánem). + title: Shromáždění + feature3: + subtitle: právo rozhodovat se všemi demokratickými zárukami + text: Konzultace jsou prostorem, který umožňuje koordinovat referenda, rozpoutat diskuse a debaty, zveřejňovat výsledky hlasování; může být připojen k zabezpečenému systému elektronického hlasování. + title: Konzultace + feature4: + subtitle: nastavení agendy pro všechny, v dosahu všech + text: Iniciativy jsou prostorem, který účastníkům umožňuje společně vytvářet iniciativy, definovat jejich trajektorii a cíle, shromažďovat schválení, diskutovat, debatovat a šířit iniciativy a vymezovat místa zasedání, kde mohou být podpisy shromažďovány od účastníků nebo diskusí, které byly otevřeny ostatním členům organizace. + title: Iniciativy + feature5: + subtitle: vaše nápady podrobně + text: Komponenta návrhů umožňuje uživateli vytvořit návrh pomocí průvodce vytvořením a porovnat jej s existujícími, zveřejňuje jej na platformě a obsahuje další informace, jako je geolokace nebo přiložené dokumenty a obrázky. Tato komponenta vám také umožňuje navigovat, filtrovat a komunikovat se souborem návrhů. Kromě toho můžete s navrhovaným inkubátorem vytvořit společné návrhy. + title: Návrhy + feature6: + subtitle: rozhodne váš hlas + text: 'Komponenta Hlasování nabízí organizacím možnost aktivovat různé hlasovací nebo podpůrné systémy kolem návrhů: neomezené, omezené na určitou prahovou hodnotu, vážené, zaměřené na náklady atd.' + title: Hlasování + feature7: + subtitle: žádný návrh nezůstane bez odpovědi + text: Komponenta Výsledky se používají k přeměně návrhů na výsledky a k oficiálním odpovědím týkajícím se jejich přijetí nebo odmítnutí, sloučení různých návrhů do jediného výsledku. + title: Výsledky + feature8: + subtitle: transparentnost od začátku do konce + text: Komponenta Odpovědnosti nabízí možnost rozdělení výsledků na projekty, definování a uplatňování stavů pokroku při jejich provádění, a rovněž zobrazování rozsahu provádění výsledků seskupených podle kategorií a oblastí působnosti. + title: Odpovědnost + feature9: + subtitle: potkat se a nenechat si nic ujít + text: Komponenta Schůzky nabízí organizacím a účastníkům možnost svolat zasedání, určit jejich polohu a čas, zaregistrují a omezují účastníky, definují strukturu a obsah zasedání, jakož i zveřejňují zápisy a výsledné návrhy. + title: Zasedání + subtitle: For democratic organizations and collectives of any size and kind. + title: Vlastnosti type1: - title: 'Prostory pro účast' - subtitle: 'Aby účastníci předkládali návrhy a rozhodovali' + title: Prostory pro účast type2: - title: 'Komponenty' - subtitle: 'Pro účastníky a místa kde se setkají' - other: - subtitle: 'Zajímáme se o kombinaci komponent. Navrhujte a nasazujte mocný demokratický systém snadným způsobem a přizpůsobte jej potřebám vaší organizace' - cta: - title: 'Zjistěte detailně, jak Decidim funguje' - button: 'Funkce a vlastnosti' - partners: - notice: Loga spolupracujících subjektů jsou duševním vlastnictvím příslušných držitelů autorských práv. Nespadají pod licenci Creative Commons By-SA, kterou je ošetřen zbytek obsahu webu. - modules: - description: Popis - explanation: Používáním modulů můžete rozšířit funkce Decidim a sdílet je s ostatními. Umožňují vám snadno aktualizovat v budoucnu. Podívejte se na dokumentaci pro vytvoření vašeho vlastního modulu. - image: Obrázek - name: Jméno - type: - community: Komunita - auth: Autorizace - official: Oficiální - used_by: - explain: Tato města, regiony a organizace již používají Decidim - type: - city: Města - region: Regiony - organizations: Organizace - testimonials: - n1: - quote: >- - Díky Decidim se nám v Barceloně podařilo společně s občany vytvořit strategický plán města. V roce 2016 jsme prostřednictvím Decidim Barcelony zahájili akční plán ve formě participačního procesu. V současné době tento plán obsahuje téměř 7 tisíc občanských návrhů. Jednou z výhod používání této platformy je, že můžete kdykoli sledovat stav provádění schválených návrhů. - org: Barcelonská radnice (2015–2019) - n2: - quote: >- - S implementací Decidim v Som Energia jsme vytvořili příjemný prostor pro občanskou participaci. Tento nástroj jsme uvolnili v roce 2018, za hostování valného shromáždění družstva a po pár měsících později jsme diskutovali o projektu přepracování vizuálního stylu a spolupracujícímu rozvoji School of Som Energia, kromě jiných participačních procesů. Za několik měsíců se zaregistrovalo více než 3500 účastníků, 5 participačních procesů, 3 shromáždění pracující a více než 1,300 hlasů při posledním hlasování Valného shromáždění. - org: Som Energia - n3: - quote: >- - Digitální platforma Decide Mérida byla příležitostí, která se otevřela jako nikdy před mechanismy účasti občanů na vypracování plánu rozvoje měst Mérida 2018-2021. Měli jsme více než 3000 občanských interakcí včetně návrhů, připomínek, návrhy a podporu, aby bylo dosaženo co největšího konsenzu o tom, co je nejlepší pro naše město. Bezpochyby bude platforma „Decide Mérida“ i nadále naším spojencem při vytváření participativní společnosti města Mérida. - org: Starosta města Mérida Yucatán, Mexiko, Městská rada Mérida Yucatán, Mexiko - n4: - quote: >- - Jsme si vědomi toho, že je vybudována s ohledem na demokracii, a proto je demokracie velkým zaměřením. Jádrem návrhu jsou demokratické principy, jako je zodpovědnost, rovnost a transparentnost. - org: Město Helsinki - n5: - quote: >- - Téměř každý participativní proces, který se dostal k našemu stolu, jsme dokázali vyřešit pomocí pravidel pro podnikání Decidim. Jako nástroj je velmi silný. Avšak část, která se nám zdá nejsilnější a nejdůležitější, je její společenství, jak vývojářů, tak těch, kteří ji používají k participačním procesům. Díky spolupráci s nimi jsme si cenili výzev spojených s uplatňováním participativní demokracie v reálném světě. - org: Otevřená vláda Mexico City - n6: - quote: >- - Trpíme nedostatkem veřejného prostoru. Je obzvláště důležité, abychom tyto veřejné prostory získali zpět pro nás. Otevřené platformy, jako je Decidim, dělají přesně to. Je nejen to, že je open source, takže ostatní lidé ji mohou forknout, znovu použít a vybudovat proces. Má také ve způsobu, jakým je navržena, zakódovány tyto hodnoty, které chceme odrážet v naší společnosti. - org: Mozilla nadace - n7: - quote: >- - Proces byl zahájen v říjnu 2019 na oddělení Evropské komise pro komunikaci a elektronickou demokracii ve Společném výzkumném středisku, což je vědecká a znalostní služba Evropské komise. Analýza potřeb konference a toho, které nástroje jim odpovídají, vedla k výběru open source nástroje Decidim pro jeho technickou vyspělost, širokou komunitu a přizpůsobivost. - org: OpenForum Europe Research Director, Evropská unie - faqs: - title: Často kladené otázky - q01: - question: Co je Decidim? - answer: >- - Decidim je bezplatná Open-Source participativní demokratická platforma pro města a organizace. Decidim je ale víc než jen digitální platforma: je to společný bezplatný a otevřený projekt a infrastruktura zahrnující kód, dokumentaci, navrhování vzdělávacích kurzů, právního rámce, společných rozhraní, uživatelských a podpůrných společenství a společné vize. - q02: - question: Kdo v současné době používá Decidim? - answer: >- - V současné době jej využívají města a organizace. Ve skutečnosti ji může využít jakákoli skupina lidí, ať už je to nevládní organizace, univerzita, odbory, družstvo, sdružení sousedů atd. Prohlédněte si [kompletní seznam aktuálně aktivních instancí](/usedby/). - q03: - question: Co může správce Decidim dělat? - answer: >- - Snadno konfigurovatelné participační procesy. Chcete vytvořit strategický plán? Nebo diskutovat o nových vyhláškách? Nebo diskutovat o novém náměstí, nebo veřejné budově s cílem dosáhnout společného výsledku? Díky Decidim budete moci nakonfigurovat participační témata (iniciativy, shromáždění, procesy nebo konzultace) a obohatit je prostřednictvím četných dostupných složek (osobních setkání, průzkumů, návrhů, hlasování, sledování výsledků, připomínek a mnoha dalších). - q04: - question: Co může účastník (uživatel) Decidim dělat? - answer: >- - Decidim umožňuje tisícům lidí demokraticky se organizovat prostřednictvím návrhů, účastnit se veřejných setkání, podpora rozhodovacích jednání, rozhodování prostřednictvím různých forem hlasování a sledování provádění rozhodnutí. - q05: - question: Máte Demo? Chci si vyzkoušet Decidim bez instalace a zjistit, jak funguje. - answer: 'Ano, máme [online demo](/demo).' - q06: - question: Jak často se platforma aktualizuje? - answer: >- - Přibližně každý měsíc vydáváme novou verzi. Viz [záznam verzí](https://github.com/decidim/decidim/releases). - q07: - question: Co potřebuji k instalaci Decidim? - answer: >- - Instalace Decidim je jednoduchá, ale potřebujete nějaké znalosti a technické požadavky. Podívejte se na [dokumentaci pro instalaci Decidim](https://docs.decidim.org/en/install/). - q08: - question: Kde najdu plán projektu a plánované prvky? - answer: Můžete je najít na [plán nových funkcí projektu na GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Co to znamená, že Decidim je zdarma, "svobodný" a s otevřenými zdroji?' - answer: >- - Decidim je platforma pro účast občanů a lidí. Jeho zdrojový kód je otevřený a může být kýmkoliv kontrolován, upraven a vylepšen. Aplikace Decidim je pokryta [licencí AGPL](https://en.ikipedia.org/wiki/GNU_Affero_General_Public_License). To znamená, že jej můžete používat, upravovat a šířit odvozené verze, pokud respektujete licenci AGPL. - q10: - question: >- - Mám nápady na nové vylepšení. Chci projektu lépe porozumět. Co mohu udělat? - answer: >- - Můžete spolupracovat více způsoby. Jeden z nich je přes komunitu [Metadecidim](http://meta.decidim.org). Pokud chcete navrhnout nové funkce, [jděte sem](https://meta. decidim.org/processes/roadmap). Pokud jste zjistili chyby a chcete je oznámit, [přejděte na tento proces](https://meta.decidim.org/processes/bug-report?locale=es). Pokud se chcete aktivně účastnit Metadecidim komunity, můžete se účastnit [Metadecidim Operative Sessions](https://meta. ecidim.org/assemblies/eix-comunitat). Zaregistrujte se jako účastník komunity a zapojte se. Pokud máte svůj kód, [jděte na Github](https://github.com/decidim/decidim). Pokud se zajímáte jako výzkumník, můžete přijít do [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Mám mnoho pochybností všeho druhu...kde se na ně mohu zeptat nebo je vyřešit? - answer: >- - Nejlepší způsob, jak rychle vyřešit své pochybnosti, je prostřednictvím Metadecidim komunity. Vstupte do procesu [fóra podpory](https://meta.decidim.org/processes/supportforum?locale=en) a podívejte se, zda vaše otázka existuje nebo zda byla zodpovězena a jinak zadejte pro položení otázek. Pokud nemůžete vyřešit svůj problém v tomto prostoru, možná je čas nás kontaktovat prostřednictvím [kontaktního formuláře](/contact). - q12: - question: Je k dispozici nějaký návod k jeho nastavení? - answer: >- - Nejnovější verzi naší admin příručky můžete zkontrolovat v [Documentation section](https://docs.decidim.org). - q13: - question: Co je Sociální smlouva? - answer: >- - Takto nazýváme náš Kodex demokratických záruk a demokratické spolupráce. Všichni členové komunity musí schválit [Sociální smlouvu](http://decidim.org/contract). - q14: - question: Jaké jsou rozdíly proti projektu Consul Project / Decide Madrid? - answer: >- - Existuje mnoho rozdílů: funkce, flexibilita, architektura, modularita atd. Máme [zveřejněný příspěvekt](/blog/2019-01-14-consul-comparison/) s odpověďmi na tuto otázku. - q15: - question: Co je to Metadecidim komunita? - answer: >- - [Metadecidim](http://meta.decidim.org) je komunita Decidim, která spolupracuje na návrhu platformy a výstavbě projektu Decidim. Pravidelně se setkáváme prostřednictvím [SOM (Metadecidim Operative Sessions)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) a [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Přejděte na [meta.decidim.org](http://meta.decidim.org) a sledujte diskuse zblízka a pokud se chcete připojit k komunitě, jste vítaní ;-) - q16: - question: Mohu se připojit ke komunitě Metadecidim, i když nežiji v Barceloně? - answer: >- - Decidim je projekt, který se narodil v Barceloně, a proto existuje silná územní vazba s tímto městem. Ale ano, můžete spolupracovat online, prostřednictvím participačních procesů, diskusí atd. .... , který poskytujeme v Metadecidim. I když budete chtít přijít někdy do Barcelony :) - q17: - question: Chceme uzavřít formální dohodu o spolupráci. Existují nějaké šablony, které můžeme použít? - answer: Ano, máme šablony pro formalizaci dohod o spolupráci. [Kontaktujte nás](/contact). - q18: - question: Jaké členy přijímáte v komunitě Metadecidim? - answer: Každý, kdo má dobrou víru a správný postoj k demokratické spolupráci. - q19: - question: Poskytujete zdarma instalaci neziskovým organizacím? - answer: >- - Ano, pouze v případě, že jste barcelonská organizace. Pošlete nám zprávu a budete vám nápomocni ředitelství pro výzkum, Rozvoj a inovace oblasti práv občanství, účast a transparentnost barcelonského městského zastupitelství. - q20: - question: Podporujete instituce? - answer: >- - Ano, ale musíte být trpěliví. Existuje mnoho institucí, které nyní chtějí použít Decidim a my jim pomáháme krok za krokem. [Kontaktujte nás](/contact) pro jakoukoli otázku a my vám odpovíme co nejdříve. - q21: - question: Co je to Decidim asociace? - answer: >- - "Asociacion de Software Libre Decidim" (Decidim Free Software Association) je demokratické sdružení pro správu komunity Decidim. - q22: - question: Jak mohu získat více informací o sdružení Decidim? - answer: >- - Ve [valné hromadě sdružení Decidim](https://meta.decidim.org/assemblies/General assembly-Association) můžete najít více informací, sledovat činnost schůzek a kontrolovat příslušné informace (stanovy, právní dohody, vnitřní nařízení) - q23: - question: Jak se mohu stát členem sdružení Decidim? - answer: >- - Lidé zapojení do projektu mohou být nyní partnery. [Zde podrobně vysvětlíme, co to znamená](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Kdy sdružení Decidim vzniklo? - answer: >- - Sdružení [Decidim bylo založeno 16. února 2019 na mimořádném shromáždění komunity](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169) se souhlasem stanov organizace. + title: Komponenty + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Podporováno + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Dostupná a bezpečná technologie.
Se všemi demokratickými zárukami.
Přeprogramování demokracie je nyní možné s Decidim. + subheading: Decidim je digitální platforma
pro participaci občanů + subhero: + cta: Explore all features + feature1: Strategické
plánování + feature2: Účastnické
sestavování rozpočtu + feature3: Iniciativy a
konzultace občanů + feature4: Účastnické
procesy + feature5: Shromáždění + feature6: Síťová komunikace
+ intro: Decidim pomáhá občanům, organizacím a veřejným institucím, aby se demokraticky organizovali v jakémkoliv rozsahu. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Již používají Decidim legal-notice: - title: Právní ustanovení section-1: + paragraph: '

Vstupujete na webovou stránku Associació de Software Lliure Decidim („Decidim“, „nás“ nebo „my“) dostupnou prostřednictvím webové domény https://decidim.org/ (dále jen „webová stránka“) se sídlem v Sant Adria, číslo 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Španělsko a identifikační číslo G67401174.

Můžete nás kontaktovat na: hola@decidim.org

' title: Kdo jsme - paragraph: >- -

Vstupujete na webovou stránku Associació de Software Lliure Decidim („Decidim“, „nás“ nebo „my“) dostupnou prostřednictvím webové domény https://decidim.org/ (dále jen „webová stránka“) se sídlem v Sant Adria, číslo 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Španělsko a identifikační číslo G67401174.

Můžete nás kontaktovat na: hola@decidim.org

section-2: + paragraph: "

Účelem této webové stránky je poskytovat veřejnosti obecné informace o Decidim, Rozhodnutí Rady 2013/743/Eu ze dne 3. prosince 2013 o zavedení zvláštního programu, kterým se provádí Horizont 2020 –rámcový program pro výzkum a inovace (2014–2020), a o zrušení rozhodnutí 2006/971/Es, 2006/972/Es, 2006/973/Es, 2006/974/Es a 2006/975/Es (Úř. věst. a správa komunity Decidim vytvořené po celém světě z naší společné technologie umožňující rozvoj občanů a přidružených projektů s větší sociální účastí. S naším online demo můžete svobodně testovat platformu Decidim.

Účelem podmínek používání tohoto právního oznámení je řídit povolené používání těchto webových stránek a služeb a/nebo obsahu v souladu se zákonem č. 34/2002 o službách informační společnosti a elektronickém obchodu a dalšími platnými právními předpisy.

" title: Účel - paragraph: >- -

Účelem této webové stránky je poskytovat veřejnosti obecné informace o Decidim, Rozhodnutí Rady 2013/743/Eu ze dne 3. prosince 2013 o zavedení zvláštního programu, kterým se provádí Horizont 2020 –rámcový program pro výzkum a inovace (2014–2020), a o zrušení rozhodnutí 2006/971/Es, 2006/972/Es, 2006/973/Es, 2006/974/Es a 2006/975/Es (Úř. věst. a správa komunity Decidim vytvořené po celém světě z naší společné technologie umožňující rozvoj občanů a přidružených projektů s větší sociální účastí. S naším online demo můžete svobodně testovat platformu Decidim.

Účelem podmínek používání tohoto právního oznámení je řídit povolené používání těchto webových stránek a služeb a/nebo obsahu v souladu se zákonem č. 34/2002 o službách informační společnosti a elektronickém obchodu a dalšími platnými právními předpisy.

section-3: + paragraph: '

Přístup na tento web je zdarma. Pro prohlížení informací a/nebo obsahu těchto webových stránek není obecně vyžadován žádný formulář žádosti. V opačném případě se podívejte na naše Zásady ochrany osobních údajů.

Přístupem a používáním webových stránek, Přijímáte podmínky používání tohoto právního oznámení a zavazujete se, že učiníte správně, důsledné a zákonné používání webové stránky, a zejména: i) používat tuto webovou stránku k zamýšleným účelům, tj. informace o našich službách, nebudete používat webové stránky nebo jejich obsah pro nezákonné účely, nebo pro účely, které jsou v rozporu s veřejným pořádkem, morálkou a dobrými zvyky; ii) respektovat práva duševního a průmyslového vlastnictví webových stránek a jejich obsahu, jakož i všechna práva, která odpovídají rozhodování; iii) nereprodukovat, kopírovat, převádět, upravovat, distribuovat, veřejně zobrazovat nebo zpřístupňovat veřejnosti webovou stránku nebo jakýkoli její obsah nebo jakoukoli jeho změnu; iv) Odpovídáte za jakoukoli ztrátu nebo škodu, kterou jste utrpěli v důsledku přímého nebo nepřímého zneužití webové stránky, ustanovení „Právní texty“ (společně uvedená, toto právní oznámení a Zásady ochrany osobních údajů) a platné právní předpisy.

' title: Použití webových stránek - paragraph: >- -

Přístup na tento web je zdarma. Pro prohlížení informací a/nebo obsahu těchto webových stránek není obecně vyžadován žádný formulář žádosti. V opačném případě se podívejte na naše Zásady ochrany osobních údajů.

Přístupem a používáním webových stránek, Přijímáte podmínky používání tohoto právního oznámení a zavazujete se, že učiníte správně, důsledné a zákonné používání webové stránky, a zejména: i) používat tuto webovou stránku k zamýšleným účelům, tj. informace o našich službách, nebudete používat webové stránky nebo jejich obsah pro nezákonné účely, nebo pro účely, které jsou v rozporu s veřejným pořádkem, morálkou a dobrými zvyky; ii) respektovat práva duševního a průmyslového vlastnictví webových stránek a jejich obsahu, jakož i všechna práva, která odpovídají rozhodování; iii) nereprodukovat, kopírovat, převádět, upravovat, distribuovat, veřejně zobrazovat nebo zpřístupňovat veřejnosti webovou stránku nebo jakýkoli její obsah nebo jakoukoli jeho změnu; iv) Odpovídáte za jakoukoli ztrátu nebo škodu, kterou jste utrpěli v důsledku přímého nebo nepřímého zneužití webové stránky, ustanovení „Právní texty“ (společně uvedená, toto právní oznámení a Zásady ochrany osobních údajů) a platné právní předpisy.

section-4: + paragraph: "

Všechna práva duševního vlastnictví k obsahu této webové stránky, včetně obrázků, ochranných známek, log, rozlišovacích značek, zvuků a animací, texty, zvukové, vizuální nebo audiovizuální nahrávky a databáze jsou majetkem Decidim nebo jeho držitelů a jsou chráněny vnitrostátními a mezinárodními právními předpisy. Tato práva jsou vyhrazena ve prospěch společnosti Decidim a/nebo jejích držitelů. Reprodukce, kopírování, veřejná komunikace, distribuce, úprava, přeměna, odstranění, manipulace a jakékoli jiné použití, včetně extrakce a opakovaného použití, též pro zisk, přímé nebo nepřímé, dočasné nebo trvalé internetové stránky nebo jejich části, je výslovně zakázán bez předchozího výslovného písemného povolení Decidim. V případě možného porušení těchto práv můžeme podniknout jakékoli právní a/nebo mimosoudní žaloby, které považuje za vhodné.

" title: Průmyslové a duševní vlastnictví - paragraph: >- -

Všechna práva duševního vlastnictví k obsahu této webové stránky, včetně obrázků, ochranných známek, log, rozlišovacích značek, zvuků a animací, texty, zvukové, vizuální nebo audiovizuální nahrávky a databáze jsou majetkem Decidim nebo jeho držitelů a jsou chráněny vnitrostátními a mezinárodními právními předpisy. Tato práva jsou vyhrazena ve prospěch společnosti Decidim a/nebo jejích držitelů. Reprodukce, kopírování, veřejná komunikace, distribuce, úprava, přeměna, odstranění, manipulace a jakékoli jiné použití, včetně extrakce a opakovaného použití, též pro zisk, přímé nebo nepřímé, dočasné nebo trvalé internetové stránky nebo jejich části, je výslovně zakázán bez předchozího výslovného písemného povolení Decidim. V případě možného porušení těchto práv můžeme podniknout jakékoli právní a/nebo mimosoudní žaloby, které považuje za vhodné.

section-5: + paragraph: "

Decidim nenese odpovědnost za webové stránky třetích stran, které mohou být přístupné z webových stránek, ani z důvodu přesnosti, pravdivosti a platnosti informací na webových stránkách, které nejsou jeho vlastní zpracování. Avšak podle článku 17 zákona č. 34/2002, v případě, že se rozhodčí soud dozví o protiprávnosti takového obsahu nebo vazeb, zavazuje se k jejich odstranění nebo vypovězení, a případně zablokovat jakýkoli obsah, který může být nezákonný nebo porušující práva jakékoli třetí strany, v souladu s články 11 a 16 výše uvedeného zákona.

Kromě toho Deidim není zodpovědný za žádné poškození, ke kterému může dojít v důsledku poruch nebo chybných konfigurací prohlížeče, který uživatel nainstaluje na svém počítači. Vyhlášení neodpovídá za žádný incident nebo technické selhání způsobené připojením uživatele k internetu.

Decidim použije své maximální úsilí k tomu, aby v co nejkratší době provedl aktualizace a opravy chyb a nedostatků, včetně těch, které se vyskytují v přístupu k webové stránce a/nebo k jejímu obsahu, ale neopravňuje k absenci přerušení, chyb v připojení a/nebo přístupu k webové stránce a k aktualizaci jejího obsahu.

Jste zodpovědní za používání a přístup k webu. Vyhlášení neodpovídá za přítomnost virů ani za bezpečnostní chyby ani za škody, které mohou být způsobeny vašim zařízením, nebo za škody, které mohou být způsobeny souborům či dokumentům uloženým v takových zařízeních, za účelem přístupu k těmto stránkám a/nebo jejich připojení, ani pro náhradu škody způsobené třetím stranám prostřednictvím nezákonných úvodů mimo kontrolu Decidim.

Deklarace neodpovídá za porušení vašich povinností při přístupu na tyto webové stránky, které jsou obsaženy v tomto právním oznámení, a zejména neodpovídá za žádné porušení práv duševního vlastnictví, autorských práv, práva na reklamu a obraz nebo jakákoli jiná práva týkající se zboží a práv jakékoli třetí strany.

" title: Odpovědnost - paragraph: >- -

Decidim nenese odpovědnost za webové stránky třetích stran, které mohou být přístupné z webových stránek, ani z důvodu přesnosti, pravdivosti a platnosti informací na webových stránkách, které nejsou jeho vlastní zpracování. Avšak podle článku 17 zákona č. 34/2002, v případě, že se rozhodčí soud dozví o protiprávnosti takového obsahu nebo vazeb, zavazuje se k jejich odstranění nebo vypovězení, a případně zablokovat jakýkoli obsah, který může být nezákonný nebo porušující práva jakékoli třetí strany, v souladu s články 11 a 16 výše uvedeného zákona.

Kromě toho Deidim není zodpovědný za žádné poškození, ke kterému může dojít v důsledku poruch nebo chybných konfigurací prohlížeče, který uživatel nainstaluje na svém počítači. Vyhlášení neodpovídá za žádný incident nebo technické selhání způsobené připojením uživatele k internetu.

Decidim použije své maximální úsilí k tomu, aby v co nejkratší době provedl aktualizace a opravy chyb a nedostatků, včetně těch, které se vyskytují v přístupu k webové stránce a/nebo k jejímu obsahu, ale neopravňuje k absenci přerušení, chyb v připojení a/nebo přístupu k webové stránce a k aktualizaci jejího obsahu.

Jste zodpovědní za používání a přístup k webu. Vyhlášení neodpovídá za přítomnost virů ani za bezpečnostní chyby ani za škody, které mohou být způsobeny vašim zařízením, nebo za škody, které mohou být způsobeny souborům či dokumentům uloženým v takových zařízeních, za účelem přístupu k těmto stránkám a/nebo jejich připojení, ani pro náhradu škody způsobené třetím stranám prostřednictvím nezákonných úvodů mimo kontrolu Decidim.

Deklarace neodpovídá za porušení vašich povinností při přístupu na tyto webové stránky, které jsou obsaženy v tomto právním oznámení, a zejména neodpovídá za žádné porušení práv duševního vlastnictví, autorských práv, práva na reklamu a obraz nebo jakákoli jiná práva týkající se zboží a práv jakékoli třetí strany.

section-6: + paragraph:

Decidim může změnit toto právní oznámení, Zásady ochrany osobních údajů a/nebo jakýkoli jiný text smluvní povahy vztahující se na tyto webové stránky bez předchozího oznámení. Tyto změny musí být účinné v okamžiku zveřejnění na webové stránce.

Vyhlášení může také kdykoliv ukončit nebo pozastavit služby webové stránky. Kdykoli je to možné, Decidim dříve upozorní na takové ukončení nebo pozastavení prostřednictvím této webové stránky.

title: Úpravy - paragraph: >- -

Decidim může změnit toto právní oznámení, Zásady ochrany osobních údajů a/nebo jakýkoli jiný text smluvní povahy vztahující se na tyto webové stránky bez předchozího oznámení. Tyto změny musí být účinné v okamžiku zveřejnění na webové stránce.

Vyhlášení může také kdykoliv ukončit nebo pozastavit služby webové stránky. Kdykoli je to možné, Decidim dříve upozorní na takové ukončení nebo pozastavení prostřednictvím této webové stránky.

section-7: + paragraph:

S vašimi osobními údaji shromážděnými na našich webových stránkách nebo při kontaktování nás prostřednictvím kontaktního formuláře nebo zasláním e-mailu bude zacházeno přísně v souladu s našimi Zásadami ochrany osobních údajů.

title: Osobní údaje - paragraph: >- -

S vašimi osobními údaji shromážděnými na našich webových stránkách nebo při kontaktování nás prostřednictvím kontaktního formuláře nebo zasláním e-mailu bude zacházeno přísně v souladu s našimi Zásadami ochrany osobních údajů.

section-8: + paragraph:

Tento web nepoužívá cookies. Více informací v našich Zásadách ochrany osobních údajů.

title: Cookies - paragraph: >- -

Tento web nepoužívá cookies. Více informací v našich Zásadách ochrany osobních údajů.

section-9: + paragraph: '

Naše právní texty, včetně tohoto právního oznámení a našich Zásad ochrany osobních údajůse řídí španělským právem. Soudy města Barcelona budou příslušné rozhodovat o jakémkoli sporu vyplývajícím z používání našich webových stránek.

Poslední aktualizace: únor 2022.

' title: Rozhodné právo a příslušnost - paragraph: >- -

Naše právní texty, včetně tohoto právního oznámení a našich Zásad ochrany osobních údajůse řídí španělským právem. Soudy města Barcelona budou příslušné rozhodovat o jakémkoli sporu vyplývajícím z používání našich webových stránek.

Poslední aktualizace: únor 2022.

+ title: Právní ustanovení + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Kód + community: Komunita + contact: Kontakt + contract: Sociální smlouva + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Dokumentace + faqs: Časté dotazy + features: Vlastnosti + first-steps: First steps + home: Home + legal-notice: Právní ustanovení + menu: Menu + modules: Moduly + partners: Spolupracující subjekty + partnership-policy: Partnership policy + press: Pro média + privacy-policy: Zásady ochrany soukromí + text: Navigace + trademark: Trademark policy + use-cases: Use cases + used_by: Kde se používá + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/cs" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Zásady ochrany soukromí section-1: + paragraph:

Associacio© de Software Lliure Decidim ("Decidim" nebo "my / nám") je vlastníkem této webové stránky, k dispozici prostřednictvím webové domény https://decidim.org/ (dále jen „webová stránka“), a vystupuje jako správce údajů pro zpracování osobních údajů všech uživatelů webových stránek („vy/vám“, „uživatel“).

Decidim je odhodlán chránit soukromí všech uživatelů webových stránek, jeho společníků a členů komunity Decidim. Tyto zásady ochrany osobních údajů vysvětlují naše postupy týkající se používání osobních údajů shromážděných prostřednictvím webových stránek. včetně demo naší svobodné participativní demokratické platformy s otevřeným zdrojem, stejně jako zpracování údajů jednotlivců spojených s Decidim a správa Decidim komunity, buď na této webové stránce nebo na jiných platformách spravovaných Decidim.

Tyto zásady ochrany osobních údajů jsou součástí našich právních textů spolu s právním upozorněním.

title: Úvod - paragraph: >- -

Associacio© de Software Lliure Decidim ("Decidim" nebo "my / nám") je vlastníkem této webové stránky, k dispozici prostřednictvím webové domény https://decidim.org/ (dále jen „webová stránka“), a vystupuje jako správce údajů pro zpracování osobních údajů všech uživatelů webových stránek („vy/vám“, „uživatel“).

Decidim je odhodlán chránit soukromí všech uživatelů webových stránek, jeho společníků a členů komunity Decidim. Tyto zásady ochrany osobních údajů vysvětlují naše postupy týkající se používání osobních údajů shromážděných prostřednictvím webových stránek. včetně demo naší svobodné participativní demokratické platformy s otevřeným zdrojem, stejně jako zpracování údajů jednotlivců spojených s Decidim a správa Decidim komunity, buď na této webové stránce nebo na jiných platformách spravovaných Decidim.

Tyto zásady ochrany osobních údajů jsou součástí našich právních textů spolu s právním upozorněním.

section-2: + paragraph: '

a. Údaje shromážděné při procházení webových stránek

Při používání našich webových stránek Decidim využíváme služeb analytického softwaru Plausible. Jedná se o software, který při sledování uživatelských dat udržuje tato data plně a bezpečně šifrovaná. Účelem Plausible Analytics je sledovat obecné trendy návštěvnosti na vašem webu, nikoli jednotlivé návštěvníky. Každý požadavek HTTP posílá IP adresu a uživatelského agenta na server, takže to je to, co používají, generuje identifikátor, který se denně mění pomocí IP adresy návštěvníka a uživatelského agenta. Aby byla tato data anonymizována, jsou předávána přes hashovací funkci s rotující kryptografickou solí. Tím se vygeneruje náhodný řetězec písmen a čísel, který se používá k výpočtu počtu unikátních návštěvníků za daný den. IP adresa nezpracovaných dat a uživatelského agenta nejsou nikdy uloženy v protokolech, databázích ani kdekoli na disku Plausible analytics. Starší soli se mažou každých 24 hodin, aby se předešlo možnosti propojení informací o návštěvnících z jednoho dne na druhý. Tímto způsobem se při procházení našich webových stránek neshromažďují žádné osobní údaje o uživateli, pro více informací o zpracování údajů společností Plausible Analytics můžete navštívit jejich web na adrese https://plausible.io/privacy-focused-web-analytics

b. Údaje shromážděné z naší ukázky

Přístup k ukázce platformy Decidim, která je k dispozici prostřednictvím webové stránky na adrese URL https://try.decidim.org/ je anonymní, protože se provádí prostřednictvím obecných přihlašovacích údajů pro testování a znalost provozu, funkcí a možností Decidim platformě uživateli.

Je aktivován pouze soubor cookie relace ("Session_id"), jehož účelem je získat nebo stanovit ID relace pro aktuální relaci. Tento soubor cookie je nezbytně nutný pro technickou funkčnost detekce relace na Webu, aby bylo zajištěno připojení prostřednictvím protokolů http a aby byla relace uživatele a služby Webu k dispozici, a jsou osvobozeny od souhlasu uživatele v souladu se Stanoviskem 4/2012 o výjimce z požadavku souhlasu se soubory cookie vydaného Evropským úřadem pro ochranu údajů.

c. Údaje shromážděné z kontaktních formulářů, e-mailů nebo jiných komunikačních prostředků

Když nás lidé kontaktují prostřednictvím kontaktního formuláře, e-mailu nebo podobných komunikačních prostředků, automaticky shromáždíme následující informace: jméno, subjekt, e-mailovou adresu a obsah uživatelské zprávy, abychom se mohli zúčastnit vašich komentářů, žádostí, návrhů atd.

Navíc můžeme tato data zpracovávat pro statistické studie pomocí pseudonymizačních a dokonce i anonymizačních technik, jako je agregace dat, abychom tomuto následnému zpracování zabránili od individuální identifikace uživatelů.

d. Data shromážděná z komunity Decidim

Decidim využívá jiné platformy propojené s tímto webem za správu komunity Decidim vytvořené kolem naší technologie, jako místo setkání komunity Decidim a kde se odehrává většina aktivit a komunikace mezi uživateli a Decidim. Tyto platformy, jako je https://meta.decidim.org/ nebo GitHub (https://github.com/decidim/decidim) se řídí svými vlastními podmínkami použití a zásadami ochrany osobních údajů.

Nehledě na to, Decidim může zpracovávat osobní údaje uživatele shromážděné z těchto platforem za účelem správy komunitních projektů vyvinutých na těchto platformách, zejména tyto osobní údaje mohou spočívat v údajích o připojení k těmto platformám, profilu uživatele na platforma a obsah komentářů a poznámek, které může uživatel čas od času přispívat do projektů Decidim. Vezměte prosím na vědomí, že tyto informace mohou být veřejné a v důsledku toho přístupné a viditelné pro ostatní uživatele.

e. Údaje shromážděné od našich přidružených členů

Jakákoli osoba nebo organizace, která se chce svobodně zapojit do komunity Decidim, účastnit se diskusí, spolupracovat na organizaci akce, propagace pracovních skupin nebo dnů komunity, stejně jako přispívání do kódu nebo dokumentace naší bezplatné open-source platformy participativní demokracie, správa instancí atd., se mohou rozhodnout stát se členem Decidim, pokud prokázali dostatečný závazek vůči komunitě prostřednictvím realizace některé z výše uvedených aktivit. Chcete-li tak učinit, musíte vyplnit formulář pro odeslání žádosti, kterou vyhodnotí Koordinační výbor Decidim.

Zpracování

a href="%{decidim_url}">Decidim členů osobní údaje jsou prováděny za účelem řízení výše uvedených projektů a aktivit, na kterých se přidružený člen podílí, vedení účetnictví členských příspěvků a obecně řízení projektů a aktivit Decidim, aby bylo zajištěno dodržování zásad a hodnot Decidim a také povinností a práv spolupracovníků.

' title: Osobní údaje, které o Vás shromažďujeme a jak je používáme - paragraph: >- -

a. Údaje shromážděné při procházení webových stránek

Při používání našich webových stránek Decidim využíváme služeb analytického softwaru Plausible. Jedná se o software, který při sledování uživatelských dat udržuje tato data plně a bezpečně šifrovaná. Účelem Plausible Analytics je sledovat obecné trendy návštěvnosti na vašem webu, nikoli jednotlivé návštěvníky. Každý požadavek HTTP posílá IP adresu a uživatelského agenta na server, takže to je to, co používají, generuje identifikátor, který se denně mění pomocí IP adresy návštěvníka a uživatelského agenta. Aby byla tato data anonymizována, jsou předávána přes hashovací funkci s rotující kryptografickou solí. Tím se vygeneruje náhodný řetězec písmen a čísel, který se používá k výpočtu počtu unikátních návštěvníků za daný den. IP adresa nezpracovaných dat a uživatelského agenta nejsou nikdy uloženy v protokolech, databázích ani kdekoli na disku Plausible analytics. Starší soli se mažou každých 24 hodin, aby se předešlo možnosti propojení informací o návštěvnících z jednoho dne na druhý. Tímto způsobem se při procházení našich webových stránek neshromažďují žádné osobní údaje o uživateli, pro více informací o zpracování údajů společností Plausible Analytics můžete navštívit jejich web na adrese https://plausible.io/privacy-focused-web-analytics

b. Údaje shromážděné z naší ukázky

Přístup k ukázce platformy Decidim, která je k dispozici prostřednictvím webové stránky na adrese URL https://try.decidim.org/ je anonymní, protože se provádí prostřednictvím obecných přihlašovacích údajů pro testování a znalost provozu, funkcí a možností Decidim platformě uživateli.

Je aktivován pouze soubor cookie relace ("Session_id"), jehož účelem je získat nebo stanovit ID relace pro aktuální relaci. Tento soubor cookie je nezbytně nutný pro technickou funkčnost detekce relace na Webu, aby bylo zajištěno připojení prostřednictvím protokolů http a aby byla relace uživatele a služby Webu k dispozici, a jsou osvobozeny od souhlasu uživatele v souladu se Stanoviskem 4/2012 o výjimce z požadavku souhlasu se soubory cookie vydaného Evropským úřadem pro ochranu údajů.

c. Údaje shromážděné z kontaktních formulářů, e-mailů nebo jiných komunikačních prostředků

Když nás lidé kontaktují prostřednictvím kontaktního formuláře, e-mailu nebo podobných komunikačních prostředků, automaticky shromáždíme následující informace: jméno, subjekt, e-mailovou adresu a obsah uživatelské zprávy, abychom se mohli zúčastnit vašich komentářů, žádostí, návrhů atd.

Navíc můžeme tato data zpracovávat pro statistické studie pomocí pseudonymizačních a dokonce i anonymizačních technik, jako je agregace dat, abychom tomuto následnému zpracování zabránili od individuální identifikace uživatelů.

d. Data shromážděná z komunity Decidim

Decidim využívá jiné platformy propojené s tímto webem za správu komunity Decidim vytvořené kolem naší technologie, jako místo setkání komunity Decidim a kde se odehrává většina aktivit a komunikace mezi uživateli a Decidim. Tyto platformy, jako je https://meta.decidim.org/ nebo GitHub (https://github.com/decidim/decidim) se řídí svými vlastními podmínkami použití a zásadami ochrany osobních údajů.

Nehledě na to, Decidim může zpracovávat osobní údaje uživatele shromážděné z těchto platforem za účelem správy komunitních projektů vyvinutých na těchto platformách, zejména tyto osobní údaje mohou spočívat v údajích o připojení k těmto platformám, profilu uživatele na platforma a obsah komentářů a poznámek, které může uživatel čas od času přispívat do projektů Decidim. Vezměte prosím na vědomí, že tyto informace mohou být veřejné a v důsledku toho přístupné a viditelné pro ostatní uživatele.

e. Údaje shromážděné od našich přidružených členů

Jakákoli osoba nebo organizace, která se chce svobodně zapojit do komunity Decidim, účastnit se diskusí, spolupracovat na organizaci akce, propagace pracovních skupin nebo dnů komunity, stejně jako přispívání do kódu nebo dokumentace naší bezplatné open-source platformy participativní demokracie, správa instancí atd., se mohou rozhodnout stát se členem Decidim, pokud prokázali dostatečný závazek vůči komunitě prostřednictvím realizace některé z výše uvedených aktivit. Chcete-li tak učinit, musíte vyplnit formulář pro odeslání žádosti, kterou vyhodnotí Koordinační výbor Decidim.

Zpracování

a href="%{decidim_url}">Decidim členů osobní údaje jsou prováděny za účelem řízení výše uvedených projektů a aktivit, na kterých se přidružený člen podílí, vedení účetnictví členských příspěvků a obecně řízení projektů a aktivit Decidim, aby bylo zajištěno dodržování zásad a hodnot Decidim a také povinností a práv spolupracovníků.

section-3: + paragraph:

Právním základem našeho zpracování osobních údajů je následující:

  • Zpracování Uživatelů a souvisejících údajů je nezbytné pro plnění smlouvy, spočívající v přijetí Právního textu ze strany Uživatelů webové stránky, abychom jim poskytli veškeré informace o Decidim a jejích technologiích, projektech a činnostech a také jim umožnili účastnit se projektů a prováděných činností od Decidim.
  • Vaše osobní údaje můžeme také zpracovávat, když nám dáte výslovný souhlas se zveřejněním o Decidim projekty a aktivity, na kterých jste se podíleli, tiskové zprávy nebo jiné formy komunikace a šíření aktivit Decidim a také abychom pravidelně dostávali konkrétní informace a/nebo když nás kontaktujete prostřednictvím kontaktního formuláře na webu nebo e-mailem.
  • Kromě toho můžeme zpracovávat vaše údaje na základě našeho oprávněného zájmu za účelem provádění statistických studií nebo jiných technik generování znalostí, zavádění pseudonymizačních a pokud možno anonymizačních opatření, jako je agregace dat, za účelem ochrany soukromí uživatelů v souladu s čl. 89 GDPR.

Za určitých okolností můžeme zpracovávat vaše údaje v souladu s těmito zásadami, abychom splnili zákonnou nebo regulační povinnost, která se na nás vztahuje.

title: Právní základ - paragraph: >- -

Právním základem našeho zpracování osobních údajů je následující:

  • Zpracování Uživatelů a souvisejících údajů je nezbytné pro plnění smlouvy, spočívající v přijetí Právního textu ze strany Uživatelů webové stránky, abychom jim poskytli veškeré informace o Decidim a jejích technologiích, projektech a činnostech a také jim umožnili účastnit se projektů a prováděných činností od Decidim.
  • Vaše osobní údaje můžeme také zpracovávat, když nám dáte výslovný souhlas se zveřejněním o Decidim projekty a aktivity, na kterých jste se podíleli, tiskové zprávy nebo jiné formy komunikace a šíření aktivit Decidim a také abychom pravidelně dostávali konkrétní informace a/nebo když nás kontaktujete prostřednictvím kontaktního formuláře na webu nebo e-mailem.
  • Kromě toho můžeme zpracovávat vaše údaje na základě našeho oprávněného zájmu za účelem provádění statistických studií nebo jiných technik generování znalostí, zavádění pseudonymizačních a pokud možno anonymizačních opatření, jako je agregace dat, za účelem ochrany soukromí uživatelů v souladu s čl. 89 GDPR.

Za určitých okolností můžeme zpracovávat vaše údaje v souladu s těmito zásadami, abychom splnili zákonnou nebo regulační povinnost, která se na nás vztahuje.

section-4: + paragraph: '

Vaše osobní údaje zpracováváme důvěrně v souladu s platnou legislativou. Pokud není uvedeno jinak, nebudou Vaše osobní údaje poskytnuty třetím osobám.

Vaše údaje zpřístupňujeme konkrétně následovně:

  • Na základě smluv o poskytování služeb můžeme poskytnout přístup k vašim osobním údajům našim poskytovatelům IT služeb ve prospěch Decidim. Mimo jiné Netlify, Inc., americký subjekt, který nám poskytuje webhostingové služby. Decidim se přihlásil k odběru u Netlify Data Smlouva o zpracování, včetně Standardních smluvních doložek aktuálně schválených Evropskou komisí, aby bylo zajištěno, že vaše osobní údaje budou zpracovávány se všemi odpovídajícími zárukami. Více informací o tom, jak Netlify používá vaše osobní údaje, najdete zde: https://www.netlify.com/gdpr-ccpa.
  • Údaje můžeme zpřístupnit veřejné správě nebo úřadům za účelem prošetření podezření z podvodu, obtěžování nebo jiného porušení jakéhokoli zákona, pravidla nebo nařízení nebo zásad webu.

Pro více informací o našich poskytovatelích služeb, kteří provádějí mezinárodní převody, nás prosím kontaktujte na adrese privacy@decidim.org.

' title: Zveřejňování údajů - paragraph: >- -

Vaše osobní údaje zpracováváme důvěrně v souladu s platnou legislativou. Pokud není uvedeno jinak, nebudou Vaše osobní údaje poskytnuty třetím osobám.

Vaše údaje zpřístupňujeme konkrétně následovně:

  • Na základě smluv o poskytování služeb můžeme poskytnout přístup k vašim osobním údajům našim poskytovatelům IT služeb ve prospěch Decidim. Mimo jiné Netlify, Inc., americký subjekt, který nám poskytuje webhostingové služby. Decidim se přihlásil k odběru u Netlify Data Smlouva o zpracování, včetně Standardních smluvních doložek aktuálně schválených Evropskou komisí, aby bylo zajištěno, že vaše osobní údaje budou zpracovávány se všemi odpovídajícími zárukami. Více informací o tom, jak Netlify používá vaše osobní údaje, najdete zde: https://www.netlify.com/gdpr-ccpa.
  • Údaje můžeme zpřístupnit veřejné správě nebo úřadům za účelem prošetření podezření z podvodu, obtěžování nebo jiného porušení jakéhokoli zákona, pravidla nebo nařízení nebo zásad webu.

Pro více informací o našich poskytovatelích služeb, kteří provádějí mezinárodní převody, nás prosím kontaktujte na adrese privacy@decidim.org.

section-5: + paragraph: "

Vaše osobní údaje uchováváme pouze po dobu nezbytně nutnou k naplnění účelů, pro které jsme je shromáždili, a to i za účelem splnění zákonných, účetních nebo informačních požadavků.

Pro určení vhodné doby uchovávání osobních údajů zvažujeme množství, povahu a citlivost osobních údajů, potenciální riziko újmy v důsledku neoprávněného použití nebo zveřejnění vašich osobních údajů, účely, pro které vaše osobní údaje zpracováváme, zda můžeme těchto účelů dosáhnout jinými prostředky, a platné právní požadavky.

" title: Uchovávání údajů - paragraph: >- -

Vaše osobní údaje uchováváme pouze po dobu nezbytně nutnou k naplnění účelů, pro které jsme je shromáždili, a to i za účelem splnění zákonných, účetních nebo informačních požadavků.

Pro určení vhodné doby uchovávání osobních údajů zvažujeme množství, povahu a citlivost osobních údajů, potenciální riziko újmy v důsledku neoprávněného použití nebo zveřejnění vašich osobních údajů, účely, pro které vaše osobní údaje zpracováváme, zda můžeme těchto účelů dosáhnout jinými prostředky, a platné právní požadavky.

section-6: + paragraph: "

Zavádíme bezpečnostní opatření a systémy ochrany osobních údajů podle právních předpisů pro zachování důvěrnosti a integrity vašich údajů a ochranu před neoprávněným přístupem, změnou nebo zničením.

" title: Bezpečnostní opatření - paragraph: >- -

Zavádíme bezpečnostní opatření a systémy ochrany osobních údajů podle právních předpisů pro zachování důvěrnosti a integrity vašich údajů a ochranu před neoprávněným přístupem, změnou nebo zničením.

section-7: + paragraph: '

V souvislosti s vašimi osobními údaji máte práva podle zákonů na ochranu údajů. Konkrétně máte právo:

  • Požádat o přístup ke svým osobním údajům (běžně známé jako „žádost o přístup subjektu údajů“). To vám umožní obdržet kopii osobních údajů, které o vás uchováváme, a zkontrolovat, zda je zpracováváme zákonným způsobem.
  • Požádat o opravu osobních údajů, které o vás uchováváme. To vám umožní opravit jakékoli neúplné nebo nepřesné údaje, které o vás máme, i když možná budeme muset ověřit přesnost nových údajů, které nám poskytnete.
  • Požádat o vymazání ze dne vaše osobní údaje. To vám umožňuje požádat nás o vymazání nebo odstranění osobních údajů, pokud neexistuje dobrý důvod, abychom je nadále zpracovávali. Máte také právo požádat nás o vymazání nebo odstranění vašich osobních údajů, pokud jste úspěšně uplatnili své právo vznést námitku proti zpracování (viz níže), kdy jsme mohli zpracovávat vaše údaje nezákonně nebo kdy jsme povinni vymazat vaše osobní údaje dodržovat místní zákony. Upozorňujeme však, že nemusíme být vždy schopni vyhovět vaší žádosti o vymazání z konkrétních právních důvodů, které vám budou případně oznámeny v době vaší žádosti.
  • Námítky ke zpracování vašich osobních údajů, pokud se spoléháme na oprávněný zájem (nebo zájmy třetí strany) a existuje něco ohledně vaší konkrétní situace, která vás nutí vznést námitku proti zpracování z tohoto důvodu, protože se domníváte, že to ovlivňuje o vašich základních právech a svobodách. Máte také právo vznést námitku tam, kde zpracováváme vaše osobní údaje pro účely přímého marketingu. V některých případech můžeme prokázat, že máme závažné legitimní důvody pro zpracování vašich údajů, které převažují nad vašimi právy a svobodami.
  • Požádat o omezení zpracování vašich osobních údajů. To vám umožňuje požádat nás o pozastavení zpracování vašich osobních údajů v následujících scénářích: (a) pokud chcete, abychom prokázali přesnost údajů; (b) pokud je naše použití údajů nezákonné, ale nechcete, abychom je vymazali; (c) pokud potřebujete, abychom údaje uchovávali, i když je již nepotřebujeme, protože je potřebujete pro stanovení, výkon nebo obhajobu právních nároků; nebo (d) vznesli jste námitku proti našemu používání vašich údajů, ale my potřebujeme ověřit, zda máme převažující oprávněné důvody k jejich použití.
  • Požádejte o přenos vašich osobních údajů k vám nebo třetí straně (právo na přenositelnost údajů). Vám nebo Vámi zvolené třetí straně poskytneme Vaše osobní údaje ve strukturovaném, běžně používaném, strojově čitelném formátu. Upozorňujeme, že toto právo se vztahuje pouze na automatizované informace, k jejichž použití jste nám původně poskytli souhlas nebo kde jsme tyto informace použili k plnění smlouvy s vámi.
  • Souhlas můžete kdykoli odvolat kde se spoléháme na souhlas se zpracováním vašich osobních údajů. To však neovlivní zákonnost jakéhokoli zpracování provedeného před odvoláním svého souhlasu. Pokud svůj souhlas odvoláte, je možné, že vám nebudeme moci poskytovat určité produkty nebo služby. Pokud se tak stane, upozorníme vás v okamžiku, kdy svůj souhlas odvoláte.

Výše uvedená práva mohou být účinná, když nás kontaktujete na adrese privacy@decidim.org.

Máte také právo podat jakoukoli stížnost příslušnému orgánu, v tomto případě španělské agentuře pro ochranu údajů (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Španělsko.' title: Vaše práva - paragraph: >- -

V souvislosti s vašimi osobními údaji máte práva podle zákonů na ochranu údajů. Konkrétně máte právo:

  • Požádat o přístup ke svým osobním údajům (běžně známé jako „žádost o přístup subjektu údajů“). To vám umožní obdržet kopii osobních údajů, které o vás uchováváme, a zkontrolovat, zda je zpracováváme zákonným způsobem.
  • Požádat o opravu osobních údajů, které o vás uchováváme. To vám umožní opravit jakékoli neúplné nebo nepřesné údaje, které o vás máme, i když možná budeme muset ověřit přesnost nových údajů, které nám poskytnete.
  • Požádat o vymazání ze dne vaše osobní údaje. To vám umožňuje požádat nás o vymazání nebo odstranění osobních údajů, pokud neexistuje dobrý důvod, abychom je nadále zpracovávali. Máte také právo požádat nás o vymazání nebo odstranění vašich osobních údajů, pokud jste úspěšně uplatnili své právo vznést námitku proti zpracování (viz níže), kdy jsme mohli zpracovávat vaše údaje nezákonně nebo kdy jsme povinni vymazat vaše osobní údaje dodržovat místní zákony. Upozorňujeme však, že nemusíme být vždy schopni vyhovět vaší žádosti o vymazání z konkrétních právních důvodů, které vám budou případně oznámeny v době vaší žádosti.
  • Námítky ke zpracování vašich osobních údajů, pokud se spoléháme na oprávněný zájem (nebo zájmy třetí strany) a existuje něco ohledně vaší konkrétní situace, která vás nutí vznést námitku proti zpracování z tohoto důvodu, protože se domníváte, že to ovlivňuje o vašich základních právech a svobodách. Máte také právo vznést námitku tam, kde zpracováváme vaše osobní údaje pro účely přímého marketingu. V některých případech můžeme prokázat, že máme závažné legitimní důvody pro zpracování vašich údajů, které převažují nad vašimi právy a svobodami.
  • Požádat o omezení zpracování vašich osobních údajů. To vám umožňuje požádat nás o pozastavení zpracování vašich osobních údajů v následujících scénářích: (a) pokud chcete, abychom prokázali přesnost údajů; (b) pokud je naše použití údajů nezákonné, ale nechcete, abychom je vymazali; (c) pokud potřebujete, abychom údaje uchovávali, i když je již nepotřebujeme, protože je potřebujete pro stanovení, výkon nebo obhajobu právních nároků; nebo (d) vznesli jste námitku proti našemu používání vašich údajů, ale my potřebujeme ověřit, zda máme převažující oprávněné důvody k jejich použití.
  • Požádejte o přenos vašich osobních údajů k vám nebo třetí straně (právo na přenositelnost údajů). Vám nebo Vámi zvolené třetí straně poskytneme Vaše osobní údaje ve strukturovaném, běžně používaném, strojově čitelném formátu. Upozorňujeme, že toto právo se vztahuje pouze na automatizované informace, k jejichž použití jste nám původně poskytli souhlas nebo kde jsme tyto informace použili k plnění smlouvy s vámi.
  • Souhlas můžete kdykoli odvolat kde se spoléháme na souhlas se zpracováním vašich osobních údajů. To však neovlivní zákonnost jakéhokoli zpracování provedeného před odvoláním svého souhlasu. Pokud svůj souhlas odvoláte, je možné, že vám nebudeme moci poskytovat určité produkty nebo služby. Pokud se tak stane, upozorníme vás v okamžiku, kdy svůj souhlas odvoláte.

Výše uvedená práva mohou být účinná, když nás kontaktujete na adrese privacy@decidim.org.

Máte také právo podat jakoukoli stížnost příslušnému orgánu, v tomto případě španělské agentuře pro ochranu údajů (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Španělsko. section-8: + paragraph: "

Vyhrazujeme si právo změnit podmínky těchto Zásad ochrany osobních údajů a upozorníme vás jasným oznámením o těchto změnách e-mailem nebo na našich webových stránkách a v těchto Zásadách ochrany osobních údajů. Pokud budete po takové aktualizaci nadále používat naše služby, bude to považováno za přijetí nových podmínek. Pokud aktualizaci nepřijmete, ukončete prosím svůj účet nebo nám to oznamte a my ukončíme váš účet a odstraníme jakékoli vaše osobní údaje (kromě případů, kdy je to nutné pro zákonné účely), a nebudete moci nadále používat naše služby.

Pokud konkrétní místní nařízení nestanoví jinak, zásady ochrany osobních údajů se řídí zákony Španělska.

Poslední aktualizace: únor 2022.

" title: Obecná ustanovení - paragraph: >- -

Vyhrazujeme si právo změnit podmínky těchto Zásad ochrany osobních údajů a upozorníme vás jasným oznámením o těchto změnách e-mailem nebo na našich webových stránkách a v těchto Zásadách ochrany osobních údajů. Pokud budete po takové aktualizaci nadále používat naše služby, bude to považováno za přijetí nových podmínek. Pokud aktualizaci nepřijmete, ukončete prosím svůj účet nebo nám to oznamte a my ukončíme váš účet a odstraníme jakékoli vaše osobní údaje (kromě případů, kdy je to nutné pro zákonné účely), a nebudete moci nadále používat naše služby.

Pokud konkrétní místní nařízení nestanoví jinak, zásady ochrany osobních údajů se řídí zákony Španělska.

Poslední aktualizace: únor 2022.

+ title: Zásady ochrany soukromí + testimonials: + n1: + org: Barcelonská radnice (2015–2019) + quote: Díky Decidim se nám v Barceloně podařilo společně s občany vytvořit strategický plán města. V roce 2016 jsme prostřednictvím Decidim Barcelony zahájili akční plán ve formě participačního procesu. V současné době tento plán obsahuje téměř 7 tisíc občanských návrhů. Jednou z výhod používání této platformy je, že můžete kdykoli sledovat stav provádění schválených návrhů. + n2: + org: Som Energia + quote: S implementací Decidim v Som Energia jsme vytvořili příjemný prostor pro občanskou participaci. Tento nástroj jsme uvolnili v roce 2018, za hostování valného shromáždění družstva a po pár měsících později jsme diskutovali o projektu přepracování vizuálního stylu a spolupracujícímu rozvoji School of Som Energia, kromě jiných participačních procesů. Za několik měsíců se zaregistrovalo více než 3500 účastníků, 5 participačních procesů, 3 shromáždění pracující a více než 1,300 hlasů při posledním hlasování Valného shromáždění. + n3: + org: Starosta města Mérida Yucatán, Mexiko, Městská rada Mérida Yucatán, Mexiko + quote: Digitální platforma Decide Mérida byla příležitostí, která se otevřela jako nikdy před mechanismy účasti občanů na vypracování plánu rozvoje měst Mérida 2018-2021. Měli jsme více než 3000 občanských interakcí včetně návrhů, připomínek, návrhy a podporu, aby bylo dosaženo co největšího konsenzu o tom, co je nejlepší pro naše město. Bezpochyby bude platforma „Decide Mérida“ i nadále naším spojencem při vytváření participativní společnosti města Mérida. + n4: + org: Město Helsinki + quote: Jsme si vědomi toho, že je vybudována s ohledem na demokracii, a proto je demokracie velkým zaměřením. Jádrem návrhu jsou demokratické principy, jako je zodpovědnost, rovnost a transparentnost. + n5: + org: Otevřená vláda Mexico City + quote: Téměř každý participativní proces, který se dostal k našemu stolu, jsme dokázali vyřešit pomocí pravidel pro podnikání Decidim. Jako nástroj je velmi silný. Avšak část, která se nám zdá nejsilnější a nejdůležitější, je její společenství, jak vývojářů, tak těch, kteří ji používají k participačním procesům. Díky spolupráci s nimi jsme si cenili výzev spojených s uplatňováním participativní demokracie v reálném světě. + n6: + org: Mozilla nadace + quote: Trpíme nedostatkem veřejného prostoru. Je obzvláště důležité, abychom tyto veřejné prostory získali zpět pro nás. Otevřené platformy, jako je Decidim, dělají přesně to. Je nejen to, že je open source, takže ostatní lidé ji mohou forknout, znovu použít a vybudovat proces. Má také ve způsobu, jakým je navržena, zakódovány tyto hodnoty, které chceme odrážet v naší společnosti. + n7: + org: OpenForum Europe Research Director, Evropská unie + quote: Proces byl zahájen v říjnu 2019 na oddělení Evropské komise pro komunikaci a elektronickou demokracii ve Společném výzkumném středisku, což je vědecká a znalostní služba Evropské komise. Analýza potřeb konference a toho, které nástroje jim odpovídají, vedla k výběru open source nástroje Decidim pro jeho technickou vyspělost, širokou komunitu a přizpůsobivost. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Děkujeme, že jste nás kontaktovali, brzy se k vám vrátíme. + title: Děkujeme za váš e-mail + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/de.yml b/locales/de.yml index 71872ce4..1f9aae0e 100644 --- a/locales/de.yml +++ b/locales/de.yml @@ -1,448 +1,589 @@ +--- de: - path: '/de' - activeLang: 'Deutsch' - nav: - text: 'Navigation' - demo: 'Demo' - community: 'Gemeinschaft' - contract: 'Gesellschaftsvertrag' - code: 'Code' - docs: - title: 'Dokumentation' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Features' - faqs: 'Häufig gestellte Fragen' - contact: 'Kontakt' - used_by: 'Decidim in Verwendung' - partners: 'Partner' - modules: 'Module' - press: 'Presse' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 und 22 Oktober' - subtitle: 'An unserem Anruf teilnehmen' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest ist ein intensives 3-tägiges Programm voller Aktivitäten für das Decidim-Projekt. partizipative Demokratie und Open-Source-Tools für kollektive Intelligenz im Zeitalter der globalen Demokratie.' - index: - hero: - heading: 'Freie Open-Source-Demokratie für Städte und Organisationen' - subheading: 'Decidim ist eine digitale Plattform
für Bürgerbeteiligung' - intro: 'Freie und sichere Technologie.
Mit allen demokratischen Garantien.
Die Neuprogrammierung der Demokratie ist jetzt mit Decidim möglich.' - video: - play: 'Video abspielen' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Video schließen' - subhero: - intro: 'Decidim hilft Bürgern, Organisationen und öffentlichen Institutionen sich in jeder Größenordnung demokratisch zu organisieren.' - feature1: 'Strategische
Planung' - feature2: 'Partizipative
Budgets' - feature3: 'Initiativen und
Bürgergespräche' - feature4: 'Beteiligungs-
prozesse' - feature5: 'Gremien' - feature6: 'Vernetzte
Kommunikation' - used_by: - title: 'Sie verwenden bereits Decidim' - cta: 'Alle ansehen' - cta: - title: 'heute mit Decidim beginnen' - button: - code: 'Code auf Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Online-Demo - p1: Spielen Sie mit unserer Online-Demo herum und erkunden Sie die Decidim Plattform. - p2: Decidim läuft auf mehreren Instanzen, die Sie erkunden können. Sie können Decidim Barcelona in Barcelona oder die Seiten von Gavà und L'Hospitalet besuchen. Aber das sind echte Fälle, in denen man nicht wirklich frei ausprobieren kann, da Sie vielleicht kein Bürger dieser Gemeinden sind und diese Seiten nicht als Administrator erforschen können. - p3: Wenn Sie weiter gehen möchten, können Sie Decidim auf unserer Demo-Seite testen (dank unserer Entwickler bei aLabs). Betreten Sie die Demo-Seite und erkunden Sie frei das Potential von Decidim und seinen Funktionen. - p4: Sie können sich als Admin anmelden (Benutzername "admin@example.org" und Passwort "decidim123456"). - button: Online-Demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadezim, unsere Gemeinschaft' - subtitle: 'Eine demokratische Gemeinschaft, die das Decidim-Projekt in all seinen Dimensionen unterhält' - intro: 'Metadecidim ist eine Gemeinschaft, die an der Gestaltung der Plattform und dem Bau des Projekts mitarbeitet. Gemeinsam können wir neue Funktionen entwerfen und entwickeln und Fehler zur kontinuierlichen Verbesserung der Plattform melden.' - cta: 'Jetzt starten' - features: - title: 'Neue Funktionen vorschlagen' - subtitle: 'Entwerfen und Entwickeln von Decidim unter allen' - text: 'Sie können Debatten über die Zukunft von Decidim erstellen oder neue Funktionen oder Verbesserungen vorschlagen. Vorschläge können Zustimmungen und Kommentare erhalten, um zum Beispiel das Interesse an der Gemeinschaft zu zeigen und ihre Entwicklung zu bewerten. Vorschläge, die einen Sponsor haben (z. B. einen Stadtrat oder eine andere Einheit), verantwortlich für die Suche und Bereitstellung der notwendigen Ressourcen für die Durchführung ihrer Entwicklung, wird nützlich für das Projekt.' - cta: 'Jetzt eintreten und teilnehmen' - bug: - title: 'Bug melden' - subtitle: 'Zusammenarbeit zur progressiven Verbesserung' - text: 'Jede neue Version von Decidim beinhaltet neue Funktionen und Verbesserungen der Benutzerfreundlichkeit, aber nicht alles funktioniert auf den ersten Blick und möglicherweise treten Fehler auf. Hier kannst du Fehler melden, die du findest, und den Entwicklern helfen, diese schnell zu beheben.' - cta: 'Jetzt eintreten und teilnehmen' - img_alt: 'Decidim Community Foto auf Metadecidim Meeting 2016' - timeline: - title: 'Kollaboratives Design von Funktionalitäten' - step1: - title: 'Neuer Vorschlag' - text: 'Funktionsbeschreibung' - step2: - title: 'Bestätigter Vorschlag' - text: 'Technische und technopolitische Validierung' - step3: - title: 'Geplanter Vorschlag' - text: 'Ressourcen für die Entwicklung (geteilt oder nicht)' - step4: - title: 'Ticket' - text: 'Technische Beschreibung' - step5: - title: 'Pull-Request' - text: 'Entwickelter Code' - step6: - title: 'Funktionalität erledigt' - text: 'Verfügbar bei der nächsten Version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Jetzt starten + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Foto auf Metadecidim Meeting 2016 + intro: Metadecidim ist eine Gemeinschaft, die an der Gestaltung der Plattform und dem Bau des Projekts mitarbeitet. Gemeinsam können wir neue Funktionen entwerfen und entwickeln und Fehler zur kontinuierlichen Verbesserung der Plattform melden. + subtitle: Eine demokratische Gemeinschaft, die das Decidim-Projekt in all seinen Dimensionen unterhält + title: Metadezim, unsere Gemeinschaft contact: - title: Kontaktiere uns - bot_field: "Füllen Sie das nicht aus, wenn Sie Menschen sind:" - name: Name - entity: Entität + bot_field: 'Füllen Sie das nicht aus, wenn Sie Menschen sind:' email: E-Mail - subject: Betreff message: Nachricht + name: Name privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Senden - thanks: - title: Vielen Dank für Ihre E-Mail - message: Vielen Dank, dass Sie uns kontaktiert haben, wir werden uns umgehend mit Ihnen in Verbindung setzen. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Kontaktiere uns + demo: + button: Online-Demo + p1: Spielen Sie mit unserer Online-Demo herum und erkunden Sie die Decidim Plattform. + strong: Try Online + title: Online-Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Häufig gestellte Fragen + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Features' - intro: '

Du kannst Decidim in einer öffentlichen oder privaten Organisation mit Hunderten oder Tausenden potenziellen Teilnehmern verwenden wie ein Stadtrat, eine Vereinigung, eine Universität, eine NGO, eine Gewerkschaft, ein Nachbarschaftskollektiv oder eine Genossenschaft...

Dank Decidim können Sie Räume für die Teilnahme konfigurieren (Initiativen, Baugruppen, B. Prozesse oder Beratungen) und bereichern sie durch die verschiedenen verfügbaren Komponenten (persönliche Treffen, Umfragen, Vorschläge, Abstimmung, Follow-up der Ergebnisse, Kommentare und vieles mehr).

' - list: - n1: - title: 'Beteiligte
Budgets' - content: 'Er analysiert die eingereichten Vorschläge und fördert eine neue Art der Verteilung gemeinsamer Ressourcen.' - n2: - title: 'Bürgerinitiativen
und Konsultationen' - content: 'Ermächtigen Sie Ihre Gemeinschaft durch Bürgerinitiativen. Förderen Sie relevante Abstimmungen durch Konsultationen.' - n3: - title: 'Die Macht
eines politischen Netzwerkes' - content: 'Es erfordert Beratung, Zusammenarbeit und Entscheidung in massiver Dimension, wobei Tausende von Menschen an Echtzeit teilnehmen.' - n4: - title: 'Ein demokratisches
und flexibles System' - content: 'Dank seiner modularen Architektur und seiner skalierbaren Logik können Sie ein mächtiges System demokratischer Regierungsführung in allen möglichen Organisationen einrichten.' - n5: - title: 'Wir nehmen die Demokratie
sehr ernst' - content: 'Decidim sorgt für Transparenz, Rückverfolgbarkeit und Integrität von Informationen wie noch nie zuvor und bietet allen Teilnehmern Sicherheit, Privatsphäre und Vertraulichkeit.' - n6: - title: "Es ist Ihnen.
Teilen Sie es. Verbessern Sie es." - content: 'Eine Plattform komplett mit freier Software, offenem und gemeinschaftlichem Inhalt dank der Community Metadecidim.' - cta: - features: 'Alle Funktionen anzeigen' - values: 'Zu Gesellschaftsvertrag' + intro: "

Du kannst Decidim in einer öffentlichen oder privaten Organisation mit Hunderten oder Tausenden potenziellen Teilnehmern verwenden wie ein Stadtrat, eine Vereinigung, eine Universität, eine NGO, eine Gewerkschaft, ein Nachbarschaftskollektiv oder eine Genossenschaft...

Dank Decidim können Sie Räume für die Teilnahme konfigurieren (Initiativen, Baugruppen, B. Prozesse oder Beratungen) und bereichern sie durch die verschiedenen verfügbaren Komponenten (persönliche Treffen, Umfragen, Vorschläge, Abstimmung, Follow-up der Ergebnisse, Kommentare und vieles mehr).

" page: feature1: - title: 'Beteiligungsprozesse' - subtitle: 'zur Demokratisierung allgemeiner Fragen, Schritt für Schritt' - text: >- - Prozesse sind ein Raum, der das Erstellen, Aktivieren/Deaktivieren und Verwalten verschiedener partizipatorischer Prozesse ermöglicht. Diese unterscheiden sich von anderen Räumen, indem sie in verschiedenen Phasen strukturiert werden, in denen alle Komponenten integriert werden können. Beispiele für partizipatorische Prozesse sind: ein Wahlprozess für Mitglieder eines Ausschusses, partizipative Budgetierung, ein strategischer Planungsprozess. das gemeinsame Schreiben einer Regulierung oder Norm, die Gestaltung eines städtischen Raumes oder die Erstellung eines öffentlichen Politikplans. - feature2: - title: 'Gremien' - subtitle: 'die Macht der kollektiven Selbstorganisation' - text: >- - Ist ein Raum, der die Möglichkeit bietet, Entscheidungsgremien oder Gruppen (Räte, Arbeitsgruppen, Ausschüsse usw.) einzurichten. die sich regelmäßig treffen, um ihre Zusammensetzung, Auflistung und Geolokalisierung ihrer Treffen zu beschreiben und die Möglichkeit der Teilnahme an ihnen (z. B.: Anwesenheit, wenn die Sitzkapazität und die Art der Montage dies zuläßt, Hinzufügen von Punkten auf die Tagesordnung oder Kommentare zu den Vorschlägen und Entscheidungen, die von dieser Stelle getroffen wurden). - feature3: - title: 'Konsultationen' - subtitle: 'das Recht, mit allen demokratischen Garantien zu entscheiden' - text: >- - Konsultationen sind ein Raum, der es ermöglicht, Volksabstimmungen zu koordinieren, Diskussionen und Debatten auszulösen, Abstimmungsergebnisse zu veröffentlichen; es kann an ein sicheres E-Voting System angeschlossen werden. - feature4: - title: 'Initiativen' - subtitle: "setze die Agenda eines jeden in Reichweite" - text: >- - Initiativen sind ein Raum, der es Teilnehmern ermöglicht, gemeinsam Initiativen zu erstellen, ihre Bewegungsbahn und Ziele zu definieren, Unterstützungen zu sammeln, zu diskutieren, zu diskutieren Initiativen zu diskutieren und zu verbreiten und Punkte zu definieren, an denen Unterschriften von Teilnehmern oder Debatten gesammelt werden können, die anderen Mitgliedern der Organisation zugänglich sind. - feature5: - title: 'Vorschläge' - subtitle: 'Ihre Ideen im Detail' - text: >- - Die Vorschlagskomponente erlaubt es dem Benutzer, einen Vorschlag mit einem Erstellungsassistenten zu erstellen, ihn mit den vorhandenen zu vergleichen veröffentlichen Sie es auf der Plattform und enthalten zusätzliche Informationen wie Geolokation oder angehängte Dokumente und Bilder. Diese Komponente ermöglicht Ihnen auch die Navigation, Filterung und Interaktion mit einer Reihe von Vorschlägen. - feature6: - title: 'Abstimmungen' - subtitle: 'entscheide deine Stimme' - text: >- - Die Stimmkomponente bietet Organisationen die Möglichkeit, verschiedene Wahl- oder Unterstützungssysteme um Vorschläge zu aktivieren: unbegrenzt, auf einen bestimmten Schwellenwert begrenzt, gewichtet, kostenbasiert usw. - feature7: - title: 'Ergebnisse' - subtitle: 'kein Vorschlag ohne Antwort' - text: >- - Die Ergebniskomponente wird verwendet, um Vorschläge in Ergebnisse zu verwandeln und offizielle Antworten auf ihre Annahme oder Ablehnung zu geben Zusammenfassung verschiedener Vorschläge zu einem Ergebnis. - feature8: - title: 'Rechenschaftspflicht' - subtitle: 'transparent von Anfang bis Ende' - text: >- - Die Komponente der Rechenschaftspflicht bietet die Möglichkeit, die Ergebnisse in Projekte zu unterteilen, den Fortschrittsstatus um ihre Umsetzung herum zu definieren und anzuwenden, sowie das Ausmaß der Implementierung der Ergebnisse nach Kategorien und Skala gruppiert. - feature9: - title: 'Treffen' - subtitle: 'treffen und nichts verpassen' - text: >- - Die Versammlungskomponente bietet Organisationen und Teilnehmern die Möglichkeit, Meetings einzuberufen, ihren Ort und ihre Zeit zu bestimmen die Teilnehmer registrieren und begrenzen, die Struktur und den Inhalt der Sitzung sowie die Veröffentlichung der Protokolle und die daraus resultierenden Vorschläge definieren. + subtitle: zur Demokratisierung allgemeiner Fragen, Schritt für Schritt + text: 'Prozesse sind ein Raum, der das Erstellen, Aktivieren/Deaktivieren und Verwalten verschiedener partizipatorischer Prozesse ermöglicht. Diese unterscheiden sich von anderen Räumen, indem sie in verschiedenen Phasen strukturiert werden, in denen alle Komponenten integriert werden können. Beispiele für partizipatorische Prozesse sind: ein Wahlprozess für Mitglieder eines Ausschusses, partizipative Budgetierung, ein strategischer Planungsprozess. das gemeinsame Schreiben einer Regulierung oder Norm, die Gestaltung eines städtischen Raumes oder die Erstellung eines öffentlichen Politikplans.' + title: Beteiligungsprozesse feature10: - title: 'Partizipative Texte' - subtitle: 'gemeinsam analysieren, synthetisieren und einbauen' - text: >- - Die partizipatorische Textkomponente kann verwendet werden, um umfangreiche Textdokumente in verschiedene Vorschläge oder Ergebnisse zu konvertieren und, umgekehrt, um einen einheitlichen Text auf der Grundlage einer Sammlung von Vorschlägen oder Ergebnissen zu komponieren und darzustellen. + subtitle: gemeinsam analysieren, synthetisieren und einbauen + text: Die partizipatorische Textkomponente kann verwendet werden, um umfangreiche Textdokumente in verschiedene Vorschläge oder Ergebnisse zu konvertieren und, umgekehrt, um einen einheitlichen Text auf der Grundlage einer Sammlung von Vorschlägen oder Ergebnissen zu komponieren und darzustellen. + title: Partizipative Texte feature11: - title: 'Konferenz' - subtitle: 'Wo große Events uraufgeführt werden' - text: >- - Die Konferenzkomponente ermöglicht es einer Organisation, eine Webseite für ein großes Ereignis zu erstellen, indem sie sich einer Reihe vordefinierter Meetings (Chats, Workshops etc.) anschließen. , die Zusammenstellung eines einheitlichen Programms und die Verwaltung der Teilnehmer. + subtitle: Wo große Events uraufgeführt werden + text: Die Konferenzkomponente ermöglicht es einer Organisation, eine Webseite für ein großes Ereignis zu erstellen, indem sie sich einer Reihe vordefinierter Meetings (Chats, Workshops etc.) anschließen. , die Zusammenstellung eines einheitlichen Programms und die Verwaltung der Teilnehmer. + title: Konferenz feature12: - title: 'Umfragen' - subtitle: 'Weil die Meinung deiner Gemeinschaft wichtig ist' - text: >- - Die Umfragekomponente kann zur Gestaltung und Veröffentlichung von Umfragen sowie zur Anzeige und zum Download der Ergebnisse verwendet werden. + subtitle: Weil die Meinung deiner Gemeinschaft wichtig ist + text: Die Umfragekomponente kann zur Gestaltung und Veröffentlichung von Umfragen sowie zur Anzeige und zum Download der Ergebnisse verwendet werden. + title: Umfragen feature13: - title: 'Sortierung' - subtitle: 'Gleichheit und Gerechtigkeit der Zufälligkeit' - text: >- - Die Sortierkomponente erlaubt die Auswahl einer Reihe von Vorschlägen (z. Eine Jury mit zufälligen, aber reproduzierbaren Verfahren, die eine unvoreingenommene und einheitliche Verteilung gewährleisten. + subtitle: Gleichheit und Gerechtigkeit der Zufälligkeit + text: Die Sortierkomponente erlaubt die Auswahl einer Reihe von Vorschlägen (z. Eine Jury mit zufälligen, aber reproduzierbaren Verfahren, die eine unvoreingenommene und einheitliche Verteilung gewährleisten. + title: Sortierung feature14: - title: 'Kommentare' - subtitle: 'Aufbau einer kollektiven Intelligenz' - text: >- - Die Kommentarkomponente ermöglicht es Benutzern, Kommentare hinzuzufügen, um den Kommentar als Gunst zu identifizieren, gegen oder neutral in Bezug auf das kommentierte Objekt, um Kommentare abzustimmen, auf sie zu antworten und Benachrichtigungen über Antworten zu erhalten. + subtitle: Aufbau einer kollektiven Intelligenz + text: Die Kommentarkomponente ermöglicht es Benutzern, Kommentare hinzuzufügen, um den Kommentar als Gunst zu identifizieren, gegen oder neutral in Bezug auf das kommentierte Objekt, um Kommentare abzustimmen, auf sie zu antworten und Benachrichtigungen über Antworten zu erhalten. + title: Kommentare feature15: - title: 'Seiten und Blogs' - subtitle: 'Deine Community, informiert und aktuell' - text: >- - Die Seitenkomponente wird verwendet, um informative Seiten mit Rich-Text-Formatierung, eingebetteten Bildern und Videos zu erstellen. Die Blog-Komponente ermöglicht die Erstellung von Beiträgen oder Nachrichten, und sie chronologisch zu navigieren. + subtitle: Deine Community, informiert und aktuell + text: Die Seitenkomponente wird verwendet, um informative Seiten mit Rich-Text-Formatierung, eingebetteten Bildern und Videos zu erstellen. Die Blog-Komponente ermöglicht die Erstellung von Beiträgen oder Nachrichten, und sie chronologisch zu navigieren. + title: Seiten und Blogs feature16: - title: 'Benachrichtigungen' - subtitle: 'Personalisierte Informationen zu interessanten Inhalten' - text: >- - Decidim ermöglicht es dir, jeden Platz oder jede Komponente zu verfolgen, um Updates zu erhalten, wenn sie passieren. + subtitle: Personalisierte Informationen zu interessanten Inhalten + text: Decidim ermöglicht es dir, jeden Platz oder jede Komponente zu verfolgen, um Updates zu erhalten, wenn sie passieren. + title: Benachrichtigungen feature17: - title: 'Newsletter' - subtitle: 'Einfach, aber leistungsstark' - text: >- - Die Newsletter-Komponente ermöglicht es, E-Mails an alle auf der Plattform registrierten Personen oder selektiver an diejenigen zu versenden, die an einem bestimmten Ort teilnehmen. + subtitle: Einfach, aber leistungsstark + text: Die Newsletter-Komponente ermöglicht es, E-Mails an alle auf der Plattform registrierten Personen oder selektiver an diejenigen zu versenden, die an einem bestimmten Ort teilnehmen. + title: Newsletter + feature2: + subtitle: die Macht der kollektiven Selbstorganisation + text: 'Ist ein Raum, der die Möglichkeit bietet, Entscheidungsgremien oder Gruppen (Räte, Arbeitsgruppen, Ausschüsse usw.) einzurichten. die sich regelmäßig treffen, um ihre Zusammensetzung, Auflistung und Geolokalisierung ihrer Treffen zu beschreiben und die Möglichkeit der Teilnahme an ihnen (z. B.: Anwesenheit, wenn die Sitzkapazität und die Art der Montage dies zuläßt, Hinzufügen von Punkten auf die Tagesordnung oder Kommentare zu den Vorschlägen und Entscheidungen, die von dieser Stelle getroffen wurden).' + title: Gremien + feature3: + subtitle: das Recht, mit allen demokratischen Garantien zu entscheiden + text: Konsultationen sind ein Raum, der es ermöglicht, Volksabstimmungen zu koordinieren, Diskussionen und Debatten auszulösen, Abstimmungsergebnisse zu veröffentlichen; es kann an ein sicheres E-Voting System angeschlossen werden. + title: Konsultationen + feature4: + subtitle: setze die Agenda eines jeden in Reichweite + text: Initiativen sind ein Raum, der es Teilnehmern ermöglicht, gemeinsam Initiativen zu erstellen, ihre Bewegungsbahn und Ziele zu definieren, Unterstützungen zu sammeln, zu diskutieren, zu diskutieren Initiativen zu diskutieren und zu verbreiten und Punkte zu definieren, an denen Unterschriften von Teilnehmern oder Debatten gesammelt werden können, die anderen Mitgliedern der Organisation zugänglich sind. + title: Initiativen + feature5: + subtitle: Ihre Ideen im Detail + text: Die Vorschlagskomponente erlaubt es dem Benutzer, einen Vorschlag mit einem Erstellungsassistenten zu erstellen, ihn mit den vorhandenen zu vergleichen veröffentlichen Sie es auf der Plattform und enthalten zusätzliche Informationen wie Geolokation oder angehängte Dokumente und Bilder. Diese Komponente ermöglicht Ihnen auch die Navigation, Filterung und Interaktion mit einer Reihe von Vorschlägen. + title: Vorschläge + feature6: + subtitle: entscheide deine Stimme + text: 'Die Stimmkomponente bietet Organisationen die Möglichkeit, verschiedene Wahl- oder Unterstützungssysteme um Vorschläge zu aktivieren: unbegrenzt, auf einen bestimmten Schwellenwert begrenzt, gewichtet, kostenbasiert usw.' + title: Abstimmungen + feature7: + subtitle: kein Vorschlag ohne Antwort + text: Die Ergebniskomponente wird verwendet, um Vorschläge in Ergebnisse zu verwandeln und offizielle Antworten auf ihre Annahme oder Ablehnung zu geben Zusammenfassung verschiedener Vorschläge zu einem Ergebnis. + title: Ergebnisse + feature8: + subtitle: transparent von Anfang bis Ende + text: Die Komponente der Rechenschaftspflicht bietet die Möglichkeit, die Ergebnisse in Projekte zu unterteilen, den Fortschrittsstatus um ihre Umsetzung herum zu definieren und anzuwenden, sowie das Ausmaß der Implementierung der Ergebnisse nach Kategorien und Skala gruppiert. + title: Rechenschaftspflicht + feature9: + subtitle: treffen und nichts verpassen + text: Die Versammlungskomponente bietet Organisationen und Teilnehmern die Möglichkeit, Meetings einzuberufen, ihren Ort und ihre Zeit zu bestimmen die Teilnehmer registrieren und begrenzen, die Struktur und den Inhalt der Sitzung sowie die Veröffentlichung der Protokolle und die daraus resultierenden Vorschläge definieren. + title: Treffen + subtitle: For democratic organizations and collectives of any size and kind. + title: Features type1: - title: 'Räume für die Teilnahme' - subtitle: 'Für Teilnehmer, Vorschläge zu machen und Entscheidungen zu treffen' + title: Räume für die Teilnahme type2: - title: 'Komponenten' - subtitle: 'Für Teilnehmer und Gruppen zu interagieren' - other: - subtitle: 'Wagen Sie es, die Komponenten zu kombinieren. Entwerfen und setzen Sie ein leistungsfähiges demokratisches System auf einfache Weise ein und passen Sie es den Bedürfnissen Ihres Unternehmens an' - cta: - title: 'Entdecke, wie Decidim in der Tiefe funktioniert' - button: 'Funktionen und Funktionen' - partners: - notice: Die Genossenschaftslogos sind geistiges Eigentum der jeweiligen Rechteinhaber. Sie fallen nicht unter die Creative Commons By-SA Lizenz der Rest der Seite ist lizenziert. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Name - type: - community: Gemeinschaft - auth: Autorisierung - official: Offiziell - used_by: - explain: Diese Städte, Regionen und Organisationen verwenden bereits Decidim - type: - city: Städte - region: Regionen - organizations: Organisationen - testimonials: - n1: - quote: >- - Dank Decidim ist es uns in Barcelona gelungen, gemeinsam mit den Bürgern einen strategischen Stadtplan zu erarbeiten. 2016 haben wir den Stadtaktionsplan in Form eines partizipatorischen Prozesses durch Decidim Barcelona eröffnet. Derzeit umfasst dieser Plan fast 7 000 Vorschläge für Bürger. Einer der Vorteile der Nutzung dieser Plattform besteht darin, dass Sie jederzeit den Stand der Umsetzung der angenommenen Vorschläge überwachen können. - org: Rathaus von Barcelona (2015-2019) - n2: - quote: >- - Mit der Implementierung von Decidim in Som Energia haben wir einen freundlicheren Raum für Partizipation geschaffen. Wir haben das Tool 2018 freigegeben als Gastgeber der Generalversammlung der Genossenschaft und Monate später diskutierten wir das Image Redesign und die gemeinsame Entwicklung der Schule von Som Energia, unter anderen partizipatorischen Prozessen. In wenigen Monaten haben sich mehr als 3.500 Teilnehmer registriert, 5 Beteiligungsprozesse, Bei der letzten Generalversammlung stimmten 3 Versammlungen und mehr als 1.300 Stimmen. - org: Som Energia - n3: - quote: >- - Die Entscheidung Me rida digitale Plattform war eine Gelegenheit, die wie nie zuvor die Mechanismen der Bürgerbeteiligung für die Ausarbeitung des Stadtentwicklungsplans von Me rida 2018-2021 eröffnet wurde. Wir hatten mehr als 3.000 Bürgerinteraktionen einschließlich Vorschläge, Kommentare, Anregungen und Unterstützung, dass das Erreichen des größtmöglichen Konsens darüber, was für unsere Stadt am besten ist. Zweifellos wird die Decide Me rida Plattform weiterhin unser Verbündeter sein, um Me rida zu einer zunehmend partizipativen Gesellschaft zu machen. - org: Gemeindepräsident von Me rida Yucata n, Mexiko. Stadtrat von Me rida Yucata n, Mexiko - n4: - quote: >- - Was wir schätzen ist, dass es unter dem Gesichtspunkt der Demokratie aufgebaut ist und daher die Demokratie ein großes Anliegen ist. Demokratische Grundsätze wie Rechenschaftspflicht, Gleichheit und Transparenz stehen im Mittelpunkt des Entwurfs. - org: Stadt Helsinki - n5: - quote: >- - Fast jeder partizipatorische Prozess, der an unseren Tisch gekommen ist, ist es uns gelungen, ihn nach den Geschäftsregeln von Decidim zu lösen. Als Werkzeug ist es ein sehr starkes Werkzeug. Der Teil, der uns jedoch am stärksten und am wichtigsten erscheint, ist seine Gemeinschaft, sowohl Entwickler als auch diejenigen, die es für partizipative Prozesse verwenden. Die Koexistenz mit ihnen hat uns veranlaßt, die Herausforderungen zu erkennen, die mit der Umsetzung der partizipatorischen Demokratie in der realen Welt verbunden sind. - org: Offene Regierung von Mexiko-Stadt - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Häufig gestellte Fragen - q01: - question: Was ist Dezidim? - answer: >- - Decidim ist eine freie Open-Source-demokratische Plattform für Städte und Organisationen. Aber Decidim ist mehr als eine digitale Plattform: Es ist ein gemeinsames freies und offenes Projekt und Infrastruktur mit Code, Dokumentation, Design, Schulungen, rechtliche Rahmenbedingungen, kollaborative Schnittstellen, Anwender- und Erleichterungsgemeinschaften und eine gemeinsame Vision. - q02: - question: Wer verwendet derzeit Decidim? - answer: >- - Es wird derzeit von Städten und Organisationen verwendet. Tatsächlich kann jede Gruppe von Menschen sie nutzen, sei es eine NRO, eine Universität, eine Gewerkschaft, eine Genossenschaft, eine Nachbarschaft usw. Überprüfe die [vollständige Liste der aktuell aktiven Instanzen](/usedby/). - q03: - question: Was kann ein Decidim Administrator tun? - answer: >- - Konfigurieren Sie einfach Beteiligungsprozesse Möchten Sie einen strategischen Plan erstellen? Oder über neue Verordnungen oder über einen neuen Platz oder ein öffentliches Gebäude, um das Gemeinwohl zu erreichen? Dank Decidim können Sie Partizipationsräume konfigurieren (Initiativen, Baugruppen, B. Prozesse oder Beratungen) und bereichern sie durch die verschiedenen verfügbaren Komponenten (persönliche Treffen, Umfragen, Vorschläge, Abstimmung, Follow-up der Ergebnisse, Kommentare und vieles mehr). - q04: - question: Was kann ein Teilnehmer (Benutzer) von Decidim tun? - answer: >- - Decidim ermöglicht es Tausenden von Menschen, sich demokratisch zu organisieren, indem sie Vorschläge unterbreiten, an öffentlichen Sitzungen teilgenommen haben. Förderung von Entscheidungsdiskussionen, Entscheidungsfindung durch verschiedene Formen der Abstimmung und Überwachung der Umsetzung von Entscheidungen. - q05: - question: Hast du eine Demo? Ich möchte jetzt Decidim verwenden, ohne es zu installieren, um zu sehen, wie es funktioniert. - answer: 'Ja, wir haben eine [Online-Demo](/demo).' - q06: - question: Wie oft wird die Plattform aktualisiert? - answer: >- - Wir veröffentlichen ungefähr jeden Monat eine neue Version. Siehe [Aufzeichnung der Versionen](https://github.com/decidim/decidim/releases). - q07: - question: Was benötige ich, um Decidim zu installieren? - answer: >- - Die Installation von Decidim ist einfach, aber du benötigst einige Kenntnisse und technische Anforderungen. Siehe [Dokumentation zur Installation von Decidim](https://docs.decidim.org/en/install/). - q08: - question: Wo finde ich den Projektplan und die geplanten Funktionen? - answer: Die [Roadmap der neuen Features des Projekts findest du unter GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Was bedeutet es, dass Decidim kostenlos, "libre" und Open Source ist?' - answer: >- - Decidim ist eine Plattform für die Bürgerbeteiligung der Menschen und für Menschen. Der Quellcode ist offen und kann von jedem überprüft und verändert werden. Die Decidim Software ist unter die [AGPL Lizenz](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License) Das bedeutet, dass Sie sie verwenden können, modifizieren und abgeleitete Versionen weiterverteilen können, solange Sie die AGPL-Lizenz respektieren. - q10: - question: >- - Ich habe Ideen für neue Verbesserungsmerkmale. Ich möchte das Projekt besser verstehen. Was kann ich tun? - answer: >- - Du kannst auf mehrere Arten zusammenarbeiten. Einer davon ist durch die [Metadecidim](http://meta.decidim.org) Community. Wenn du neue Funktionen vorschlagen möchtest, [gehe hier](https://meta.decidim.org/processes/roadmap). Wenn du Fehler entdeckt hast und sie benachrichtigen möchtest, [gehe zu diesem Prozess](https://meta.decidim.org/processes/bug-report?locale=es). Wenn du aktiv an der Metadecidim Community teilnehmen möchtest, kannst du an den monatlichen [Metadecidim Operative Sessions](https://meta. ecidim.org/assemblies/eix-comunitat). Registrieren Sie sich als Teilnehmer der Community und nehmen Sie mit uns teil. Wenn deine Sache der Code ist, [komm zu Github](https://github.com/decidim/decidim). Wenn du ein Forscher bist, bist du vielleicht daran interessiert, zum [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab) zu kommen. - q11: - question: Ich habe viele Zweifel aller Arten...wo kann ich sie fragen oder lösen? - answer: >- - Der beste Weg, deine Zweifel schnell zu lösen, ist durch die Metadecidim Community. Gib jetzt in den Prozess [Support-Forum](https://meta.decidim. rg/processes/supportforum?locale=de) und sehen, ob Ihre Frage existiert oder ob sie beantwortet wurde und anderweitig eingegeben wurde, um Fragen zu stellen. Wenn du dein Problem in diesem Raum nicht lösen kannst, ist es vielleicht an der Zeit, uns über das [Kontaktformular](/contact). - q12: - question: Gibt es ein Tutorial, um es einzurichten? - answer: >- - Du kannst die neueste Version unseres Admin-Handbuchs im Abschnitt [Dokumentation](https://docs.decidim.org) lesen. - q13: - question: Was ist der Sozialvertrag? - answer: >- - So nennen wir unseren Code of Democratic Guarantees und Democratic Collaboration. Alle Mitglieder der Gemeinschaft müssen den [Sozialvertrag](http://decidim.org/contract) unterstützen. - q14: - question: Was sind die Unterschiede mit Consul Project / Madrid entscheiden? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Was ist die Metadecidim Community? - answer: >- - [Metadecidim](http://meta.decidim.org) ist die Gemeinschaft von Decidim, die an der Gestaltung der Plattform und dem Bau des Decidim-Projekts mitarbeitet. Wir treffen uns regelmäßig durch die [SOM (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) und die [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Gehe zu [meta.decidim.org](http://meta.decidim.org), um die Anrufe genau zu verfolgen und wenn du der Community beitreten möchtest. Wir würden uns freuen ;-) - q16: - question: Kann ich der Metadecidim Community beitreten, auch wenn ich nicht in Barcelona lebe? - answer: >- - Decidim ist ein Projekt, das in Barcelona geboren wurde, und deshalb gibt es eine starke territoriale Bindung zu dieser Stadt. Aber ja, Sie können online zusammenarbeiten, durch partizipatorische Prozesse, Debatten, etc. .... dass wir in Metadecidim zur Verfügung stellen, obwohl Sie vielleicht irgendwann nach Barcelona kommen möchten :) - q17: - question: Wir möchten eine formale Zusammenarbeit abschließen. Gibt es Vorlagen, die wir verwenden können? - answer: Ja, wir haben Vorlagen, um Kooperationsvereinbarungen zu formalisieren. [Bitte kontaktiere uns](/contact). - q18: - question: Welche Art von Mitgliedern kannst du in der Metadecidim Community akzeptieren? - answer: Jeder, der guten Glauben und eine korrekte Haltung zur demokratischen Zusammenarbeit hat. - q19: - question: Bieten Sie eine kostenlose Installation an gemeinnützige Organisationen an? - answer: >- - Ja, nur wenn Sie eine in Barcelona ansässige Organisation sind. Senden Sie uns eine Nachricht und Sie werden von der Direktion Forschung unterstützt, Entwicklung und Innovation des Raums der Bürgerrechte, Beteiligung und Transparenz der Stadtverwaltung von Barcelona. - q20: - question: Unterstützen Sie Institutionen? - answer: >- - Ja, aber Sie müssen geduldig sein. Es gibt viele Institutionen, die Decidim jetzt nutzen wollen, und wir helfen ihnen Schritt für Schritt. [Kontaktiere uns](/contact) für jede Frage und wir werden dir so bald wie möglich antworten. - q21: - question: Was ist die Decidim Association? - answer: >- - Die "Asociacion de Software Libre Decidim" ist eine demokratische Vereinigung für die Verwaltung der Decidim-Gemeinschaft. - q22: - question: Wie kann ich mehr Informationen über die Decidim Association erhalten? - answer: >- - In der [Generalversammlung der Decidim Association](https://meta.decidim. rg/assemblies/general-assembly-association) Sie können weitere Informationen abscheulich finden, die Tätigkeit der Sitzungen verfolgen und relevante Informationen prüfen (Statuten, gesetzliche Vereinbarungen, interne Regelungen) - q23: - question: Wie kann ich Mitglied der Decidim Association werden? - answer: >- - Nun können die am Projekt beteiligten Personen Partner sein. [Hier erklären wir im Detail, wie du es machen musst](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Wann wurde der Decidim Verband geboren? - answer: >- - Die Associacio [Decidim wurde am 16. Februar 2019 in einer außerordentlichen Versammlung der Gemeinschaft gegründet](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), mit Zustimmung der Satzung der Organisation. + title: Komponenten + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Freie und sichere Technologie.
Mit allen demokratischen Garantien.
Die Neuprogrammierung der Demokratie ist jetzt mit Decidim möglich. + subheading: Decidim ist eine digitale Plattform
für Bürgerbeteiligung + subhero: + cta: Explore all features + feature1: Strategische
Planung + feature2: Partizipative
Budgets + feature3: Initiativen und
Bürgergespräche + feature4: Beteiligungs-
prozesse + feature5: Gremien + feature6: Vernetzte
Kommunikation + intro: Decidim hilft Bürgern, Organisationen und öffentlichen Institutionen sich in jeder Größenordnung demokratisch zu organisieren. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Sie verwenden bereits Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Code + community: Gemeinschaft + contact: Kontakt + contract: Gesellschaftsvertrag + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Dokumentation + faqs: Häufig gestellte Fragen + features: Features + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Module + partners: Partner + partnership-policy: Partnership policy + press: Presse + privacy-policy: Privacy policy + text: Navigation + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in Verwendung + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/de" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Rathaus von Barcelona (2015-2019) + quote: Dank Decidim ist es uns in Barcelona gelungen, gemeinsam mit den Bürgern einen strategischen Stadtplan zu erarbeiten. 2016 haben wir den Stadtaktionsplan in Form eines partizipatorischen Prozesses durch Decidim Barcelona eröffnet. Derzeit umfasst dieser Plan fast 7 000 Vorschläge für Bürger. Einer der Vorteile der Nutzung dieser Plattform besteht darin, dass Sie jederzeit den Stand der Umsetzung der angenommenen Vorschläge überwachen können. + n2: + org: Som Energia + quote: Mit der Implementierung von Decidim in Som Energia haben wir einen freundlicheren Raum für Partizipation geschaffen. Wir haben das Tool 2018 freigegeben als Gastgeber der Generalversammlung der Genossenschaft und Monate später diskutierten wir das Image Redesign und die gemeinsame Entwicklung der Schule von Som Energia, unter anderen partizipatorischen Prozessen. In wenigen Monaten haben sich mehr als 3.500 Teilnehmer registriert, 5 Beteiligungsprozesse, Bei der letzten Generalversammlung stimmten 3 Versammlungen und mehr als 1.300 Stimmen. + n3: + org: Gemeindepräsident von Me rida Yucata n, Mexiko. Stadtrat von Me rida Yucata n, Mexiko + quote: Die Entscheidung Me rida digitale Plattform war eine Gelegenheit, die wie nie zuvor die Mechanismen der Bürgerbeteiligung für die Ausarbeitung des Stadtentwicklungsplans von Me rida 2018-2021 eröffnet wurde. Wir hatten mehr als 3.000 Bürgerinteraktionen einschließlich Vorschläge, Kommentare, Anregungen und Unterstützung, dass das Erreichen des größtmöglichen Konsens darüber, was für unsere Stadt am besten ist. Zweifellos wird die Decide Me rida Plattform weiterhin unser Verbündeter sein, um Me rida zu einer zunehmend partizipativen Gesellschaft zu machen. + n4: + org: Stadt Helsinki + quote: Was wir schätzen ist, dass es unter dem Gesichtspunkt der Demokratie aufgebaut ist und daher die Demokratie ein großes Anliegen ist. Demokratische Grundsätze wie Rechenschaftspflicht, Gleichheit und Transparenz stehen im Mittelpunkt des Entwurfs. + n5: + org: Offene Regierung von Mexiko-Stadt + quote: Fast jeder partizipatorische Prozess, der an unseren Tisch gekommen ist, ist es uns gelungen, ihn nach den Geschäftsregeln von Decidim zu lösen. Als Werkzeug ist es ein sehr starkes Werkzeug. Der Teil, der uns jedoch am stärksten und am wichtigsten erscheint, ist seine Gemeinschaft, sowohl Entwickler als auch diejenigen, die es für partizipative Prozesse verwenden. Die Koexistenz mit ihnen hat uns veranlaßt, die Herausforderungen zu erkennen, die mit der Umsetzung der partizipatorischen Demokratie in der realen Welt verbunden sind. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Vielen Dank, dass Sie uns kontaktiert haben, wir werden uns umgehend mit Ihnen in Verbindung setzen. + title: Vielen Dank für Ihre E-Mail + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/el.yml b/locales/el.yml index df863228..ac7cd6bb 100644 --- a/locales/el.yml +++ b/locales/el.yml @@ -1,448 +1,589 @@ +--- el: - path: '/el' - activeLang: 'Αγγλικά' - nav: - text: 'Πλοήγηση' - demo: 'Επίδειξη' - community: 'Κοινότητα' - contract: 'Κοινωνική Σύμβαση' - code: 'Κωδικός' - docs: - title: 'Τεκμηρίωση' - path: 'https://docs.decidim.org/' - blog: 'Ιστολόγιο' - features: 'Χαρακτηριστικά' - faqs: 'Συχνές ερωτήσεις' - contact: 'Επικοινωνία' - used_by: 'Απομίμηση σε χρήση' - partners: 'Συνεταιριστικές οντότητες' - modules: 'Πρόσθετα' - press: 'Τύπος' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Συμμετοχή στην κλήση μας' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'Το DecidimFest είναι ένα έντονο τριήμερο πρόγραμμα δραστηριοτήτων αφιερωμένο στο έργο Decidim, συμμετοχική δημοκρατία και εργαλεία ανοικτού κώδικα για συλλογική ευφυΐα στην εποχή της Παγκόσμιας Δημοκρατίας.' - index: - hero: - heading: 'Δωρεάν Συμμετέχουσα δημοκρατία ανοιχτού κώδικα για τις πόλεις και τους οργανισμούς' - subheading: 'Decidim είναι μια ψηφιακή πλατφόρμα
για τη συμμετοχή των πολιτών' - intro: 'Δωρεάν και ασφαλής τεχνολογία.
Με όλες τις δημοκρατικές εγγυήσεις.
Ο επαναπρογραμματισμός της δημοκρατίας είναι πλέον δυνατός με το Decidim.' - video: - play: 'Αναπαραγωγή βίντεο' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Κλείσιμο βίντεο' - subhero: - intro: 'Ο Decidim βοηθά τους πολίτες, τους οργανισμούς και τους δημόσιους θεσμούς να αυτοοργανώνονται δημοκρατικά σε κάθε κλίμακα.' - feature1: 'Στρατηγικός σχεδιασμός
' - feature2: 'Συμμετοχικός
προϋπολογισμός' - feature3: 'Πρωτοβουλίες και
διαβουλεύσεις πολιτών' - feature4: 'Συμμετοχικές
διαδικασίες' - feature5: 'Συνελεύσεις' - feature6: 'Δικτυωμένη
επικοινωνία' - used_by: - title: 'Χρησιμοποιούν ήδη Decidim' - cta: 'Εμφάνιση όλων' - cta: - title: 'αρχίστε να χρησιμοποιείτε το Decidim σήμερα' - button: - code: 'Κωδικός στο Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Ηλεκτρονική Επίδειξη - p1: Παίξτε γύρω και να εξερευνήσετε ελεύθερα την πλατφόρμα Decidim με online demo. - p2: Decidim είναι σε λειτουργία και να λειτουργήσει σε πολλές περιπτώσεις που μπορείτε να επισκεφθείτε και να εξερευνήσετε, Αποδέξια Βαρκελώνη στην πόλη της Βαρκελώνης ή μπορείτε να επισκεφθείτε τις τοποθεσίες Γκάβα και L'Hospitalet. Αλλά αυτές είναι πραγματικές περιπτώσεις όπου δεν μπορείτε πραγματικά να παίξετε ελεύθερα, καθώς μπορεί να μην είστε υπήκοος αυτών των δήμων, και δεν μπορείτε να εξερευνήσετε αυτές τις ιστοσελίδες ως διαχειριστή. - p3: Αν θέλετε να προχωρήσετε περαιτέρω είστε ευπρόσδεκτοι να δοκιμάσετε Decidim στην ιστοσελίδα μας Decidim Demo (ευγενική προσφορά των προγραμματιστών μας στο aLabs). Εισάγετε τον ιστότοπο επίδειξης και εξερευνήστε ελεύθερα τις δυνατότητες του Decidim και τα χαρακτηριστικά του. - p4: Μπορείτε να συνδεθείτε ως Διαχειριστής (όνομα χρήστη "admin@example.org" και κωδικός πρόσβασης "decidim123456"). - button: Online demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Μεταδεκτικότητα, η κοινότητά μας' - subtitle: 'Μια δημοκρατική κοινότητα που διαχειρίζεται το σχέδιο Decidim σε όλες του τις διαστάσεις' - intro: 'Το Metadecidim είναι μια κοινότητα που συνεργάζεται στο σχεδιασμό της πλατφόρμας και στην κατασκευή του έργου. Μαζί μπορούμε να σχεδιάσουμε και να αναπτύξουμε νέα χαρακτηριστικά και να αναφέρουμε σφάλματα για συνεχή βελτίωση της πλατφόρμας.' - cta: 'Ας αρχίσουμε' - features: - title: 'Προτείνετε νέα χαρακτηριστικά' - subtitle: 'Για το σχεδιασμό και την ανάπτυξη Decidim μεταξύ όλων' - text: 'Μπορείτε να δημιουργήσετε συζητήσεις σχετικά με το μέλλον του Decidim ή να προτείνετε νέα χαρακτηριστικά ή βελτιώσεις. Οι προτάσεις μπορούν να λάβουν προσυπογραφές και σχόλια, για να δείξουν, για παράδειγμα, το ενδιαφέρον τους για την κοινότητα και να εκτιμήσουν την ανάπτυξή τους. Προτάσεις που έχουν χορηγό (όπως δημοτικό συμβούλιο ή οποιαδήποτε άλλη οντότητα), υπεύθυνος για την αναζήτηση και την παροχή των απαραίτητων πόρων για την υλοποίηση της ανάπτυξής τους, θα είναι χρήσιμος για το έργο.' - cta: 'Εισάγετε και συμμετάσχετε τώρα' - bug: - title: 'Αναφορά σφάλματος' - subtitle: 'Συνεργασία για προοδευτική βελτίωση' - text: 'Κάθε νέα έκδοση του Decidim ενσωματώνει νέα χαρακτηριστικά και βελτιώσεις χρηστικότητας, αλλά δεν είναι όλα έργα στην αρχή και μπορεί να εμφανιστούν λάθη. Εδώ μπορείτε να αναφέρετε σφάλματα που θα βρείτε και να βοηθήσετε τους προγραμματιστές να τα διορθώσουν γρήγορα.' - cta: 'Εισάγετε και συμμετάσχετε τώρα' - img_alt: 'Αποχρωματισμός φωτογραφία κοινότητας στο Metadecidim Meeting 2016' - timeline: - title: 'Συνεργατικός σχεδιασμός λειτουργιών' - step1: - title: 'Νέα πρόταση' - text: 'Λειτουργική περιγραφή' - step2: - title: 'Επικυρωμένη πρόταση' - text: 'Τεχνική και τεχνοπολιτική επικύρωση' - step3: - title: 'Προγραμματισμένη πρόταση' - text: 'Πόροι ανάπτυξης (κοινόχρηστοι ή όχι)' - step4: - title: 'Πρόβλημα' - text: 'Τεχνική περιγραφή' - step5: - title: 'Αίτημα έλξης' - text: 'Προγραμματισμένος κώδικας' - step6: - title: 'Ολοκληρώθηκε η ψευδαίσθηση' - text: 'Διαθέσιμο στην επόμενη έκδοση' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Ας αρχίσουμε + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Αποχρωματισμός φωτογραφία κοινότητας στο Metadecidim Meeting 2016 + intro: Το Metadecidim είναι μια κοινότητα που συνεργάζεται στο σχεδιασμό της πλατφόρμας και στην κατασκευή του έργου. Μαζί μπορούμε να σχεδιάσουμε και να αναπτύξουμε νέα χαρακτηριστικά και να αναφέρουμε σφάλματα για συνεχή βελτίωση της πλατφόρμας. + subtitle: Μια δημοκρατική κοινότητα που διαχειρίζεται το σχέδιο Decidim σε όλες του τις διαστάσεις + title: Μεταδεκτικότητα, η κοινότητά μας contact: - title: Επικοινωνήστε μαζί μας - bot_field: "Μην το γεμίσετε αυτό αν είστε άνθρωπος:" - name: Όνομα - entity: Οντότητα + bot_field: 'Μην το γεμίσετε αυτό αν είστε άνθρωπος:' email: Email - subject: Subject message: Μήνυμα + name: Όνομα privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Αποστολή - thanks: - title: Ευχαριστούμε για το email σας - message: Ευχαριστούμε που επικοινωνήσατε μαζί μας, θα επικοινωνήσουμε μαζί σας σύντομα. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Επικοινωνήστε μαζί μας + demo: + button: Online demo + p1: Παίξτε γύρω και να εξερευνήσετε ελεύθερα την πλατφόρμα Decidim με online demo. + strong: Try Online + title: Ηλεκτρονική Επίδειξη + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Συχνές ερωτήσεις + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Χαρακτηριστικά' - intro: '

Μπορείτε να χρησιμοποιήσετε το Decidim σε έναν δημόσιο ή ιδιωτικό οργανισμό, με εκατοντάδες ή χιλιάδες πιθανούς συμμετέχοντες, όπως ένα δημοτικό συμβούλιο, μια ένωση, ένα πανεπιστήμιο, μια ΜΚΟ, μια συνδικαλιστική ένωση, μια συλλογική γειτονιά ή ένας συνεταιρισμός...

Χάρη στο Decidim θα είστε σε θέση να διαμορφώσετε χώρους για συμμετοχή (πρωτοβουλίες, συνελεύσεις, επεξεργάζεται ή διαβουλεύσεις), και τις εμπλουτίζει μέσω των πολλαπλών διαθέσιμων στοιχείων (πρόσωπο με πρόσωπο συναντήσεις, έρευνες, προτάσεις, ψηφοφορία, παρακολούθηση των αποτελεσμάτων, σχόλια και πολλά άλλα).

' - list: - n1: - title: 'Συμμετοχικοί
προϋπολογισμοί' - content: 'Αναλύει τις υποβληθείσες προτάσεις και προωθεί έναν νέο τρόπο κατανομής των κοινών πόρων.' - n2: - title: 'Πρωτοβουλίες πολιτών
και διαβουλεύσεις' - content: 'Ενδυναμώστε την κοινότητά σας μέσω πρωτοβουλιών πολιτών. Προωθήστε τη σχετική ψηφοφορία μέσω διαβουλεύσεων.' - n3: - title: 'Η εξουσία
ενός πολιτικού δικτύου' - content: 'Παίρνει τη διαβούλευση, τη συνεργασία και την απόφαση σε μια μαζική διάσταση, με χιλιάδες ανθρώπους να συμμετέχουν σε πραγματικό χρόνο.' - n4: - title: 'Ένα δημοκρατικό
και ευέλικτο σύστημα' - content: 'Χάρη στην αρθρωτή αρχιτεκτονική και τη επεκτάσιμη λογική του, μπορείτε να διαμορφώσετε ένα ισχυρό σύστημα δημοκρατικής διακυβέρνησης σε όλα τα είδη των οργανώσεων.' - n5: - title: 'Παίρνουμε τη δημοκρατία
πολύ σοβαρά' - content: 'Το Decidim διασφαλίζει τη διαφάνεια, την ιχνηλασιμότητα και την ακεραιότητα των πληροφοριών όπως ποτέ άλλοτε.' - n6: - title: "Είναι δική σας.
Μοιραστείτε το." - content: 'Μια πλατφόρμα σχεδιασμένη εξ ολοκλήρου με ελεύθερο λογισμικό, ανοιχτό και συνεργατικό περιεχόμενο χάρη στην κοινότητα Metadecidim.' - cta: - features: 'Δείτε όλα τα χαρακτηριστικά' - values: 'Πηγαίνετε στο κοινωνικό συμβόλαιο' + intro: "

Μπορείτε να χρησιμοποιήσετε το Decidim σε έναν δημόσιο ή ιδιωτικό οργανισμό, με εκατοντάδες ή χιλιάδες πιθανούς συμμετέχοντες, όπως ένα δημοτικό συμβούλιο, μια ένωση, ένα πανεπιστήμιο, μια ΜΚΟ, μια συνδικαλιστική ένωση, μια συλλογική γειτονιά ή ένας συνεταιρισμός...

Χάρη στο Decidim θα είστε σε θέση να διαμορφώσετε χώρους για συμμετοχή (πρωτοβουλίες, συνελεύσεις, επεξεργάζεται ή διαβουλεύσεις), και τις εμπλουτίζει μέσω των πολλαπλών διαθέσιμων στοιχείων (πρόσωπο με πρόσωπο συναντήσεις, έρευνες, προτάσεις, ψηφοφορία, παρακολούθηση των αποτελεσμάτων, σχόλια και πολλά άλλα).

" page: feature1: - title: 'Διαδικασίες συμμετοχής' - subtitle: 'να εκδημοκρατίσουμε κοινά ζητήματα, βήμα προς βήμα' - text: >- - Οι διεργασίες είναι ένας χώρος που επιτρέπει τη δημιουργία, την ενεργοποίηση/απενεργοποίηση και τη διαχείριση διαφόρων συμμετοχικών διαδικασιών. Οι χώροι αυτοί διακρίνονται από άλλους χώρους με το να είναι δομημένοι σε διαφορετικές φάσεις εντός των οποίων μπορούν να ενσωματωθούν όλα τα κατασκευαστικά στοιχεία. Παραδείγματα συμμετοχικών διαδικασιών είναι: μια εκλογική διαδικασία για τα μέλη μιας επιτροπής, συμμετοχικός προϋπολογισμός, μια διαδικασία στρατηγικού σχεδιασμού. τη συνεργατική γραφή ενός κανονισμού ή ενός κανόνα, τον σχεδιασμό ενός αστικού χώρου ή την παραγωγή ενός σχεδίου δημόσιας πολιτικής. - feature2: - title: 'Συνελεύσεις' - subtitle: 'η δύναμη της συλλογικής αυτοοργάνωσης' - text: >- - Είναι ένας χώρος που προσφέρει τη δυνατότητα δημιουργίας οργάνων λήψης αποφάσεων ή ομάδων (συμβούλια, ομάδες εργασίας, επιτροπές, κλπ. που συναντώνται περιοδικά, περιγράφοντας τη σύνθεση, την απαρίθμηση και τη γεωσυγκίνηση των συναντήσεών τους, και επιτρέποντας να λάβουν μέρος σε αυτά (για παράδειγμα: παρακολούθηση εάν η χωρητικότητα των καθισμάτων και η φύση του συγκροτήματος το επιτρέπουν, προσθήκη θεμάτων στην ημερήσια διάταξη ή σχολιασμός των προτάσεων και των αποφάσεων που λαμβάνονται από τον εν λόγω οργανισμό). - feature3: - title: 'Διαβουλεύσεις' - subtitle: 'το δικαίωμα να αποφασίζουν με όλες τις δημοκρατικές εγγυήσεις' - text: >- - Οι διαβουλεύσεις είναι ένας χώρος που επιτρέπει τον συντονισμό των δημοψηφισμάτων, την έναρξη συζητήσεων και συζητήσεων, τη δημοσίευση των αποτελεσμάτων της ψηφοφορίας. μπορεί να συνδεθεί με ένα ασφαλές σύστημα ηλεκτρονικής ψηφοφορίας. - feature4: - title: 'Πρωτοβουλίες' - subtitle: "καθορίζοντας την ατζέντα όλων, με την πρόσβαση όλων" - text: >- - Οι πρωτοβουλίες είναι ένας χώρος που επιτρέπει στους συμμετέχοντες να δημιουργήσουν συνεργατικά πρωτοβουλίες, να καθορίσουν την τροχιά και τους στόχους τους, να συγκεντρώσουν θεωρήσεις, συζητήσεις, συζήτηση και διάδοση πρωτοβουλιών και καθορισμός σημείων συνάντησης όπου μπορούν να συλλεχθούν υπογραφές από τους συμμετέχοντες ή συζητήσεις που είναι ανοιχτές σε άλλα μέλη της οργάνωσης. - feature5: - title: 'Προτάσεις' - subtitle: 'τις ιδέες σας λεπτομερώς' - text: >- - Η συνιστώσα προτάσεων επιτρέπει στο χρήστη να δημιουργήσει μια πρόταση χρησιμοποιώντας έναν οδηγό δημιουργίας, συγκρίνετε την με τις υπάρχουσες, το δημοσιεύει στην πλατφόρμα και περιλαμβάνει πρόσθετες πληροφορίες όπως γεωεντοπισμός ή συνημμένα έγγραφα και εικόνες. Αυτό το στοιχείο σας επιτρέπει επίσης να πλοηγηθείτε, να φιλτράρετε και να αλληλεπιδράτε με ένα σύνολο προτάσεων. Επιπλέον, με την πρόταση-εκκολαπτήριο μπορείτε να δημιουργήσετε συνεργατικές προτάσεις. - feature6: - title: 'Ψηφοφορία' - subtitle: 'αποφασίστε την ψήφο σας' - text: >- - Η συνιστώσα της ψηφοφορίας προσφέρει στους οργανισμούς τη δυνατότητα να ενεργοποιούν διαφορετικά συστήματα ψηφοφορίας ή υποστήριξης γύρω από προτάσεις: απεριόριστη, περιορισμένη σε ένα δεδομένο κατώτατο όριο, σταθμισμένο, με βάση το κόστος κλπ. - feature7: - title: 'Αποτελέσματα' - subtitle: 'καμία πρόταση χωρίς απάντηση' - text: >- - Το στοιχείο αποτελεσμάτων χρησιμοποιείται για να μετατρέψει τις προτάσεις σε αποτελέσματα και να δώσει επίσημες απαντήσεις σχετικά με την αποδοχή ή την απόρριψή τους, η συγχώνευση διαφόρων προτάσεων σε ένα μόνο αποτέλεσμα. - feature8: - title: 'Υπευθυνότητα' - subtitle: 'διαφάνεια από την αρχή έως το τέλος' - text: >- - Η συνιστώσα της λογοδοσίας παρέχει τη δυνατότητα υποδιαίρεσης των αποτελεσμάτων σε έργα, ορίζοντας και εφαρμόζοντας τις καταστάσεις προόδου γύρω από την εφαρμογή τους, καθώς και την εμφάνιση της έκτασης της εφαρμογής των αποτελεσμάτων ομαδοποιημένη ανά κατηγορίες και πεδία. - feature9: - title: 'Συσκέψεις' - subtitle: 'να συναντηθούν και να μην χάσετε τίποτα' - text: >- - Η συνιστώσα της συνάντησης προσφέρει στους οργανισμούς και τους συμμετέχοντες την ευκαιρία να συγκαλέσουν συναντήσεις, να καθορίσουν την τοποθεσία και τον χρόνο τους, να καταχωρίζουν και να περιορίζουν τους συμμετέχοντες, να καθορίζουν τη δομή και το περιεχόμενο της συνεδρίασης, καθώς και να δημοσιεύουν τα πρακτικά και τις συνακόλουθες προτάσεις. + subtitle: να εκδημοκρατίσουμε κοινά ζητήματα, βήμα προς βήμα + text: 'Οι διεργασίες είναι ένας χώρος που επιτρέπει τη δημιουργία, την ενεργοποίηση/απενεργοποίηση και τη διαχείριση διαφόρων συμμετοχικών διαδικασιών. Οι χώροι αυτοί διακρίνονται από άλλους χώρους με το να είναι δομημένοι σε διαφορετικές φάσεις εντός των οποίων μπορούν να ενσωματωθούν όλα τα κατασκευαστικά στοιχεία. Παραδείγματα συμμετοχικών διαδικασιών είναι: μια εκλογική διαδικασία για τα μέλη μιας επιτροπής, συμμετοχικός προϋπολογισμός, μια διαδικασία στρατηγικού σχεδιασμού. τη συνεργατική γραφή ενός κανονισμού ή ενός κανόνα, τον σχεδιασμό ενός αστικού χώρου ή την παραγωγή ενός σχεδίου δημόσιας πολιτικής.' + title: Διαδικασίες συμμετοχής feature10: - title: 'Κείμενα συμμετοχής' - subtitle: 'να αναλύσει, να συνθέσει, και να οικοδομήσουμε κοινά' - text: >- - Η συνιστώσα των συμμετοχικών κειμένων μπορεί να χρησιμοποιηθεί για τη μετατροπή μακροσκελών εγγράφων κειμένου σε διάφορες προτάσεις ή αποτελέσματα και αντίστροφα, για να συνθέσει και να εμφανίσει ένα ενοποιημένο κείμενο βασισμένο σε μια συλλογή προτάσεων ή αποτελεσμάτων. + subtitle: να αναλύσει, να συνθέσει, και να οικοδομήσουμε κοινά + text: Η συνιστώσα των συμμετοχικών κειμένων μπορεί να χρησιμοποιηθεί για τη μετατροπή μακροσκελών εγγράφων κειμένου σε διάφορες προτάσεις ή αποτελέσματα και αντίστροφα, για να συνθέσει και να εμφανίσει ένα ενοποιημένο κείμενο βασισμένο σε μια συλλογή προτάσεων ή αποτελεσμάτων. + title: Κείμενα συμμετοχής feature11: - title: 'Διάσκεψη' - subtitle: 'Όπου οι μεγάλες εκδηλώσεις είναι πρεμιέρα' - text: >- - Η συνιστώσα του συνεδρίου επιτρέπει σε έναν οργανισμό να δημιουργήσει μια ιστοσελίδα για μια μεγάλη εκδήλωση συμμετέχοντας σε μια σειρά προκαθορισμένων συναντήσεων (chats, workshops κλπ. , βάζοντας μαζί ένα ενοποιημένο πρόγραμμα και τη διαχείριση των συμμετεχόντων. + subtitle: Όπου οι μεγάλες εκδηλώσεις είναι πρεμιέρα + text: Η συνιστώσα του συνεδρίου επιτρέπει σε έναν οργανισμό να δημιουργήσει μια ιστοσελίδα για μια μεγάλη εκδήλωση συμμετέχοντας σε μια σειρά προκαθορισμένων συναντήσεων (chats, workshops κλπ. , βάζοντας μαζί ένα ενοποιημένο πρόγραμμα και τη διαχείριση των συμμετεχόντων. + title: Διάσκεψη feature12: - title: 'Έρευνες' - subtitle: 'Επειδή η γνώμη της κοινότητάς σας έχει σημασία' - text: >- - Το στοιχείο των ερευνών μπορεί να χρησιμοποιηθεί για το σχεδιασμό και τη δημοσίευση ερευνών και για την εμφάνιση και λήψη των αποτελεσμάτων τους. + subtitle: Επειδή η γνώμη της κοινότητάς σας έχει σημασία + text: Το στοιχείο των ερευνών μπορεί να χρησιμοποιηθεί για το σχεδιασμό και τη δημοσίευση ερευνών και για την εμφάνιση και λήψη των αποτελεσμάτων τους. + title: Έρευνες feature13: - title: 'Κλήρωση' - subtitle: 'Ισότητα και η δικαιοσύνη της τυχαιότητας' - text: >- - Η συνιστώσα ταξινόμησης επιτρέπει την επιλογή ενός αριθμού προτάσεων (π.χ. οι υποψήφιοι για κριτική επιτροπή) με τυχαία, αλλά και αναπαραγώγιμες, διαδικασίες που εγγυώνται αμερόληπτες και ομοιόμορφες διανομές. + subtitle: Ισότητα και η δικαιοσύνη της τυχαιότητας + text: Η συνιστώσα ταξινόμησης επιτρέπει την επιλογή ενός αριθμού προτάσεων (π.χ. οι υποψήφιοι για κριτική επιτροπή) με τυχαία, αλλά και αναπαραγώγιμες, διαδικασίες που εγγυώνται αμερόληπτες και ομοιόμορφες διανομές. + title: Κλήρωση feature14: - title: 'Σχόλια' - subtitle: 'Η οικοδόμηση μιας συλλογικής νοημοσύνης' - text: >- - Το στοιχείο σχολίων επιτρέπει στους χρήστες να προσθέσουν σχόλια, να προσδιορίσουν το σχόλιο ως προτιμώμενο, κατά ή ουδέτερο σε σχέση με το αντικείμενο που σχολιάστηκε, να ψηφίσουν σχόλια, να απαντήσουν σε αυτά και να λάβουν ειδοποιήσεις σχετικά με απαντήσεις. + subtitle: Η οικοδόμηση μιας συλλογικής νοημοσύνης + text: Το στοιχείο σχολίων επιτρέπει στους χρήστες να προσθέσουν σχόλια, να προσδιορίσουν το σχόλιο ως προτιμώμενο, κατά ή ουδέτερο σε σχέση με το αντικείμενο που σχολιάστηκε, να ψηφίσουν σχόλια, να απαντήσουν σε αυτά και να λάβουν ειδοποιήσεις σχετικά με απαντήσεις. + title: Σχόλια feature15: - title: 'Σελίδες και ιστολόγια' - subtitle: 'Η κοινότητά σας, ενημερωμένη και ενημερωμένη' - text: >- - Το στοιχείο σελίδων χρησιμοποιείται για τη δημιουργία ενημερωτικών σελίδων με πλούσια μορφοποίηση κειμένου, ενσωματωμένες εικόνες και βίντεο. Το στοιχείο blog καθιστά δυνατή τη δημιουργία θέσεων ή ειδήσεων, και να τους περιηγηθείτε χρονολογικά. + subtitle: Η κοινότητά σας, ενημερωμένη και ενημερωμένη + text: Το στοιχείο σελίδων χρησιμοποιείται για τη δημιουργία ενημερωτικών σελίδων με πλούσια μορφοποίηση κειμένου, ενσωματωμένες εικόνες και βίντεο. Το στοιχείο blog καθιστά δυνατή τη δημιουργία θέσεων ή ειδήσεων, και να τους περιηγηθείτε χρονολογικά. + title: Σελίδες και ιστολόγια feature16: - title: 'Ειδοποιήσεις' - subtitle: 'Εξατομικευμένες πληροφορίες σχετικά με ενδιαφέροντα περιεχόμενα' - text: >- - Decidim σας επιτρέπει να παρακολουθείτε οποιοδήποτε χώρο ή συστατικό για να λαμβάνετε ενημερώσεις κάθε φορά που συμβαίνουν. + subtitle: Εξατομικευμένες πληροφορίες σχετικά με ενδιαφέροντα περιεχόμενα + text: Decidim σας επιτρέπει να παρακολουθείτε οποιοδήποτε χώρο ή συστατικό για να λαμβάνετε ενημερώσεις κάθε φορά που συμβαίνουν. + title: Ειδοποιήσεις feature17: - title: 'Ενημερωτικό δελτίο' - subtitle: 'Απλό αλλά ισχυρό' - text: >- - Το στοιχείο του ενημερωτικού δελτίου καθιστά δυνατή την αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου σε όλους τους εγγεγραμμένους στην πλατφόρμα ή, πιο επιλεκτικά, σε όσους συμμετέχουν σε ένα συγκεκριμένο χώρο. + subtitle: Απλό αλλά ισχυρό + text: Το στοιχείο του ενημερωτικού δελτίου καθιστά δυνατή την αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου σε όλους τους εγγεγραμμένους στην πλατφόρμα ή, πιο επιλεκτικά, σε όσους συμμετέχουν σε ένα συγκεκριμένο χώρο. + title: Ενημερωτικό δελτίο + feature2: + subtitle: η δύναμη της συλλογικής αυτοοργάνωσης + text: 'Είναι ένας χώρος που προσφέρει τη δυνατότητα δημιουργίας οργάνων λήψης αποφάσεων ή ομάδων (συμβούλια, ομάδες εργασίας, επιτροπές, κλπ. που συναντώνται περιοδικά, περιγράφοντας τη σύνθεση, την απαρίθμηση και τη γεωσυγκίνηση των συναντήσεών τους, και επιτρέποντας να λάβουν μέρος σε αυτά (για παράδειγμα: παρακολούθηση εάν η χωρητικότητα των καθισμάτων και η φύση του συγκροτήματος το επιτρέπουν, προσθήκη θεμάτων στην ημερήσια διάταξη ή σχολιασμός των προτάσεων και των αποφάσεων που λαμβάνονται από τον εν λόγω οργανισμό).' + title: Συνελεύσεις + feature3: + subtitle: το δικαίωμα να αποφασίζουν με όλες τις δημοκρατικές εγγυήσεις + text: Οι διαβουλεύσεις είναι ένας χώρος που επιτρέπει τον συντονισμό των δημοψηφισμάτων, την έναρξη συζητήσεων και συζητήσεων, τη δημοσίευση των αποτελεσμάτων της ψηφοφορίας. μπορεί να συνδεθεί με ένα ασφαλές σύστημα ηλεκτρονικής ψηφοφορίας. + title: Διαβουλεύσεις + feature4: + subtitle: καθορίζοντας την ατζέντα όλων, με την πρόσβαση όλων + text: Οι πρωτοβουλίες είναι ένας χώρος που επιτρέπει στους συμμετέχοντες να δημιουργήσουν συνεργατικά πρωτοβουλίες, να καθορίσουν την τροχιά και τους στόχους τους, να συγκεντρώσουν θεωρήσεις, συζητήσεις, συζήτηση και διάδοση πρωτοβουλιών και καθορισμός σημείων συνάντησης όπου μπορούν να συλλεχθούν υπογραφές από τους συμμετέχοντες ή συζητήσεις που είναι ανοιχτές σε άλλα μέλη της οργάνωσης. + title: Πρωτοβουλίες + feature5: + subtitle: τις ιδέες σας λεπτομερώς + text: Η συνιστώσα προτάσεων επιτρέπει στο χρήστη να δημιουργήσει μια πρόταση χρησιμοποιώντας έναν οδηγό δημιουργίας, συγκρίνετε την με τις υπάρχουσες, το δημοσιεύει στην πλατφόρμα και περιλαμβάνει πρόσθετες πληροφορίες όπως γεωεντοπισμός ή συνημμένα έγγραφα και εικόνες. Αυτό το στοιχείο σας επιτρέπει επίσης να πλοηγηθείτε, να φιλτράρετε και να αλληλεπιδράτε με ένα σύνολο προτάσεων. Επιπλέον, με την πρόταση-εκκολαπτήριο μπορείτε να δημιουργήσετε συνεργατικές προτάσεις. + title: Προτάσεις + feature6: + subtitle: αποφασίστε την ψήφο σας + text: 'Η συνιστώσα της ψηφοφορίας προσφέρει στους οργανισμούς τη δυνατότητα να ενεργοποιούν διαφορετικά συστήματα ψηφοφορίας ή υποστήριξης γύρω από προτάσεις: απεριόριστη, περιορισμένη σε ένα δεδομένο κατώτατο όριο, σταθμισμένο, με βάση το κόστος κλπ.' + title: Ψηφοφορία + feature7: + subtitle: καμία πρόταση χωρίς απάντηση + text: Το στοιχείο αποτελεσμάτων χρησιμοποιείται για να μετατρέψει τις προτάσεις σε αποτελέσματα και να δώσει επίσημες απαντήσεις σχετικά με την αποδοχή ή την απόρριψή τους, η συγχώνευση διαφόρων προτάσεων σε ένα μόνο αποτέλεσμα. + title: Αποτελέσματα + feature8: + subtitle: διαφάνεια από την αρχή έως το τέλος + text: Η συνιστώσα της λογοδοσίας παρέχει τη δυνατότητα υποδιαίρεσης των αποτελεσμάτων σε έργα, ορίζοντας και εφαρμόζοντας τις καταστάσεις προόδου γύρω από την εφαρμογή τους, καθώς και την εμφάνιση της έκτασης της εφαρμογής των αποτελεσμάτων ομαδοποιημένη ανά κατηγορίες και πεδία. + title: Υπευθυνότητα + feature9: + subtitle: να συναντηθούν και να μην χάσετε τίποτα + text: Η συνιστώσα της συνάντησης προσφέρει στους οργανισμούς και τους συμμετέχοντες την ευκαιρία να συγκαλέσουν συναντήσεις, να καθορίσουν την τοποθεσία και τον χρόνο τους, να καταχωρίζουν και να περιορίζουν τους συμμετέχοντες, να καθορίζουν τη δομή και το περιεχόμενο της συνεδρίασης, καθώς και να δημοσιεύουν τα πρακτικά και τις συνακόλουθες προτάσεις. + title: Συσκέψεις + subtitle: For democratic organizations and collectives of any size and kind. + title: Χαρακτηριστικά type1: - title: 'Χώροι συμμετοχής' - subtitle: 'Για τους συμμετέχοντες να κάνουν προτάσεις και να λάβουν αποφάσεις' + title: Χώροι συμμετοχής type2: - title: 'Στοιχεία' - subtitle: 'Για τους συμμετέχοντες και τους χώρους αλληλεπίδρασης' - other: - subtitle: 'Τόλμησε να συνδυάσεις τα εξαρτήματα. Σχεδίασε και χρησιμοποίησε ένα ισχυρό δημοκρατικό σύστημα με εύκολο τρόπο και προσάρμοσε το στις ανάγκες του οργανισμού σου' - cta: - title: 'Ανακαλύψτε πώς λειτουργεί το Decidim σε βάθος' - button: 'Λειτουργίες και χαρακτηριστικά' - partners: - notice: Τα λογότυπα των συνεργαζόμενων οντοτήτων αποτελούν πνευματική ιδιοκτησία των αντίστοιχων κατόχων δικαιωμάτων πνευματικής ιδιοκτησίας. Δεν εμπίπτουν στην άδεια Creative Commons By-SA το υπόλοιπο περιεχόμενο του ιστότοπου έχει αδειοδοτηθεί. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Όνομα - type: - community: Κοινότητα - auth: Εξουσιοδότηση - official: Επίσημη - used_by: - explain: Αυτές οι πόλεις, οι περιοχές και οι οργανισμοί χρησιμοποιούν ήδη Decidim - type: - city: Πόλεις - region: Περιφέρειες - organizations: Οργανισμοί - testimonials: - n1: - quote: >- - Χάρη στο Decidim, στη Βαρκελώνη καταφέραμε να συνπαράγουμε ένα στρατηγικό σχέδιο πόλης μαζί με τους πολίτες. Το 2016 εγκαινιάσαμε το Δημοτικό Σχέδιο Δράσης με τη μορφή συμμετοχικής διαδικασίας μέσω του Decidim Barcelona. Επί του παρόντος, αυτό το σχέδιο περιλαμβάνει σχεδόν 7 χιλιάδες προτάσεις πολιτών. Ένα από τα πλεονεκτήματα της χρήσης αυτής της πλατφόρμας είναι ότι μπορείτε να παρακολουθείτε ανά πάσα στιγμή την κατάσταση εφαρμογής των εγκεκριμένων προτάσεων. - org: Δημαρχείο Βαρκελώνης (2015-2019) - n2: - quote: >- - Με την εφαρμογή του Decidim στην Som Energia έχουμε δημιουργήσει ένα πιο ευγενικό χώρο για συμμετοχή. Κυκλοφόρησε το εργαλείο το 2018, φιλοξενία της Γενικής Συνέλευσης του Συνεταιρισμού και μήνες αργότερα συζητήσαμε την Image Redesign και τη συνεργατική ανάπτυξη της Σχολής του Som Energia, μεταξύ άλλων συμμετοχικών διαδικασιών. Σε λίγους μήνες, περισσότεροι από 3.500 συμμετέχοντες έχουν εγγραφεί, 5 συμμετοχικές διαδικασίες, 3 συνελεύσεις που λειτουργούν και περισσότερες από 1.300 ψήφους στην τελευταία ψηφοφορία της Γενικής Συνέλευσης. - org: Som Energia - n3: - quote: >- - Η ψηφιακή πλατφόρμα Decide Merida ήταν μια ευκαιρία που δεν άνοιξε ποτέ πριν από τους μηχανισμούς συμμετοχής των πολιτών για την εκπόνηση του Δημοτικού Σχεδίου Ανάπτυξης της Μέριδας 2018-2021. Είχαμε περισσότερες από 3.000 αλληλεπιδράσεις πολιτών συμπεριλαμβανομένων προτάσεων, σχολίων, προτάσεις και υποστήριξη αυτής της επίτευξης της υψηλότερης δυνατής συναίνεσης σχετικά με το τι είναι καλύτερο για την πόλη μας. Αναμφίβολα, η πλατφόρμα Decide Me'rida θα συνεχίσει να είναι σύμμαχός μας καθιστώντας Me'rida μια ολοένα και πιο συμμετοχική κοινωνία. - org: Δημοτική Πρόεδρος της Mérida Yucatán, Μεξικό. Δημοτικό Συμβούλιο Mérida Yucatán, Μεξικό - n4: - quote: >- - Αυτό που εκτιμούμε είναι ότι είναι χτισμένο με το μυαλό της δημοκρατίας και επομένως η δημοκρατία είναι μια μεγάλη εστίαση. Οι δημοκρατικές αρχές όπως η λογοδοσία, η ισότητα και η διαφάνεια αποτελούν τον πυρήνα του σχεδιασμού. - org: Πόλη του Ελσίνκι - n5: - quote: >- - Σχεδόν κάθε συμμετοχική διαδικασία που έχει έρθει στο τραπέζι μας, καταφέραμε να την λύσουμε χρησιμοποιώντας τους επιχειρηματικούς κανόνες της Decidim. Ως εργαλείο, είναι πολύ ισχυρό. Ωστόσο, το μέρος που μας φαίνεται ισχυρότερο και πιο σημαντικό είναι η κοινότητά της, τόσο οι προγραμματιστές όσο και εκείνοι που την χρησιμοποιούν για συμμετοχικές διαδικασίες. Η συνύπαρξη με αυτούς μας έκανε να εκτιμήσουμε τις προκλήσεις που συνεπάγεται η εφαρμογή της συμμετοχικής δημοκρατίας στον πραγματικό κόσμο. - org: Ανοικτή κυβέρνηση της Πόλης του Μεξικού - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Συχνές ερωτήσεις - q01: - question: Τι είναι αποχρωματισμός? - answer: >- - Το Decidim είναι μια ελεύθερη συμμετοχική πλατφόρμα δημοκρατίας ανοιχτού κώδικα για τις πόλεις και τους οργανισμούς. Αλλά Decidim είναι κάτι περισσότερο από μια ψηφιακή πλατφόρμα: είναι ένα κοινό ελεύθερο και ανοικτό έργο και υποδομή που περιλαμβάνει κώδικα, τεκμηρίωση, σχεδιασμός, μαθήματα κατάρτισης, ένα νομικό πλαίσιο, συνεργατικές διεπαφές, κοινότητες χρηστών και διευκόλυνσης, και ένα κοινό όραμα. - q02: - question: Ποιος χρησιμοποιεί σήμερα Decidim? - answer: >- - Αυτή τη στιγμή χρησιμοποιείται από πόλεις και οργανισμούς. Στην πραγματικότητα, κάθε ομάδα ανθρώπων μπορεί να το χρησιμοποιήσει, είτε πρόκειται για ΜΚΟ, είτε για πανεπιστήμιο, συνδικαλιστικά, συνεταιρισμό, ένωση γειτονιών κλπ. Ελέγξτε την [πλήρη λίστα με τις τρέχουσες ενεργές περιπτώσεις](/usedby/). - q03: - question: Τι μπορεί να κάνει ένας διαχειριστής Decidim? - answer: >- - Εύκολα ρυθμίσετε συμμετοχικές διαδικασίες Θέλετε να κάνετε ένα στρατηγικό σχέδιο? Ή συζητήστε νέους κανονισμούς? Ή συζητήστε μια νέα πλατεία ή ένα δημόσιο κτίριο για να επιτευχθεί το κοινό καλό? Χάρη στο Decidim θα είστε σε θέση να ρυθμίσετε τους χώρους συμμετοχής (πρωτοβουλίες, συνελεύσεις, επεξεργάζεται ή διαβουλεύσεις), και τις εμπλουτίζει μέσω των πολλαπλών διαθέσιμων στοιχείων (πρόσωπο με πρόσωπο συναντήσεις, έρευνες, προτάσεις, ψηφοφορία, παρακολούθηση των αποτελεσμάτων, σχόλια και πολλά άλλα). - q04: - question: Τι μπορεί ένας συμμετέχων (χρήστης) του Decidim κάνουν? - answer: >- - Το Decidim επιτρέπει σε χιλιάδες ανθρώπους να οργανωθούν δημοκρατικά κάνοντας προτάσεις, συμμετέχοντας σε δημόσιες συνεδριάσεις, προώθηση των συζητήσεων λήψης αποφάσεων, λήψη αποφάσεων μέσω διαφόρων μορφών ψηφοφορίας και παρακολούθηση της εφαρμογής των αποφάσεων. - q05: - question: Έχετε ένα Demo? Θέλω να χρησιμοποιήσω Decidim τώρα, χωρίς να το εγκαταστήσω, για να δούμε πώς λειτουργεί. - answer: 'Ναι, έχουμε ένα [online demo](/demo).' - q06: - question: Πόσο συχνά είναι η πλατφόρμα που ενημερώνεται? - answer: >- - Απελευθερώνουμε μια νέα έκδοση περίπου κάθε μήνα. Δείτε το [ρεκόρ εκδόσεων](https://github.com/decidim/releases). - q07: - question: Τι πρέπει να εγκαταστήσω Decidim? - answer: >- - Η εγκατάσταση του Decidim είναι εύκολη, αλλά χρειάζεστε κάποιες γνώσεις και τεχνικές απαιτήσεις. Δείτε την [τεκμηρίωση για την εγκατάσταση Decidim](https://docs.decidim.org/en/install/). - q08: - question: Πού μπορώ να βρω το οδικό χάρτη του έργου και τα σχεδιαζόμενα χαρακτηριστικά? - answer: Μπορείτε να βρείτε τον [χάρτη πορείας των νέων χαρακτηριστικών του έργου στο GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Τι σημαίνει ότι Decidim είναι δωρεάν, "libre" και ανοιχτού κώδικα?' - answer: >- - Decidim είναι μια πλατφόρμα για τη συμμετοχή των πολιτών από τους ανθρώπους και για τους ανθρώπους. Ο πηγαίος κώδικας του είναι ανοιχτός και μπορεί να ελεγχθεί, να τροποποιηθεί και να ενισχυθεί από οποιονδήποτε. Το λογισμικό Decidim καλύπτεται από την [άδεια AGPL](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Αυτό σημαίνει ότι μπορείτε να το χρησιμοποιήσετε, να το τροποποιήσετε και να αναδιανείμετε τις παράγωγες εκδόσεις του εφόσον τηρείτε την άδεια AGPL. - q10: - question: >- - Έχω ιδέες για νέα χαρακτηριστικά βελτίωσης. Θέλω να έχω μια καλύτερη κατανόηση του έργου. Τι μπορώ να κάνω? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Έχω πολλές αμφιβολίες, όλων των ειδών...όπου μπορώ να τους ρωτήσω ή να τους λύσω? - answer: >- - Ο καλύτερος τρόπος για να λύσετε γρήγορα τις αμφιβολίες σας είναι μέσω της κοινότητας των Μεταδεκτών. Εισάγετε τώρα στη διαδικασία [Φόρουμ Υποστήριξης](https://meta.decidim. rg/processes/supportforum?locale=en) και να δούμε αν η ερώτησή σας υπάρχει ή αν έχει απαντηθεί και αλλιώς εισάγετε για να κάνετε ερωτήσεις. Εάν δεν μπορείτε να επιλύσετε το πρόβλημά σας σε αυτό το χώρο, ίσως ήρθε η ώρα να επικοινωνήσετε μαζί μας μέσω της [φόρμας επικοινωνίας](/contact). - q12: - question: Υπάρχει οποιοδήποτε σεμινάριο για να ξεκινήσετε τη δημιουργία του? - answer: >- - Μπορείτε να ελέγξετε την τελευταία έκδοση του εγχειριδίου διαχείρισης στην ενότητα [Τεκμηρίωση](https://docs.decidim.org). - q13: - question: Ποια είναι η κοινωνική σύμβαση? - answer: >- - Έτσι αποκαλούμε τον Κώδικα Δημοκρατικών Εγγυήσεων και Δημοκρατικής Συνεργασίας. Όλα τα μέλη της κοινότητας πρέπει να προσυπογράψουν την [Κοινωνική Σύμβαση](http://decidim.org/contract). - q14: - question: Ποιες είναι οι διαφορές με το Έργο Πρόξενου / Αποφασίστε Μαδρίτη? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Ποια είναι η κοινότητα των Μεταδεκτών? - answer: >- - [Metadecidim](http://meta.decidim.org) είναι η κοινότητα Decidim που συνεργάζεται στο σχεδιασμό της πλατφόρμας και στην κατασκευή του έργου Decidim. Συναντιόμαστε τακτικά μέσω του [SOM (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) και [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Πηγαίνετε στο [meta.decidim.org](http://meta.decidim.org) για να παρακολουθήσετε στενά τις κλήσεις και αν θέλετε να συμμετάσχετε στην κοινότητα. - q16: - question: Μπορώ να συμμετάσχω στην κοινότητα Metadecidim ακόμα κι αν δεν ζω στη Βαρκελώνη? - answer: >- - Decidim είναι ένα έργο που γεννήθηκε στη Βαρκελώνη και γι 'αυτό υπάρχει ένα ισχυρό εδαφικό δεσμό με αυτή την πόλη. Αλλά ναι, μπορείτε να συνεργαστείτε online, μέσω συμμετοχικών διαδικασιών, συζητήσεων, κλπ.... that we provide in Metadecidim. Αν και μπορεί να θέλετε να έρθετε στη Βαρκελώνη κάποια στιγμή :) - q17: - question: Θέλουμε να κάνουμε μια επίσημη συμφωνία συνεργασίας. Υπάρχουν πρότυπα που μπορούμε να χρησιμοποιήσουμε? - answer: Ναι, έχουμε πρότυπα για να επισημοποιήσουμε τις συμφωνίες συνεργασίας. [Παρακαλούμε επικοινωνήστε μαζί μας](/contact). - q18: - question: Τι είδους μέλη που αποδέχεστε στην κοινότητα Μεταδεκτικού? - answer: Όποιος έχει καλή πίστη και σωστή στάση απέναντι στη δημοκρατική συνεργασία. - q19: - question: Έχετε παρέχει δωρεάν εγκατάσταση σε μη κερδοσκοπικούς οργανισμούς? - answer: >- - Ναι, μόνο αν είστε ένας οργανισμός με έδρα τη Βαρκελώνη. Στείλτε μας ένα μήνυμα και θα σας βοηθήσει η Διεύθυνση Έρευνας, Ανάπτυξη και καινοτομία του Χώρου Δικαιωμάτων Ιθαγένειας, Συμμετοχής και Διαφάνειας του Δημοτικού Συμβουλίου της Βαρκελώνης. - q20: - question: Υποστηρίζονται ιδρύματα? - answer: >- - Ναι, αλλά πρέπει να είστε υπομονετικοί. Υπάρχουν πολλά θεσμικά όργανα που θέλουν να χρησιμοποιήσουν το Decidim αυτή τη στιγμή και τους βοηθούμε βήμα προς βήμα. [Επικοινωνήστε μαζί μας](/contact) για οποιαδήποτε ερώτηση και θα σας απαντήσουμε το συντομότερο δυνατό. - q21: - question: Ποια είναι η ένωση Decidim? - answer: >- - Η "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) είναι μια δημοκρατική ένωση για τη διακυβέρνηση της κοινότητας Decidim. - q22: - question: Πώς μπορώ να πάρω περισσότερες πληροφορίες σχετικά με την Ένωση Decidim? - answer: >- - Στη [γενική συνέλευση του συνδέσμου Decidim](https://meta.decidim. rg/συνελεύσεις/γενική συνέλευση-σύνδεση) μπορείτε να βρείτε περισσότερες πληροφορίες abous μας, ακολουθήστε τη δραστηριότητα των συνεδριάσεων και να ελέγξετε τις σχετικές πληροφορίες (καταστατικά, νομικές συμφωνίες, τους εσωτερικούς κανονισμούς) - q23: - question: Πώς μπορώ να γίνω μέλος της Ένωσης Decidim? - answer: >- - Τώρα οι άνθρωποι που συμμετέχουν στο έργο μπορούν να είναι συνεργάτες. [Εδώ εξηγούμε λεπτομερώς πώς πρέπει να το κάνετε](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: When was the Decidim Association bornγεννηθεί? - answer: >- - Το Associacio [Decidim ιδρύθηκε στις 16 Φεβρουαρίου 2019 σε μια εξαιρετική συνέλευση της κοινότητας](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), με την έγκριση του καταστατικού του οργανισμού. + title: Στοιχεία + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Δωρεάν και ασφαλής τεχνολογία.
Με όλες τις δημοκρατικές εγγυήσεις.
Ο επαναπρογραμματισμός της δημοκρατίας είναι πλέον δυνατός με το Decidim. + subheading: Decidim είναι μια ψηφιακή πλατφόρμα
για τη συμμετοχή των πολιτών + subhero: + cta: Explore all features + feature1: Στρατηγικός σχεδιασμός
+ feature2: Συμμετοχικός
προϋπολογισμός + feature3: Πρωτοβουλίες και
διαβουλεύσεις πολιτών + feature4: Συμμετοχικές
διαδικασίες + feature5: Συνελεύσεις + feature6: Δικτυωμένη
επικοινωνία + intro: Ο Decidim βοηθά τους πολίτες, τους οργανισμούς και τους δημόσιους θεσμούς να αυτοοργανώνονται δημοκρατικά σε κάθε κλίμακα. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Χρησιμοποιούν ήδη Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Ιστολόγιο + close_menu: Close menu + code: Κωδικός + community: Κοινότητα + contact: Επικοινωνία + contract: Κοινωνική Σύμβαση + demo: Επίδειξη + docs: + path: https://docs.decidim.org/ + title: Τεκμηρίωση + faqs: Συχνές ερωτήσεις + features: Χαρακτηριστικά + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Πρόσθετα + partners: Συνεταιριστικές οντότητες + partnership-policy: Partnership policy + press: Τύπος + privacy-policy: Privacy policy + text: Πλοήγηση + trademark: Trademark policy + use-cases: Use cases + used_by: Απομίμηση σε χρήση + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/el" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Δημαρχείο Βαρκελώνης (2015-2019) + quote: Χάρη στο Decidim, στη Βαρκελώνη καταφέραμε να συνπαράγουμε ένα στρατηγικό σχέδιο πόλης μαζί με τους πολίτες. Το 2016 εγκαινιάσαμε το Δημοτικό Σχέδιο Δράσης με τη μορφή συμμετοχικής διαδικασίας μέσω του Decidim Barcelona. Επί του παρόντος, αυτό το σχέδιο περιλαμβάνει σχεδόν 7 χιλιάδες προτάσεις πολιτών. Ένα από τα πλεονεκτήματα της χρήσης αυτής της πλατφόρμας είναι ότι μπορείτε να παρακολουθείτε ανά πάσα στιγμή την κατάσταση εφαρμογής των εγκεκριμένων προτάσεων. + n2: + org: Som Energia + quote: Με την εφαρμογή του Decidim στην Som Energia έχουμε δημιουργήσει ένα πιο ευγενικό χώρο για συμμετοχή. Κυκλοφόρησε το εργαλείο το 2018, φιλοξενία της Γενικής Συνέλευσης του Συνεταιρισμού και μήνες αργότερα συζητήσαμε την Image Redesign και τη συνεργατική ανάπτυξη της Σχολής του Som Energia, μεταξύ άλλων συμμετοχικών διαδικασιών. Σε λίγους μήνες, περισσότεροι από 3.500 συμμετέχοντες έχουν εγγραφεί, 5 συμμετοχικές διαδικασίες, 3 συνελεύσεις που λειτουργούν και περισσότερες από 1.300 ψήφους στην τελευταία ψηφοφορία της Γενικής Συνέλευσης. + n3: + org: Δημοτική Πρόεδρος της Mérida Yucatán, Μεξικό. Δημοτικό Συμβούλιο Mérida Yucatán, Μεξικό + quote: Η ψηφιακή πλατφόρμα Decide Merida ήταν μια ευκαιρία που δεν άνοιξε ποτέ πριν από τους μηχανισμούς συμμετοχής των πολιτών για την εκπόνηση του Δημοτικού Σχεδίου Ανάπτυξης της Μέριδας 2018-2021. Είχαμε περισσότερες από 3.000 αλληλεπιδράσεις πολιτών συμπεριλαμβανομένων προτάσεων, σχολίων, προτάσεις και υποστήριξη αυτής της επίτευξης της υψηλότερης δυνατής συναίνεσης σχετικά με το τι είναι καλύτερο για την πόλη μας. Αναμφίβολα, η πλατφόρμα Decide Me'rida θα συνεχίσει να είναι σύμμαχός μας καθιστώντας Me'rida μια ολοένα και πιο συμμετοχική κοινωνία. + n4: + org: Πόλη του Ελσίνκι + quote: Αυτό που εκτιμούμε είναι ότι είναι χτισμένο με το μυαλό της δημοκρατίας και επομένως η δημοκρατία είναι μια μεγάλη εστίαση. Οι δημοκρατικές αρχές όπως η λογοδοσία, η ισότητα και η διαφάνεια αποτελούν τον πυρήνα του σχεδιασμού. + n5: + org: Ανοικτή κυβέρνηση της Πόλης του Μεξικού + quote: Σχεδόν κάθε συμμετοχική διαδικασία που έχει έρθει στο τραπέζι μας, καταφέραμε να την λύσουμε χρησιμοποιώντας τους επιχειρηματικούς κανόνες της Decidim. Ως εργαλείο, είναι πολύ ισχυρό. Ωστόσο, το μέρος που μας φαίνεται ισχυρότερο και πιο σημαντικό είναι η κοινότητά της, τόσο οι προγραμματιστές όσο και εκείνοι που την χρησιμοποιούν για συμμετοχικές διαδικασίες. Η συνύπαρξη με αυτούς μας έκανε να εκτιμήσουμε τις προκλήσεις που συνεπάγεται η εφαρμογή της συμμετοχικής δημοκρατίας στον πραγματικό κόσμο. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Ευχαριστούμε που επικοινωνήσατε μαζί μας, θα επικοινωνήσουμε μαζί σας σύντομα. + title: Ευχαριστούμε για το email σας + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/en.yml b/locales/en.yml index 40983565..16151d08 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -1,826 +1,593 @@ +--- en: - path: '' - activeLang: 'English' - - nav: - text: 'Navigation' - demo: 'Demo' - community: 'Community' - contract: 'Social Contract' - code: 'Code' - docs: - title: 'Documentation' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Features' - faqs: 'FAQs' - contact: 'Contact' - used_by: 'Decidim in use' - partners: 'Cooperating entities' - modules: 'Modules' - press: 'Press' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' - + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: + - Support us + - Contact us + - Our assembly + - Press + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Join our call' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: - 'DecidimFest is an intense 3-day program of activities devoted to the Decidim project, - participatory democracy and open source tools for collective intelligence in the era of - Global Democracy.' - - index: - hero: - heading: 'Free Open-Source participatory democracy for cities and organizations' - subheading: 'Decidim is a digital platform
for citizen participation' - intro: 'Free and safe technology.
With all democratic - guarantees.
Reprogramming democracy is now possible with Decidim.' - video: - play: 'Play video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Close video' - subhero: - intro: - 'Decidim helps citizens, organizations and public institutions self-organize - democratically at every scale.' - feature1: 'Strategic
planning' - feature2: 'Participatory
budgeting' - feature3: 'Initiatives and
citizen consultations' - feature4: 'Participative
processes' - feature5: 'Assemblies' - feature6: 'Networked
communication' - used_by: - title: 'They are already using Decidim' - cta: 'See all' - cta: - title: 'start using Decidim today' - button: - code: 'Code on Github' - - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - - demo: - title: Online Demo - p1: Play around and explore freely the Decidim platform with our online demo. - p2: Decidim is up and running on several instances that you can visit and explore, Decidim Barcelona at Barcelona City or you can visit the sites of Gavà and L'Hospitalet. But these are real instances where you can't really play around freely, as you might not be a citizen of those municipalities, and you can't explore those sites as an admin. - p3: If you want to go further you are welcome to test Decidim on our Decidim Demo Site (courtesy of our developers at aLabs). Enter the demo site and freely explore the potential of Decidim and its features. - p4: You can log in as Admin (username "admin@example.org" and password "decidim123456"). - button: Online demo - + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, our community' - subtitle: 'A democratic community that manages the Decidim project in all its dimensions' - intro: 'Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform.' - cta: 'Get started' - features: - title: 'Propose new features' - subtitle: 'To design and develop Decidim among all' - text: 'You can create debates about the future of Decidim or propose new features or improvements. Proposals can receive endorsements and comments, to show, for example, the interest they arouse in the community and value their development. Proposals that have a sponsor (such as a city council or any other entity), responsible for seeking and providing the necessary resources to carry out their development, will be useful for the project.' - cta: 'Enter and participate now' - bug: - title: 'Report a bug' - subtitle: 'Collaboration for progressive improvement' - text: 'Each new release of Decidim incorporates new features and usability improvements, but not everything works at first and errors may appear. Here you can report bugs you find and help the developers to fix them quickly.' - cta: 'Enter and participate now' - img_alt: 'Decidim Community Photo at Metadecidim Meeting 2016' - timeline: - title: 'Collaborative design of functionalities' - step1: - title: 'New proposal' - text: 'Functional description' - step2: - title: 'Validated proposal' - text: 'Technical and technopolitical validation' - step3: - title: 'Planned proposal' - text: 'Resources for development (shared or not)' - step4: - title: 'Issue' - text: 'Technical description' - step5: - title: 'Pull request' - text: 'Developed code' - step6: - title: 'Funcionality done' - text: 'Avaliable on the next version' - + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Go to Metadecidim + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform. + subtitle: A democratic community that manages the Decidim project in all its dimensions + title: Metadecidim, our community contact: - title: Contact us - bot_field: "Don’t fill this out if you're human:" - name: Name - entity: Entity + bot_field: 'Don’t fill this out if you''re human:' email: Email - subject: Subject message: Message + name: Name privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically - collect the following information: name, entity, email address and the content of the User message in order - to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for - statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, - preventing this subsequent processing from identifying Users individually.

- send: Send - - thanks: - title: Thanks for your email - message: Thank you for contacting us, we will get back to you soon. - + message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" + send: Send message + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contact Decidim + demo: + button: Online demo + p1: Play around and explore freely the Decidim platform with our online demo. + strong: Try Online + title: Online Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: FAQs + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Features' - intro: - '

You can use Decidim in a public or private organisation, with hundreds - or thousands of potential participants, such as a city council, an - association, a university, an NGO, a trade union, a neighbourhood collective - or a cooperative...

Thanks to Decidim you will be able to configure - spaces for participation (initiatives, assemblies, processes or - consultations) and enrich them through the multiple available components - (face-to-face meetings, surveys, proposals, voting, follow-up of results, - comments and many more).

' - list: - n1: - title: 'Participatory
budgets' - content: - 'It analyses the submitted proposals and promotes a new way of distributing - common resources.' - n2: - title: 'Citizen’s initiatives
and consultations' - content: - 'Empower your community through citizen initiatives. Promote relevant voting - through consultations.' - n3: - title: 'The power
of a political network' - content: - 'It takes deliberation, collaboration and decision to a massive dimension, - with thousands of people participating in real time.' - n4: - title: 'A democratic
and flexible system' - content: - 'Thanks to its modular architecture and scalable logic, you can configure a - powerful system of democratic governance in all kinds of organizations.' - n5: - title: 'We take democracy
very seriously' - content: - 'Decidim ensures transparency, traceability and integrity of information - like never before. It provides security, privacy and confidentiality to all - participants.' - n6: - title: "It's yours.
Share it. Improve it." - content: - 'A platform designed entirely with free software, open and collaborative - content thanks to the community Metadecidim.' - cta: - features: 'See all features' - values: 'Go to social contract' + intro: "

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

" page: feature1: - title: 'Participatory processes' - subtitle: 'to democratize common issues, step by step' - text: >- - Processes is a space that allows to create, activate/deactivate, and - manage various participatory processes. These are distinguished from other - spaces by being structured in different phases within which all of the - components can be incorporated. Examples of participatory processes are: - an election process for members of a committee, participatory budgeting, a - strategic planning process, the collaborative writing of a regulation or - norm, the design of an urban space or the production of a public policy - plan. - feature2: - title: 'Assemblies' - subtitle: 'the power of collective self-organization' - text: >- - Is a space that offers the possibility of setting decision-making bodies - or groups (councils, working groups, committees, etc.) that meet up - periodically, detailing their composition, listing and geolocating their - meetings, and allowing to take part in them (for instance: attending if - the seating capacity and nature of the assembly so permits, adding items - to the agenda, or commenting on the proposals and decisions taken by that - body). - feature3: - title: 'Consultations' - subtitle: 'the right to decide with all democratic guarantees' - text: >- - Consultations is a space that makes it possible to coordinate - referendums, trigger discussions and debates, get voting results - published; it can be connected to a secure e-voting system. - feature4: - title: 'Initiatives' - subtitle: "setting everyone's agenda, within everyone's reach" - text: >- - Initiatives is a space that allows participants to collaboratively create - initiatives, define their trajectory and goals, gather endorsements, - discuss, debate and disseminate initiatives and define meeting points - where signatures can be collected from attendees or debates opened to - other members of the organization. - feature5: - title: 'Proposals' - subtitle: 'your ideas in detail' - text: >- - The proposals component allows the user to create a proposal using a - creation wizard, compare it with the existing ones, publish it on the - platform and include additional information such as geolocation - or attached documents and images. This component also allows you to - navigate, filter and interact with a set of proposals. In addition, with - the proposal-incubator you can create collaborative proposals. - feature6: - title: 'Voting' - subtitle: 'decide your vote' - text: >- - The voting component offers organizations the possibility of activating - different voting or support systems around proposals: unlimited, limited - to a given threshold, weighted, cost-based, etc. - feature7: - title: 'Results' - subtitle: 'no proposal without an answer' - text: >- - The results component is used to turn proposals into results and give - official responses concerning their acceptance or rejection, merging - various proposals into a single result. - feature8: - title: 'Accountability' - subtitle: 'transparency from beginning to end' - text: >- - The accountability component offers the possibility of subdividing - results into projects, defining and applying progress statuses around - their implementation, as well as displaying the extent of the results’ - implementation grouped by categories and scopes. - feature9: - title: 'Meetings' - subtitle: 'to meet and not miss anything' - text: >- - The meeting component offers organizations and participants the - opportunity to convene meetings, determine their location and time, - register and limit attendees, define the structure and content of the - meeting as well as publishing the minutes, and the resulting proposals. + subtitle: To democratize common issues, step by step + text: 'Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan.' + title: Participatory processes feature10: - title: 'Participatory texts' - subtitle: 'to analyze, synthesize, and build in common' - text: >- - The participatory texts component can be used to convert lengthy text - documents into various proposals or results and, vice versa, to compose - and display a unified text based on a collection of proposals or results. + subtitle: To analyze, synthesize, and build in common + text: Can be used to convert long text documents into several proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + title: Participatory texts feature11: - title: 'Conference' - subtitle: 'Where big events are premiered' - text: >- - The conference component allows an organization to create a website for a - big event by joining up a series predefined meetings (chats, workshops - etc.), putting together a unified program and managing attendees. + subtitle: Where big events are premiered + text: Create a website for a big event. Unify the program by joining up a series predefined meetings (chats, workshops, etc.), and manage attendees. + title: Conference feature12: - title: 'Surveys' - subtitle: 'Because the opinion of your community matters' - text: >- - The surveys component can be used to design and publish surveys and to - display and download their results. + subtitle: Because the opinion of your community matters + text: Design and publish surveys. Display and download results. + title: Surveys feature13: - title: 'Sortition' - subtitle: 'Equality and the justice of randomness' - text: >- - The sortition component allows to select a number of proposals (e.g. - candidates for a jury) with random, yet reproducible, procedures that - guarantees non-biased and uniform distributions. + subtitle: Equality and the justice of randomness + text: Allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + title: Sortition feature14: - title: 'Comments' - subtitle: 'Building a collective intelligence' - text: >- - The comments component enables users to add comments, to identify the - comment as being in favor, against or neutral in relation to the commented - object, to vote comments, respond to them and to receive notifications - about responses. + subtitle: Building a collective intelligence + text: Enables users to add comments, to value them in favour, against or neutral, vote them, answer and receive notifications about responses. + title: Comments feature15: - title: 'Pages and blogs' - subtitle: 'Your community, informed and up to date' - text: >- - The pages component is used to create informative pages with rich text - formatting, embedded pictures and videos. The blog component makes - possible the creation of posts or news, and to navigate them - chronologically. + subtitle: Your community, informed and up to date + text: Create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + title: Pages and blogs feature16: - title: 'Notifications' - subtitle: 'Personalized information on interesting contents' - text: >- - Decidim enables you to track any space or component to receive updates - every time they happen. + subtitle: Personalised information on interesting content + text: Decidim enables you to track any space or component so that you can receive updates whenever they happen. + title: Notifications feature17: - title: 'Newsletter' - subtitle: 'Simple but powerful' - text: >- - The newsletter component makes possible to send emails to everyone - registered in the platform or, more selectively, to those who participate - in a specific space. + subtitle: Simple but powerful + text: Send emails to everyone registered in the platform or to those who participate in a specific space. + title: Newsletter + feature2: + subtitle: The power of collective self-organization + text: Makes it possible to set up decision-making bodies or groups (councils, working groups, commissions, etc.) that meet regularly, detailing their composition, listing and geolocating their meetings. It allows participation in them, for example, attending in person or online, adding issues to the agenda, or commenting on the proposals and decisions taken by that body. + title: Assemblies + feature3: + subtitle: The right to decide with all democratic guarantees + text: Makes it possible to coordinate referendums, trigger discussions and debates, get voting results published and connect to a secure e-voting system. + title: Votings + feature4: + subtitle: Setting everyone's agenda, within everyone's reach + text: Participants can create collaborative initiatives, define their path and goals, gather endorsements, discuss, debate and disseminate initiatives, set meeting points where signatures can be collected from attendees or debates open to other members of the organisation. + title: Initiatives + feature5: + subtitle: Your ideas in detail + text: Create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. + title: Proposals + feature6: + subtitle: Decide your choice + text: 'Offers organisations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc. Backed by secure and encrypted e-voting technology.' + title: Voting + feature7: + subtitle: No proposal without an answer + text: Turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. + title: Results + feature8: + subtitle: End-to-end transparency + text: It offers the possibility to subdivide results into projects, to define and apply progress states around their implementation, as well as to show the degree of achievement of results grouped by categories and scopes. + title: Accountability + feature9: + subtitle: To meet and not miss anything + text: The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + title: Meetings + subtitle: For democratic organizations and collectives of any size and kind. + title: Features type1: - title: 'Spaces for participation' - subtitle: 'For participants to make proposals and make decisions' + title: Spaces for participation type2: - title: 'Components' - subtitle: 'For participants and spaces to interact' - other: - subtitle: - 'Dare to combine the components. Design and deploy a powerful democratic - system in an easy way and adapt it to your organization’s needs' - cta: - title: 'Discover how Decidim works in depth' - button: 'Functions and features' - - partners: - notice: The cooperating entities logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. - - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Name - type: - community: Community - auth: Authorization - official: Official - - used_by: - explain: These cities, regions and organizations are already using Decidim - type: - city: Cities - region: Regions - organizations: Organizations - - testimonials: - n1: - quote: >- - Thanks to Decidim, in Barcelona we have managed to co-produce a strategic - city plan together with the citizens. In 2016 we inaugurated the Municipal - Action Plan in the form of a participatory process through Decidim - Barcelona. Currently, this plan includes almost 7 thousand citizen - proposals. One of the advantages of using this platform is that you can - monitor at all times the state of implementation of the approved - proposals. - org: Barcelona City Hall (2015-2019) - n2: - quote: >- - With the implementation of Decidim in Som Energia we have generated a - kinder space for participation. We released the tool in 2018, hosting the - General Assembly of the Cooperative and months later we debated the Image - Redesign and collaborative development of the School of Som Energia, among - other participatory processes. In a few months, more than 3,500 - participant people have registered, 5 participatory processes, 3 - assemblies operating and more than 1,300 votes in the last General - Assembly vote. - org: Som Energia - n3: - quote: >- - The Decide Mérida digital platform was an opportunity that opened as never - before the mechanisms of citizen participation for the elaboration of the - Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen - interactions including proposals, comments, suggestions and support that - achieving the highest consensus possible about what is best for our city. - Undoubtedly, the Decide Mérida platform will continue to be our ally in making - Mérida an increasingly participative society. - org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico - n4: - quote: >- - What we appreciate is that it’s built with democracy in mind and therefore - democracy is a big focus. Democratic principles such as accountability, equality - and transparency are in the core of the design. - org: City of Helsinki - n5: - quote: >- - Almost every participatory process that has come to our table, we have been able - to solve it using Decidim's business rules. As a tool, it is a very strong one. - However, the part that seems strongest and most important to us is its community, - both developers and those who use it for participatory processes. Coexisting with - them has made us appreciate the challenges involved in implementing participatory - democracy in the real world. - org: Open Government of Mexico City - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim - these public spaces for us. Open platforms such as Decidim do exactly that. Is not - only that is open source so other people can fork it, reuse it and build a process. - It also has these values that we want to reflect in our society encoded in the way - it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication - and eDemocracy unit at the Joint Research Centre, the European Commission's science - and knowledge service. An analysis of the needs of the Conference and which tools fit - those, lead to choosing the open source tool Decidim for its technical maturity, broad - community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Frequently asked questions - q01: - question: What is Decidim? - answer: >- - Decidim is a Free Open-Source participatory democracy platform for cities and - organizations. But Decidim is more than a digital platform: it’s a common's - free and open project and infrastructure involving code, documentation, - design, training courses, a legal framework, collaborative interfaces, user - and facilitation communities, and a common vision. - q02: - question: Who is currently using Decidim? - answer: >- - It is currently used by cities and organizations. In fact, any group of people - can use it, whether it is an NGO, university, trade union, cooperative, - neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). - q03: - question: What can a Decidim administrator do? - answer: >- - Easily configure participatory processes Do you want to make a strategic plan? - Or discuss new regulations? Or discuss a new square or a public building to - achieve the common good? Thanks to Decidim you will be able to configure - participation spaces (initiatives, assemblies, processes or consultations) and - enrich them through the multiple available components (face-to-face meetings, - surveys, proposals, voting, follow-up of results, comments and many more). - q04: - question: What can a participant (user) of Decidim do? - answer: >- - Decidim makes it possible for thousands of people to organize themselves - democratically by making proposals, attending public meetings, fostering - decision-making discussions, deciding through different forms of voting and - monitoring the implementation of decisions. - q05: - question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. - answer: 'Yes, we have an [online demo](/demo).' - q06: - question: How often is the platform updated? - answer: >- - We release a new version approximately every month. - See the [record of versions](https://github.com/decidim/decidim/releases). - q07: - question: What do I need to install Decidim? - answer: >- - Installing Decidim is easy but you need some knowledge and technical requirements. - See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). - q08: - question: Where can I find the project roadmap and the planned features? - answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'What does it mean that Decidim is for free, "libre" and open source?' - answer: >- - Decidim is a platform for citizen participation made by the people and for - people. Its source code is open and can be inspected, modified, and enhanced - by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). - That means that you can use it, modify it and redistribute derived - versions of it as long as you respect the AGPL license. - q10: - question: >- - I have ideas for new improvement features. I want to have a better - understanding of the project. What can I do? - answer: >- - You can collaborate in multiple ways. One of them is through the - [Metadecidim](http://meta.decidim.org) community. If you want to propose new - features, [go here](https://meta.decidim.org/processes/roadmap). If you have - detected errors and want to notify them, [go to this - process](https://meta.decidim.org/processes/bug-report?locale=es). If you want - to actively participate in the Metadecidim community, you can attend the - monthly [Metadecidim Operative - Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a - participant of the community and participate with us. If your thing is the - code, [come to Github](https://github.com/decidim/decidim). If you are a - researcher, you might be interested in coming to the [LAB Metadecidim - Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: I have many doubts, of all kinds...where can I ask them or solve them? - answer: >- - The best way to solve your doubts quickly is through the Metadecidim - community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) - and see if your question exists or if it has been answered and otherwise enter to ask - questions. If you can't resolve your problem in this space, maybe it's time to - contact us through the [contact form](/contact). - q12: - question: Is there any tutorial to start setting it up? - answer: >- - You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). - q13: - question: What is the Social Contract? - answer: >- - That's how we call our Code of Democratic Guarantees and Democratic Collaboration. - All members of the community must endorse the [Social Contract](http://decidim.org/contract). - q14: - question: What are the differences with Consul Project / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, - etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try - to answer this question. - q15: - question: What is the Metadecidim community? - answer: >- - [Metadecidim](http://meta.decidim.org) is the community of Decidim that - collaborates in the design of the platform and the construction of the Decidim - project. We meet regularly through the [SOM (Metadecidim Operative - Sessions)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) and - the [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Go - to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and - if you want to join the community. We'd love to ;-) - q16: - question: Can I join the Metadecidim community even if I don't live in Barcelona? - answer: >- - Decidim is a project that was born in Barcelona and that is why there is a - strong territorial bond with this city. But yes, you can collaborate online, - through participatory processes, debates, etc .... that we provide in - Metadecidim. Although you might want to come to Barcelona sometime :) - q17: - question: We want to make a formal collaboration agreement. Are there any templates we can use? - answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). - q18: - question: What kind of members you accept into the Metadecidim community? - answer: Anybody who has good faith and a correct attitude towards democratic collaboration. - q19: - question: Do you provide free installation to non-profit organizations? - answer: >- - Yes, only if you are a Barcelona based organization. Send us a message and you - will be helped by the Directorate of Research, Development and Innovation of - the Area of Citizenship Rights, Participation and Transparency of Barcelona - City Council. - q20: - question: Do you support institutions? - answer: >- - Yes, but you have to be patient. There are a lot of institutions that want to - use Decidim right now and we are helping them step by step. - [Contact us](/contact) for any question and we will answer you as - soon as possible. - q21: - question: What is the Decidim Association? - answer: >- - The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic - association for the governance of the Decidim community. - q22: - question: How can I get more information about the Decidim Association? - answer: >- - In the [general assembly of the Decidim - Association](https://meta.decidim.org/assemblies/general-assembly-association) - you can find more info abous us, follow the activity of the meetings and check - relevant information (statutes, legal agreements, the internal regulations) - q23: - question: How can I become a member of the Decidim Association? - answer: >- - Now the people involved in the project can be partners. [Here we explain in - detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: When was the Decidim Association born? - answer: >- - The Associació [Decidim is founded on February 16, 2019 in an extraordinary - assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), - with the approval of the organization statutes. - + title: Components + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Free/libre, open and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim. + subheading: Decidim is a digital platform for citizen participation + subhero: + cta: Explore all features + feature1: Strategic planning + feature2: Participatory processes + feature3: Assemblies + feature4: Initiatives and citizen consultations + feature5: Participatory budgeting + feature6: Networked communication + intro: Decidim helps citizens, organizations and public institutions self-organize democratically at every scale. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Already using Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available - through the web domain https://decidim.org/ (hereinafter, the "Website"), - domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number - G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and - technology, consisting in a free open-source participatory democracy platform for cities and organizations, and - the management of the Decidim community generated around the world from our collaborative technology allowing - the development of citizen and associative projects with greater social participation. You may freely test the - Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern - the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on - Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or - contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the - terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, - in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will - refrain from using the Website or its contents for illegal purposes, or for purposes that go against public - order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website - and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, - modify, distribute, publicly display or make available to the public the Website or any of its content or any - modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or - indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal - Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, - trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and - databases are the property of Decidim or its licensors and are protected by national and international laws. - Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public - communication, distribution, modification, transformation, elimination, manipulation and any other use, - including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of - all or part of this Website or any of its contents, is expressly prohibited without the prior express written - authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of - a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the - accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, - pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such - content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content - that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the - aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures - or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any - incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best - efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including - those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the - absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

-

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of - viruses nor for security errors neither for the damages that may be caused to your devices or to the files or - documents stored in such devices for the access and/or connection to the Website, neither for the damages caused - to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable - for the breach of your obligations You accept when accessing this Website which are contained in this Legal - Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, - copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third - party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other - text of contractual nature applicable to this Website without previous notice. Such modifications shall be - effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the - services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such - termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an - email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is - governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising - from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Code + community: Community + contact: Contact + contract: Social Contract + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentation + faqs: FAQs + features: Features + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Modules + partners: Partners + partnership-policy: Partnership policy + press: Press + privacy-policy: Privacy policy + text: Navigation + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in use + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: '' + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of - this website, available through the web domain https://decidim.org/ - (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of - the Website (“You/r”, the “User”).

Decidim is committed to protecting the - privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of - personal data collected through the Website, including the demo of our free open-source participatory democracy - platform, as well as the processing of data of individuals associated with Decidim - and the management of the Decidim community, either on this Website or on other - platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts - together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when - tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to - track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address - and user agent to the server, so that's what they use, generating an identifier that changes daily using the - visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a - rotating salt. This generates a random string of letters and numbers that is used to calculate the number of - unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, - databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the - possibility of linking visitor information from one day to the next. In this way, no personal user data is - collected while browsing our website, for more information about the data processing by Plausible Analytics, you - can visit their website at https://plausible.io/privacy-focused-web-analytics

-

b. Data collected from our Demo

The access to the Decidim platform - demo, available through the Website in the URL https://try.decidim.org/ - is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features - and capabilities of the Decidim platform by the users.

Only a session cookie - ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. - This cookie is strictly necessary for the technical functionality of detecting the session in the Website in - order to ensure the connection through http protocols and to keep the User's session and Web Site services - available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie - consent requirement issued by the European Data Protection Authority.

c. Data collected from contact - forms, emails or other communication means

When people contact Us by the contact form, email or similar - communication means, we will automatically collect the following information: name, entity, email address and - the content of the User message in order to attend your comments, requests, suggestions, etc.

-

Additionally, we may process this data for statistical studies through pseudonymization and even - anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users - individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users - and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own - terms of use and privacy policies.

Notwithstanding, Decidim may process - User's personal data collected from these platforms for the management of the community projects developed in - those platforms respectively, in particular these personal data may consist in connection data to these - platforms, User profile on the platform, and the content of the comments and remarks that the User may - contribute to the Decidim projects from time to time. Please note that this - information may be public and, consequently, accessible and visible to other Users.

e. Data collected - from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, - promoting a working group or community days, as well as contributing to the code or documentation of our free - open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community - through the realization of any of the above activities. To do so, you must complete a form to submit your - application, which will be evaluated by the Decidim Coordination Committee.

-

The processing of Decidim members' personal data is carried out for the purpose - of managing the aforementioned projects and activities in which the associate member participates, accounting - management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's - principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users - and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of - the Website, in order to provide them all the information about Decidim and its - technology, projects and activities, as well as to allow them participating in the projects and activities - carried out by Decidim.
  • We may also process your personal data when you - give us express consent to make publications about Decidim projects and activities - in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis - and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process - your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, - implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to - protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may - process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are - subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated - otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data - as follows:

  • We can give access to your personal data to our IT service providers under contracts - for the provision of services in favour of Decidim. Among the others, Netlify, - Inc., an American entity who provide to Us web hosting services. Decidim has - subscribed with Netlify a Data Processing - Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in - order to ensure that your personal data are processed with all adequate guarantees. More information about how - Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data - available to the public administration or authorities to investigate suspicions of fraud, harassment or other - violations of any law, rule or regulation, or the policies of the website.

For more information - about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have - collected them, even to comply with legal, accounting or information requirements.

To determine the - appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal - data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for - which we process your personal data, if we can achieve those purposes through other means and the applicable - legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the - confidentiality and integrity of your data and protection against unauthorised access, modification or - destruction.

section-7: - title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the - right to:

  • Request access to your personal data (commonly known as a "data subject access - request"). This enables you to receive a copy of the personal data we hold about you and to check that we are - lawfully processing it.
  • Request correction of the personal data that we hold about you. This - enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify - the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This - enables you to ask us to delete or remove personal data where there is no good reason for us continuing to - process it. You also have the right to ask us to delete or remove your personal data where you have successfully - exercised your right to object to processing (see below), where we may have processed your information - unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we - may not always be able to comply with your request of erasure for specific legal reasons which will be notified - to you, if applicable, at the time of your request.
  • Object to processing of your personal data - where we are relying on a legitimate interest (or those of a third party) and there is something about your - particular situation which makes you want to object to processing on this ground as you feel it impacts on your - fundamental rights and freedoms. You also have the right to object where we are processing your personal data - for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to - process your information which override your rights and freedoms.
  • Request restriction of - processing of your personal data. This enables you to ask us to suspend the processing of your personal data - in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data - is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer - require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of - your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the - transfer of your personal data to you or to a third party (right to data portability). We will provide to - you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable - format. Note that this right only applies to automated information which you initially provided consent for us - to use or where we used the information to perform a contract with you.
  • Withdraw consent at any - time where we are relying on consent to process your personal data. However, this will not affect the - lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may - not be able to provide certain products or services to you. We will advise you if this is the case at the time - you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to - the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de - Datos), C/. Jorge Juan, 6, 28001 Madrid, - Spain. + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' + title: Your rights section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear - notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our - services after such update, you will be deemed to accept the new terms. If you do not accept the update, please - terminate your account or notify us and we will terminate your Account and remove any of your personal data - (except as required to be maintained for legal purposes), and you will not be able to continue to use our - services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed - by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Barcelona City Hall (2015-2019) + quote: Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. + n2: + org: Som Energia + quote: With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. + n3: + org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico + quote: The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. + n4: + org: City of Helsinki + quote: What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. + n5: + org: Open Government of Mexico City + quote: Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Thank you for contacting us, we will get back to you soon. + title: Thanks for your email + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/es.yml b/locales/es.yml index 142fc2ad..ead60eb2 100644 --- a/locales/es.yml +++ b/locales/es.yml @@ -1,448 +1,589 @@ +--- es: - path: '/es' - activeLang: 'Castellano' - nav: - text: 'Navegación' - demo: 'Demo' - community: 'Comunidad' - contract: 'Contrato social' - code: 'Código' - docs: - title: 'Documentación' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Funcionalidades' - faqs: 'FAQs' - contact: 'Contacto' - used_by: 'Ya usan Decidim' - partners: 'Entidades colaboradoras' - modules: 'Módulos' - press: 'Prensa' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Abierta convocatoria' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest es programa intensivo de 3 días de actividades dedicado al proyecto Decidim, la democracia participativa y las herramientas de código abierto para la inteligencia colectiva en la era de la democracia global.' - index: - hero: - heading: 'Democracia participativa de código libre para ciudades y organizaciones' - subheading: 'Decidim es una plataforma digital
de participación ciudadana' - intro: 'Tecnología libre y segura.
Con todas las garantías democráticas.
Reprogramar la democracia ahora es posible con Decidim.' - video: - play: 'Reproducir vídeo' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Cerrar el vídeo' - subhero: - intro: 'Decidim ayuda a ciudadanos, organizaciones e instituciones públicas a auto-organizarse democráticamente a todos los niveles.' - feature1: 'Planificación
estratégica' - feature2: 'Presupuestos
participativos' - feature3: 'Iniciativas y
consultas ciudadanas' - feature4: 'Procesos
participativos' - feature5: 'Órganos
de participación' - feature6: 'Comunicación
en red' - used_by: - title: 'Ya están usando Decidim' - cta: 'Ver todos' - cta: - title: 'comienza a usar Decidim' - button: - code: 'Código on GitHub' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Demo en línea - p1: Conoce y prueba libremente la plataforma Decidim con la demo en línea. - p2: Decidim está funcionando en varios casos que puedes visitar y explorar, Decidim Barcelona en la ciudad de Barcelona o los sitios web de Gavà y L’Hospitalet. Pero se trata de casos reales que en realidad no puedes experimentar libremente, puede que no seas ciudadano o ciudadana de esos municipios, y no se puede visitar esos sitios como administrador. - p3: Si quieres ir más lejos, puedes probar Decidim en nuestra web de demostración (cortesía de los desarrolladores de aLabs). Entra en la web de demostración y prueba libremente el potencial de Decidim y sus características. - p4: Puedes iniciar sesión como administrador (nombre de usuario admin@example.org y contraseña decidim123456). - button: Demo online + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, nuestra comunidad' - subtitle: 'Una comunidad democrática que gestiona el proyecto Decidim en todas sus dimensiones' - intro: 'Metadecidim es una comunidad que colabora en el diseño de la plataforma y la construcción del proyecto. Entre todas podemos diseñar y desarrollar nuevas funcionalidades y notificar bugs para una mejora continua de la plataforma.' - cta: 'Empezar' - features: - title: 'Propón nuevas funcionalidades' - subtitle: 'Diseñar y desarrollar Decidim entre todas' - text: 'Puedes crear debates sobre el futuro de Decidim o proponer nuevas funciones o mejoras. Las propuestas pueden recibir adhesiones y comentarios, para mostrar, por ejemplo, el interés que despiertan en la comunidad y valorar su desarrollo. Serán útiles para el proyecto las propuestas que cuenten con un patrocinador o sponsor (como un ayuntamiento o cualquier otra entidad), responsable de buscar y aportar los recursos necesarios para llevar a cabo su desarrollo.' - cta: 'Entra y participa ahora' - bug: - title: 'Notifica un bug' - subtitle: 'Colaboración para la mejora continua' - text: 'Cada nueva versión (release) de Decidim incorpora nuevas funcionalidades y mejoras de usabilidad, pero no siempre todo funciona a la primera y pueden aparecer errores. Aquí puedes reportar los errores (bugs) que encuentres. Así ayudas al equipo de desarrollo a corregirlos rápidamente.' - cta: 'Entra y participa ahora' - img_alt: 'Fotografía de la comunidad Decidim en la las jornadas Metadecidim 2016' - timeline: - title: 'Diseño colaborativo de funcionalidades' - step1: - title: 'Nueva propuesta' - text: 'Descripción funcional' - step2: - title: 'Propuesta validada' - text: 'Validación técnica y tecnopolítica' - step3: - title: 'Propuesta planificada' - text: 'Recursos para desarrollo (compartidos o no)' - step4: - title: 'Issue' - text: 'Descripción técnica' - step5: - title: 'Pull request' - text: 'Código desarrollado' - step6: - title: 'Funcionalidad hecha' - text: 'Disponible en la siguiente versión' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Empezar + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Fotografía de la comunidad Decidim en la las jornadas Metadecidim 2016 + intro: Metadecidim es una comunidad que colabora en el diseño de la plataforma y la construcción del proyecto. Entre todas podemos diseñar y desarrollar nuevas funcionalidades y notificar bugs para una mejora continua de la plataforma. + subtitle: Una comunidad democrática que gestiona el proyecto Decidim en todas sus dimensiones + title: Metadecidim, nuestra comunidad contact: - title: Contacta con nosotros - bot_field: "No rellenes este campo si eres humano:" - name: Nombre - entity: Entidad + bot_field: 'No rellenes este campo si eres humano:' email: Correo electrónico - subject: Subject message: Mensaje + name: Nombre privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Enviar - thanks: - title: Gracias por contactarnos - message: Gracias por tu email, te responderemos en breve. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contacta con nosotros + demo: + button: Demo online + p1: Conoce y prueba libremente la plataforma Decidim con la demo en línea. + strong: Try Online + title: Demo en línea + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Preguntas más frecuentes + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funcionalidades' - intro: '

Puedes utilizar Decidim en una organización pública o privada, con cientos o miles de potenciales participantes, como un ayuntamiento, una asociación, una universidad, una ONG, un sindicato, un colectivo de barrio o cooperativa…

Gracias a Decidim podrás configurar espacios de participación (iniciativas, asambleas, procesos o consultas) y enriquecerlos a través de los múltiples componentes disponibles (encuentros presenciales, encuestas, propuestas, votaciones, seguimiento de resultados, comentarios y muchos más).

' - list: - n1: - title: 'Presupuestos
participativos' - content: 'Analiza las propuestas presentadas y promueve una nueva forma de distribuir recursos comunes.' - n2: - title: 'Iniciativas y consultas
ciudadanas' - content: 'Empodera a tu comunidad a través de iniciativas ciudadanas. Promueve votaciones relevantes a través de consultas.' - n3: - title: 'La potencia
de una red política' - content: 'Lleva la deliberación, la colaboración y la decisión a una dimensión multitudinaria, con miles de personas participando en tiempo real.' - n4: - title: 'Un sistema
democrático y flexible' - content: 'Gracias a su arquitectura modular y a su lógica escalable, podrás configurar un poderoso sistema de gobernanza democrática en todo tipo de organizaciones.' - n5: - title: 'Nos tomamos la democracia
muy en serio' - content: 'Decidim asegura la transparencia, trazabilidad e integridad de la información como nunca antes. Proporciona seguridad, privacidad y confidencialidad a todas las participantes.' - n6: - title: "Es vuestra.
Compartidla. Mejoradla." - content: 'Una plataforma diseñada enteramente con software libre, abierto y colaborativo gracias a la comunidad Metadecidim.' - cta: - features: 'Ver todas las funcionalidades' - values: 'Ir al contrato social' + intro: "

Puedes utilizar Decidim en una organización pública o privada, con cientos o miles de potenciales participantes, como un ayuntamiento, una asociación, una universidad, una ONG, un sindicato, un colectivo de barrio o cooperativa…

Gracias a Decidim podrás configurar espacios de participación (iniciativas, asambleas, procesos o consultas) y enriquecerlos a través de los múltiples componentes disponibles (encuentros presenciales, encuestas, propuestas, votaciones, seguimiento de resultados, comentarios y muchos más).

" page: feature1: - title: 'Procesos participativos' - subtitle: 'para democratizar asuntos comunes, paso a paso' - text: >- - Procesos permite crear, activar/desactivar y administrar diferentes procesos de participación, articularlos en diferentes fases en las que pueden combinarse todos los componentes (un proceso de elección de los miembros de un comité, presupuestos participativos, un proceso de planificación estratégica, la redacción colaborativa de un reglamento o norma, el diseño de un espacio urbano o la producción de un plan de políticas públicas…). - feature2: - title: 'Órganos
de participación' - subtitle: 'el poder de la autorganización colectiva' - text: >- - Las Asambleas es un espacio que ofrece la posibilidad de constituir órganos o grupos de decisión (consejos, grupos de trabajo, comisiones, etc.) que se reúnen periódicamente, detallando su composición, listando y geolocalizando sus reuniones, y permitiendo la participación en las mismas (por ejemplo: asistiendo si el aforo y la naturaleza de la asamblea lo permiten, añadiendo puntos al orden del día, o comentando las propuestas y decisiones tomadas por dicho órgano). - feature3: - title: 'Consultas' - subtitle: 'el derecho a decidir con todas las garantías democráticas' - text: >- - Consultas es un espacio que permite coordinar referendos, organizar discusiones y debates, publicar los resultados de las votaciones y conectarse a un sistema seguro de voto electrónico. - feature4: - title: 'Iniciativas' - subtitle: "marcar la agenda de todas, al alcance de cualquiera" - text: >- - Iniciativas es un espacio que permite a los participantes crear iniciativas de forma colaborativa, definir su trayectoria y objetivos, recoger apoyos, discutir, debatir y difundir iniciativas y definir puntos de encuentro donde se puedan recoger firmas de los asistentes o debates abiertos a otros miembros de la organización. - feature5: - title: 'Propuestas' - subtitle: 'vuestras ideas, en detalle' - text: >- - El componente propuestas permite al usuario crear una propuesta utilizando un asistente de creación, compararla con las existentes, publicarla en la plataforma e incluir información adicional como geolocalización o documentos e imágenes adjuntos. Este componente también permite navegar, filtrar e interactuar con un conjunto de propuestas. Además, con la propuesta-incubadora podéis crear propuestas colaborativas. - feature6: - title: 'Votaciones' - subtitle: 'decide tu voto' - text: >- - El componente votación ofrece a las organizaciones la posibilidad de activar diferentes sistemas de votación o apoyo en torno a las propuestas: ilimitado, limitado a un determinado umbral, ponderado, basado en costes, etc. - feature7: - title: 'Resultados' - subtitle: 'ninguna propuesta sin respuesta' - text: >- - El componente resultados se utiliza para convertir propuestas en resultados y dar respuestas oficiales sobre su aceptación o rechazo, fusionando varias propuestas en un solo resultado. - feature8: - title: 'Rendición de cuentas' - subtitle: 'transparencia de principio a fin' - text: >- - El componente de rendición de cuentas ofrece la posibilidad de subdividir los resultados en proyectos, definir y aplicar estados de progreso en torno a su implementación, así como mostrar el grado de implementación de los resultados agrupados por categorías y alcances. - feature9: - title: 'Encuentros' - subtitle: 'para encontrarse y no perderse nada' - text: >- - El componente de encuentros ofrece a las organizaciones y a los participantes la oportunidad de convocar reuniones, determinar su lugar y hora, registrar y limitar el número de asistentes, definir la estructura y el contenido de la reunión, así como publicar las actas y las propuestas resultantes. + subtitle: para democratizar asuntos comunes, paso a paso + text: Procesos permite crear, activar/desactivar y administrar diferentes procesos de participación, articularlos en diferentes fases en las que pueden combinarse todos los componentes (un proceso de elección de los miembros de un comité, presupuestos participativos, un proceso de planificación estratégica, la redacción colaborativa de un reglamento o norma, el diseño de un espacio urbano o la producción de un plan de políticas públicas…). + title: Procesos participativos feature10: - title: 'Textos participativos' - subtitle: 'para analizar, sintetizar, y construir en común' - text: >- - El componente textos participativos se puede utilizar para convertir documentos de texto extenso en varias propuestas o resultados y, viceversa, para componer y mostrar un texto unificado basado en una colección de propuestas o resultados. + subtitle: para analizar, sintetizar, y construir en común + text: El componente textos participativos se puede utilizar para convertir documentos de texto extenso en varias propuestas o resultados y, viceversa, para componer y mostrar un texto unificado basado en una colección de propuestas o resultados. + title: Textos participativos feature11: - title: 'Conferencia' - subtitle: 'Donde los grandes eventos se estrenan' - text: >- - El componente conferencia permite a una organización crear un sitio web para un gran evento uniendo una serie de encuentros predefinidos (chats, talleres, etc.), creando un programa unificado y gestionando los asistentes. + subtitle: Donde los grandes eventos se estrenan + text: El componente conferencia permite a una organización crear un sitio web para un gran evento uniendo una serie de encuentros predefinidos (chats, talleres, etc.), creando un programa unificado y gestionando los asistentes. + title: Conferencia feature12: - title: 'Encuestas' - subtitle: 'Porque la opinión de tu comunidad cuenta' - text: >- - El componente encuestas se puede utilizar para diseñar y publicar encuestas y para mostrar y descargar sus resultados. + subtitle: Porque la opinión de tu comunidad cuenta + text: El componente encuestas se puede utilizar para diseñar y publicar encuestas y para mostrar y descargar sus resultados. + title: Encuestas feature13: - title: 'Sorteo' - subtitle: 'La igualdad y la justicia del azar' - text: >- - El componente sorteo permite seleccionar un número de propuestas (por ejemplo, candidatos a un jurado) con procedimientos aleatorios, pero reproducibles, que garantizan distribuciones no sesgadas y uniformes. + subtitle: La igualdad y la justicia del azar + text: El componente sorteo permite seleccionar un número de propuestas (por ejemplo, candidatos a un jurado) con procedimientos aleatorios, pero reproducibles, que garantizan distribuciones no sesgadas y uniformes. + title: Sorteo feature14: - title: 'Comentarios' - subtitle: 'Construyendo la inteligencia colectiva' - text: >- - El componente comentarios permite a los usuarios añadir comentarios, identificar el comentario como a favor, en contra o neutral en relación con el objeto comentado, votar comentarios, responder a ellos y recibir notificaciones sobre las respuestas. + subtitle: Construyendo la inteligencia colectiva + text: El componente comentarios permite a los usuarios añadir comentarios, identificar el comentario como a favor, en contra o neutral en relación con el objeto comentado, votar comentarios, responder a ellos y recibir notificaciones sobre las respuestas. + title: Comentarios feature15: - title: 'Páginas y blogs' - subtitle: 'Tu comunidad, informada y al día' - text: >- - El componente páginas se utiliza para crear páginas informativas con formato de texto enriquecido, imágenes y vídeos incrustados. El componente blog permite la creación de mensajes o noticias, y navegar por ellos cronológicamente. + subtitle: Tu comunidad, informada y al día + text: El componente páginas se utiliza para crear páginas informativas con formato de texto enriquecido, imágenes y vídeos incrustados. El componente blog permite la creación de mensajes o noticias, y navegar por ellos cronológicamente. + title: Páginas y blogs feature16: - title: 'Notificaciones' - subtitle: 'Información personalizada sobre contenidos de interés' - text: >- - Decidim permite seguir cualquier espacio o componente para recibir actualizaciones cada vez que se produzcan. + subtitle: Información personalizada sobre contenidos de interés + text: Decidim permite seguir cualquier espacio o componente para recibir actualizaciones cada vez que se produzcan. + title: Notificaciones feature17: - title: 'Boletín' - subtitle: 'Sencillo pero potente' - text: >- - El componente boletín permite enviar correos electrónicos a todas las personas registradas en la plataforma. + subtitle: Sencillo pero potente + text: El componente boletín permite enviar correos electrónicos a todas las personas registradas en la plataforma. + title: Boletín + feature2: + subtitle: el poder de la autorganización colectiva + text: 'Las Asambleas es un espacio que ofrece la posibilidad de constituir órganos o grupos de decisión (consejos, grupos de trabajo, comisiones, etc.) que se reúnen periódicamente, detallando su composición, listando y geolocalizando sus reuniones, y permitiendo la participación en las mismas (por ejemplo: asistiendo si el aforo y la naturaleza de la asamblea lo permiten, añadiendo puntos al orden del día, o comentando las propuestas y decisiones tomadas por dicho órgano).' + title: Órganos
de participación + feature3: + subtitle: el derecho a decidir con todas las garantías democráticas + text: Consultas es un espacio que permite coordinar referendos, organizar discusiones y debates, publicar los resultados de las votaciones y conectarse a un sistema seguro de voto electrónico. + title: Consultas + feature4: + subtitle: marcar la agenda de todas, al alcance de cualquiera + text: Iniciativas es un espacio que permite a los participantes crear iniciativas de forma colaborativa, definir su trayectoria y objetivos, recoger apoyos, discutir, debatir y difundir iniciativas y definir puntos de encuentro donde se puedan recoger firmas de los asistentes o debates abiertos a otros miembros de la organización. + title: Iniciativas + feature5: + subtitle: vuestras ideas, en detalle + text: El componente propuestas permite al usuario crear una propuesta utilizando un asistente de creación, compararla con las existentes, publicarla en la plataforma e incluir información adicional como geolocalización o documentos e imágenes adjuntos. Este componente también permite navegar, filtrar e interactuar con un conjunto de propuestas. Además, con la propuesta-incubadora podéis crear propuestas colaborativas. + title: Propuestas + feature6: + subtitle: decide tu voto + text: 'El componente votación ofrece a las organizaciones la posibilidad de activar diferentes sistemas de votación o apoyo en torno a las propuestas: ilimitado, limitado a un determinado umbral, ponderado, basado en costes, etc.' + title: Votaciones + feature7: + subtitle: ninguna propuesta sin respuesta + text: El componente resultados se utiliza para convertir propuestas en resultados y dar respuestas oficiales sobre su aceptación o rechazo, fusionando varias propuestas en un solo resultado. + title: Resultados + feature8: + subtitle: transparencia de principio a fin + text: El componente de rendición de cuentas ofrece la posibilidad de subdividir los resultados en proyectos, definir y aplicar estados de progreso en torno a su implementación, así como mostrar el grado de implementación de los resultados agrupados por categorías y alcances. + title: Rendición de cuentas + feature9: + subtitle: para encontrarse y no perderse nada + text: El componente de encuentros ofrece a las organizaciones y a los participantes la oportunidad de convocar reuniones, determinar su lugar y hora, registrar y limitar el número de asistentes, definir la estructura y el contenido de la reunión, así como publicar las actas y las propuestas resultantes. + title: Encuentros + subtitle: For democratic organizations and collectives of any size and kind. + title: Funcionalidades type1: - title: 'Espacios de participación' - subtitle: 'Para que los participantes realicen propuestas y tomen decisiones' + title: Espacios de participación type2: - title: 'Componentes' - subtitle: 'Para que las participantes y espacios interactúen' - other: - subtitle: 'Atrévete a combinar los componentes en los espacios para diseñar e implementar con facilidad un potente sistema democrático y adaptarlo a las necesidades de tu organización' - cta: - title: 'Descubre cómo funciona Decidim a fondo' - button: 'Funcionalidades y características' - partners: - notice: Los logotipos de las entidades colaboradoras son propiedad intelectual de sus respectivos titulares de derechos de autor. No pertenecen a la licencia Creative Commons By-SA con la que se licencia el resto del contenido del sitio. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Nombre - type: - community: Comunidad - auth: Autorizaciones - official: Oficiales - used_by: - explain: Estas ciudades, regiones y organizaciones ya están usando Decidim - type: - city: Ciudades - region: Regiones - organizations: Organizaciones - testimonials: - n1: - quote: >- - Gracias a Decidim, hemos conseguido en Barcelona coproducir un plan estratégico de ciudad conjuntamente con la ciudadanía. En el 2016 inauguramos el Plan de Acción Municipal en forma de proceso participativo a través de Decidim Barcelona. Actualmente dicho plan recoge casi 7 mil propuestas ciudadanas. Una de las ventajas de utilizar esta plataforma es que puedes seguir en todo momento el estado de implementación de las propuestas aceptadas. - org: Ayuntamiento de Barcelona (2015-2019) - n2: - quote: >- - En Som Energia, con la implementación del Decidim, hemos generado un espacio más amable de participación. Estrenamos la herramienta en 2018, albergando la Asamblea General de la Cooperativa y meses más tarde, hemos llevado a debate el Rediseño de Imagen y la elaboración colaborativa de la Escuela de Som Energia, entre otros procesos de participación. En pocos meses se han registrado más de 3.500 personas participantes, 5 procesos participativos, 3 asambleas funcionando y más de 1.300 votos en la última consulta de la Asamblea General. - org: Som Energia - n3: - quote: >- - La plataforma digital Decide Mérida fue una oportunidad que abrió como nunca los mecanismos de participación ciudadana para la elaboración del Plan Municipal de Desarrollo de Mérida 2018-2021. Tuvimos más de 3 mil interacciones ciudadanas entre propuestas, comentarios, sugerencias y apoyos que dieron lugar al mayor consenso posible sobre lo que es mejor para nuestra ciudad. Sin duda, la plataforma Decide Mérida seguirá siendo nuestra aliada para hacer de Mèrida una sociedad cada día más participativa. - org: Presidente Municipal de Mérida Yucatán, México. Ayuntamiento de Mérida Yucatán, México - n4: - quote: >- - Los principios democráticos como la rendición de cuentas, la igualdad y la transparencia están en el centro del diseño. Decidim es está construido teniendo en mente la democracia, es su gran foco. - org: Ayuntamiento de Helsinki - n5: - quote: >- - Prácticamente cada proceso participativo que ha llegado a nuestra mesa, lo hemos podido resolver usando las reglas de negocio de Decidim. Como herramienta, es una muy robusta. Sin embargo, la parte que nos parece más fuerte e importante es su comunidad, tanto de desarrolladoras como de aquellas que lo usan para procesos participativos. Convivir con ellas nos ha hecho dimensionar los desafíos que conlleva implementar la democracia participativa en el mundo real. - org: Gobierno Abierto de Ciudad de México - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Preguntas más frecuentes - q01: - question: '¿Qué es Decidim?' - answer: >- - Decidim es una plataforma de participación ciudadana de código libre y abierto para ciudades y organizaciones. Pero también Decidim es más que una plataforma digital: es un proyecto y una infraestructura abierta que incluye código, documentación, diseño, formación, un marco legal, interfaces colaborativas, una comunidad de usuarios y facilitadores y una visión global. - q02: - question: '¿Quiénes están utilizando Decidim actualmente?' - answer: >- - Actualmente lo utilizan ciudades y organizaciones. De hecho cualquier grupo de personas puede utilizarlo, sea una ONG, universidad, sindicato, cooperativa, colectivo de barrio, etc. Consulta el [listado completo de instancias activas en la actualidad](/es/usedby/). - q03: - question: '¿Qué puede hacer un administrador de Decidim?' - answer: >- - Configura procesos participativos fácilmente ¿Quieres hacer un plan estratégico? ¿O discutir nuevas normativas? ¿O debatir sobre una plaza nueva o un edificio público para alcanzar el bien común? Gracias a Decidim podrás configurar espacios de participación (iniciativas, asambleas, procesos o consultas) y enriquecerlos a través de los múltiples componentes disponibles (encuentros presenciales, encuestas, propuestas, votaciones, seguimiento de resultados, comentarios y muchos más). - q04: - question: '¿Qué puede hacer un participante (usuario) de Decidim?' - answer: >- - Decidim hace posible que miles de personas se organicen democráticamente realizando propuestas, asistiendo a reuniones públicas, creando discusiones deliberativas, decidiendo mediante distintas formas de votación y monitorizando la implementación de las decisiones. Los participantes además pueden comunicarse entre ellos a través de las funcionalidades de comunicación en red de Decidim. - q05: - question: Quiero usar Decidim ya, sin instalármelo, para ver cómo funciona. ¿Tenéis una demo? - answer: 'Si, tenemos una [demo](/es/demo).' - q06: - question: '¿Con qué frecuencia hay actualizaciones de la plataforma?' - answer: >- - Cada mes, aproximadamente, liberamos una nueva versión. En [este enlace](https://github.com/decidim/decidim/releases) puedes consultar el histórico de versiones. - q07: - question: '¿Qué necesito para instalar Decidim?' - answer: >- - Instalar Decidim es fácil pero necesitas algunos conocimientos y requerimientos técnicos. Puedes consultar el [tutorial de instalación manual oficial](https://docs.decidim.org/en/install/). - q08: - question: '¿Dónde puedo encontrar el roadmap del proyecto y las funcionalidades planificadas?' - answer: Puedes encontrar el roadmap de nuevas funcionalidades del proyecto en [GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: '¿Qué significa que Decidim sea gratuito, libre y de código abierto?' - answer: >- - Decidim es una plataforma de participación ciudadana hecha por personas y para personas. Su código fuente es abierto y puede ser inspeccionado, modificado y mejorado por cualquiera. El software Decidim está cubierto por la [licencia AGPL](https://es.wikipedia.org/wiki/GNU_Affero_General_Public_License). Eso significa que puedes usarlo, modificarlo y redistribuir versiones derivadas de él, siempre y cuando respetes la licencia AGPL. - q10: - question: >- - Tengo ideas de nuevas funcionalidades, de mejora. Quiero conocer mejor el proyecto. ¿Qué puedo hacer? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Tengo muchas dudas, de todo tipo...¿dónde las puedo plantear o resolver? - answer: >- - La mejor manera de intentar resolver ágilmente tus dudas es a través de la comunidad Metadecidim. Entra ahora en el proceso [“Foro de Soporte”](https://meta.decidim.org/processes/supportforum?locale=es) y fíjate si tu duda existe o si ha sido resuelta y en caso contrario entra para realizar consultas. Si no logras resolver tu asunto en este espacio, quizás es momento de contactar con nosotros a través del [formulario de contacto](/es/contact). - q12: - question: '¿Existe algún manual de ayuda para empezar a configurarlo?' - answer: >- - En el [apartado de documentación](https://decidim.org/es/docs/) puedes consultar la última versión de nuestro manual de administrador. - q13: - question: '¿Qué es el Contrato Social?' - answer: >- - Así es como llamamos a nuestro Código de Garantías Democráticas y Colaboración Democrática. Todos los miembros de la comunidad deben adherirse al [Contrato Social](http://decidim.org/es/contract). - q14: - question: '¿Cuáles son las diferencias con Consul Project / Decide Madrid?' - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: '¿Qué es la comunidad Metadecidim?' - answer: >- - [Metadecidim](http://meta.decidim.org) es la comunidad de Decidim que colabora en el diseño de la plataforma y la construcción del proyecto Decidim. Nos reunimos periódicamente a través de las [SOM (Sesiones Operativas Metadecidim)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) y de los [Seminarios LAB de investigación](https://meta.decidim.org/assemblies/eix-lab). Entra en [meta.decidim.org](http://meta.decidim.org) para seguir de cerca las convocatorias y si quieres unirte a la comunidad, nosotras encantadas ;-) - q16: - question: '¿Puedo participar en la comunidad Metadecidim aunque no resida en Barcelona?' - answer: >- - Decidim es un proyecto que nace en Barcelona y es por ello que hay un vínculo territorial fuerte con este ciudad. Pero sí, puedes colaborar en línea, a través de los procesos participativos, debates, etc...que proporcionamos en Metadecidim. Aunque quizá quieras venir a Barcelona alguna vez :) - q17: - question: Queremos formalizar un acuerdo de colaboración. ¿Existe alguna plantilla que podamos usar? - answer: Sí, tenemos plantillas para formalizar acuerdos de colaboración. [Ponte en contacto con nosotras](/es/contact). - q18: - question: '¿A qué tipo de miembros aceptáis en la comunidad Metadecidim?' - answer: A cualquiera que tenga buena fe y una actitud correcta hacia la colaboración democrática. - q19: - question: '¿Ofrecéis instalación gratuita a organizaciones sin ánimo de lucro?' - answer: >- - Sí, solo si eres una organización con sede en Barcelona. Envíanos un mensaje y la Dirección de Investigación, Desarrollo e Innovación del Área de Derechos de Ciudadanía, Participación y Transparencia del Ayuntamiento de Barcelona te ayudará. - q20: - question: '¿Apoyáis a las instituciones?' - answer: >- - Sí, pero hay que tener paciencia. Hay un montón de instituciones que quieren usar Decidim en estos momentos y les estamos ayudando paso a paso. [Ponte en contacto con nosotros](/es/contact) para cualquier pregunta y te responderemos lo antes posible. - q21: - question: '¿Qué es la Associació Decidim?' - answer: >- - La Asociación de Software Libre Decidim (Associació Decidim) es una asociación democrática que se encarga de la gobernanza de la comunidad Decidim. - q22: - question: '¿Cómo puedo obtener más información sobre la Asociación Decidim?' - answer: >- - En la [asamblea general de la Associació Decidim](https://meta.decidim.org/assemblies/general-assembly-association) puedes conocernos mejor, seguir la actividad de los encuentros y consultar información relevante (estatutos, convenios, el reglamento interno). - q23: - question: '¿Cómo me puedo hacer socia de la Associació Decidim?' - answer: >- - Ahora las personas implicadas en el proyecto pueden ser socias. [Aquí te explicamos en detalle como lo tienes que hacer.](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: '¿Cuándo nace la Associació Decidim?' - answer: >- - La Associació Decidim se funda [el 16 de febrero de 2019 en una asamblea extraordinaria de la comunidad](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), con la aprobación de los estatutos. + title: Componentes + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Tecnología libre y segura.
Con todas las garantías democráticas.
Reprogramar la democracia ahora es posible con Decidim. + subheading: Decidim es una plataforma digital
de participación ciudadana + subhero: + cta: Explore all features + feature1: Planificación
estratégica + feature2: Presupuestos
participativos + feature3: Iniciativas y
consultas ciudadanas + feature4: Procesos
participativos + feature5: Órganos
de participación + feature6: Comunicación
en red + intro: Decidim ayuda a ciudadanos, organizaciones e instituciones públicas a auto-organizarse democráticamente a todos los niveles. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Ya están usando Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Código + community: Comunidad + contact: Contacto + contract: Contrato social + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentación + faqs: FAQs + features: Funcionalidades + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Módulos + partners: Entidades colaboradoras + partnership-policy: Partnership policy + press: Prensa + privacy-policy: Privacy policy + text: Navegación + trademark: Trademark policy + use-cases: Use cases + used_by: Ya usan Decidim + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/es" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Ayuntamiento de Barcelona (2015-2019) + quote: Gracias a Decidim, hemos conseguido en Barcelona coproducir un plan estratégico de ciudad conjuntamente con la ciudadanía. En el 2016 inauguramos el Plan de Acción Municipal en forma de proceso participativo a través de Decidim Barcelona. Actualmente dicho plan recoge casi 7 mil propuestas ciudadanas. Una de las ventajas de utilizar esta plataforma es que puedes seguir en todo momento el estado de implementación de las propuestas aceptadas. + n2: + org: Som Energia + quote: En Som Energia, con la implementación del Decidim, hemos generado un espacio más amable de participación. Estrenamos la herramienta en 2018, albergando la Asamblea General de la Cooperativa y meses más tarde, hemos llevado a debate el Rediseño de Imagen y la elaboración colaborativa de la Escuela de Som Energia, entre otros procesos de participación. En pocos meses se han registrado más de 3.500 personas participantes, 5 procesos participativos, 3 asambleas funcionando y más de 1.300 votos en la última consulta de la Asamblea General. + n3: + org: Presidente Municipal de Mérida Yucatán, México. Ayuntamiento de Mérida Yucatán, México + quote: La plataforma digital Decide Mérida fue una oportunidad que abrió como nunca los mecanismos de participación ciudadana para la elaboración del Plan Municipal de Desarrollo de Mérida 2018-2021. Tuvimos más de 3 mil interacciones ciudadanas entre propuestas, comentarios, sugerencias y apoyos que dieron lugar al mayor consenso posible sobre lo que es mejor para nuestra ciudad. Sin duda, la plataforma Decide Mérida seguirá siendo nuestra aliada para hacer de Mèrida una sociedad cada día más participativa. + n4: + org: Ayuntamiento de Helsinki + quote: Los principios democráticos como la rendición de cuentas, la igualdad y la transparencia están en el centro del diseño. Decidim es está construido teniendo en mente la democracia, es su gran foco. + n5: + org: Gobierno Abierto de Ciudad de México + quote: Prácticamente cada proceso participativo que ha llegado a nuestra mesa, lo hemos podido resolver usando las reglas de negocio de Decidim. Como herramienta, es una muy robusta. Sin embargo, la parte que nos parece más fuerte e importante es su comunidad, tanto de desarrolladoras como de aquellas que lo usan para procesos participativos. Convivir con ellas nos ha hecho dimensionar los desafíos que conlleva implementar la democracia participativa en el mundo real. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Gracias por tu email, te responderemos en breve. + title: Gracias por contactarnos + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/eu.yml b/locales/eu.yml index a1e2af72..c4c0a27d 100644 --- a/locales/eu.yml +++ b/locales/eu.yml @@ -1,448 +1,589 @@ +--- eu: - path: '/eu' - activeLang: 'Euskera' - nav: - text: 'Nabigazioa' - demo: 'Demo' - community: 'Community' - contract: 'Social Contract' - code: 'Kodea' - docs: - title: 'Documentation' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Funtzionalitateak' - faqs: 'FAQs' - contact: 'Contact' - used_by: 'Decidim in use' - partners: 'Cooperating entities' - modules: 'Modules' - press: 'Press' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Join our call' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest is an intense 3-day program of activities devoted to the Decidim project, participatory democracy and open source tools for collective intelligence in the era of Global Democracy.' - index: - hero: - heading: 'Free Open-Source participatory democracy for cities and organizations' - subheading: 'Decidim is a digital platform
for citizen participation' - intro: 'Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim.' - video: - play: 'Play video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Close video' - subhero: - intro: 'Decidim helps citizens, organizations and public institutions self-organize democratically at every scale.' - feature1: 'Strategic
planning' - feature2: 'Participatory
budgeting' - feature3: 'Initiatives and
citizen consultations' - feature4: 'Participative
processes' - feature5: 'Biltzarrak' - feature6: 'Networked
communication' - used_by: - title: 'They are already using Decidim' - cta: 'See all' - cta: - title: 'start using Decidim today' - button: - code: 'Code on Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Online Demo - p1: Play around and explore freely the Decidim platform with our online demo. - p2: Decidim is up and running on several instances that you can visit and explore, Decidim Barcelona at Barcelona City or you can visit the sites of Gavà and L'Hospitalet. But these are real instances where you can't really play around freely, as you might not be a citizen of those municipalities, and you can't explore those sites as an admin. - p3: If you want to go further you are welcome to test Decidim on our Decidim Demo Site (courtesy of our developers at aLabs). Enter the demo site and freely explore the potential of Decidim and its features. - p4: You can log in as Admin (username "admin@example.org" and password "decidim123456"). - button: Online demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, our community' - subtitle: 'A democratic community that manages the Decidim project in all its dimensions' - intro: 'Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform.' - cta: 'Get started' - features: - title: 'Propose new features' - subtitle: 'To design and develop Decidim among all' - text: 'You can create debates about the future of Decidim or propose new features or improvements. Proposals can receive endorsements and comments, to show, for example, the interest they arouse in the community and value their development. Proposals that have a sponsor (such as a city council or any other entity), responsible for seeking and providing the necessary resources to carry out their development, will be useful for the project.' - cta: 'Enter and participate now' - bug: - title: 'Report a bug' - subtitle: 'Collaboration for progressive improvement' - text: 'Each new release of Decidim incorporates new features and usability improvements, but not everything works at first and errors may appear. Here you can report bugs you find and help the developers to fix them quickly.' - cta: 'Enter and participate now' - img_alt: 'Decidim Community Photo at Metadecidim Meeting 2016' - timeline: - title: 'Collaborative design of functionalities' - step1: - title: 'Proposamen berria' - text: 'Functional description' - step2: - title: 'Validated proposal' - text: 'Technical and technopolitical validation' - step3: - title: 'Planned proposal' - text: 'Resources for development (shared or not)' - step4: - title: 'Issue' - text: 'Technical description' - step5: - title: 'Pull request' - text: 'Developed code' - step6: - title: 'Funcionality done' - text: 'Avaliable on the next version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Get started + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform. + subtitle: A democratic community that manages the Decidim project in all its dimensions + title: Metadecidim, our community contact: - title: Contact us - bot_field: "Don’t fill this out if you're human:" - name: Izena - entity: Entity + bot_field: 'Don’t fill this out if you''re human:' email: Helbide elektronikoa - subject: Subject message: Message + name: Izena privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Bidali - thanks: - title: Thanks for your email - message: Thank you for contacting us, we will get back to you soon. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contact us + demo: + button: Online demo + p1: Play around and explore freely the Decidim platform with our online demo. + strong: Try Online + title: Online Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Frequently asked questions + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funtzionalitateak' - intro: '

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

' - list: - n1: - title: 'Participatory
budgets' - content: 'It analyses the submitted proposals and promotes a new way of distributing common resources.' - n2: - title: 'Citizen’s initiatives
and consultations' - content: 'Empower your community through citizen initiatives. Promote relevant voting through consultations.' - n3: - title: 'The power
of a political network' - content: 'It takes deliberation, collaboration and decision to a massive dimension, with thousands of people participating in real time.' - n4: - title: 'A democratic
and flexible system' - content: 'Thanks to its modular architecture and scalable logic, you can configure a powerful system of democratic governance in all kinds of organizations.' - n5: - title: 'We take democracy
very seriously' - content: 'Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants.' - n6: - title: "It's yours.
Share it. Improve it." - content: 'A platform designed entirely with free software, open and collaborative content thanks to the community Metadecidim.' - cta: - features: 'See all features' - values: 'Go to social contract' + intro: "

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

" page: feature1: - title: 'Prozesu partizipatiboak' - subtitle: 'to democratize common issues, step by step' - text: >- - Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan. - feature2: - title: 'Biltzarrak' - subtitle: 'the power of collective self-organization' - text: >- - Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body). - feature3: - title: 'Consultations' - subtitle: 'the right to decide with all democratic guarantees' - text: >- - Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. - feature4: - title: 'Initiatives' - subtitle: "setting everyone's agenda, within everyone's reach" - text: >- - Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. - feature5: - title: 'Proposamenak' - subtitle: 'your ideas in detail' - text: >- - The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. - feature6: - title: 'Voting' - subtitle: 'decide your vote' - text: >- - The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc. - feature7: - title: 'Emaitzak' - subtitle: 'no proposal without an answer' - text: >- - The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. - feature8: - title: 'Emaitzak' - subtitle: 'transparency from beginning to end' - text: >- - The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. - feature9: - title: 'Topaketa-zerrenda' - subtitle: 'to meet and not miss anything' - text: >- - The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + subtitle: to democratize common issues, step by step + text: 'Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan.' + title: Prozesu partizipatiboak feature10: - title: 'Participatory texts' - subtitle: 'to analyze, synthesize, and build in common' - text: >- - The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + subtitle: to analyze, synthesize, and build in common + text: The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + title: Participatory texts feature11: - title: 'Conference' - subtitle: 'Where big events are premiered' - text: >- - The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + subtitle: Where big events are premiered + text: The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + title: Conference feature12: - title: 'Inkestak' - subtitle: 'Because the opinion of your community matters' - text: >- - The surveys component can be used to design and publish surveys and to display and download their results. + subtitle: Because the opinion of your community matters + text: The surveys component can be used to design and publish surveys and to display and download their results. + title: Inkestak feature13: - title: 'Sortition' - subtitle: 'Equality and the justice of randomness' - text: >- - The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + subtitle: Equality and the justice of randomness + text: The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + title: Sortition feature14: - title: 'Iruzkinak' - subtitle: 'Building a collective intelligence' - text: >- - The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + subtitle: Building a collective intelligence + text: The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + title: Iruzkinak feature15: - title: 'Pages and blogs' - subtitle: 'Your community, informed and up to date' - text: >- - The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + subtitle: Your community, informed and up to date + text: The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + title: Pages and blogs feature16: - title: 'jakinarazpenak' - subtitle: 'Personalized information on interesting contents' - text: >- - Decidim enables you to track any space or component to receive updates every time they happen. + subtitle: Personalized information on interesting contents + text: Decidim enables you to track any space or component to receive updates every time they happen. + title: jakinarazpenak feature17: - title: 'Buletina' - subtitle: 'Simple but powerful' - text: >- - The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + subtitle: Simple but powerful + text: The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + title: Buletina + feature2: + subtitle: the power of collective self-organization + text: 'Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body).' + title: Biltzarrak + feature3: + subtitle: the right to decide with all democratic guarantees + text: Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. + title: Consultations + feature4: + subtitle: setting everyone's agenda, within everyone's reach + text: Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. + title: Initiatives + feature5: + subtitle: your ideas in detail + text: The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. + title: Proposamenak + feature6: + subtitle: decide your vote + text: 'The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc.' + title: Voting + feature7: + subtitle: no proposal without an answer + text: The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. + title: Emaitzak + feature8: + subtitle: transparency from beginning to end + text: The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. + title: Emaitzak + feature9: + subtitle: to meet and not miss anything + text: The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + title: Topaketa-zerrenda + subtitle: For democratic organizations and collectives of any size and kind. + title: Funtzionalitateak type1: - title: 'Spaces for participation' - subtitle: 'For participants to make proposals and make decisions' + title: Spaces for participation type2: - title: 'Components' - subtitle: 'For participants and spaces to interact' - other: - subtitle: 'Dare to combine the components. Design and deploy a powerful democratic system in an easy way and adapt it to your organization’s needs' - cta: - title: 'Discover how Decidim works in depth' - button: 'Functions and features' - partners: - notice: The cooperating entities logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Izena - type: - community: Community - auth: Authorization - official: Ofiziala - used_by: - explain: These cities, regions and organizations are already using Decidim - type: - city: Cities - region: Regions - organizations: Erakundeak - testimonials: - n1: - quote: >- - Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. - org: Barcelona City Hall (2015-2019) - n2: - quote: >- - With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. - org: Som Energia - n3: - quote: >- - The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. - org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico - n4: - quote: >- - What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. - org: City of Helsinki - n5: - quote: >- - Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. - org: Open Government of Mexico City - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Frequently asked questions - q01: - question: What is Decidim? - answer: >- - Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common's free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision. - q02: - question: Who is currently using Decidim? - answer: >- - It is currently used by cities and organizations. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). - q03: - question: What can a Decidim administrator do? - answer: >- - Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). - q04: - question: What can a participant (user) of Decidim do? - answer: >- - Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. - q05: - question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. - answer: 'Yes, we have an [online demo](/demo).' - q06: - question: How often is the platform updated? - answer: >- - We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). - q07: - question: What do I need to install Decidim? - answer: >- - Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). - q08: - question: Where can I find the project roadmap and the planned features? - answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'What does it mean that Decidim is for free, "libre" and open source?' - answer: >- - Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. - q10: - question: >- - I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: I have many doubts, of all kinds...where can I ask them or solve them? - answer: >- - The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). - q12: - question: Is there any tutorial to start setting it up? - answer: >- - You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). - q13: - question: What is the Social Contract? - answer: >- - That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). - q14: - question: What are the differences with Consul Project / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: What is the Metadecidim community? - answer: >- - [Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the [SOM (Metadecidim Operative Sessions)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) and the [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-) - q16: - question: Can I join the Metadecidim community even if I don't live in Barcelona? - answer: >- - Decidim is a project that was born in Barcelona and that is why there is a strong territorial bond with this city. But yes, you can collaborate online, through participatory processes, debates, etc .... that we provide in Metadecidim. Although you might want to come to Barcelona sometime :) - q17: - question: We want to make a formal collaboration agreement. Are there any templates we can use? - answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). - q18: - question: What kind of members you accept into the Metadecidim community? - answer: Anybody who has good faith and a correct attitude towards democratic collaboration. - q19: - question: Do you provide free installation to non-profit organizations? - answer: >- - Yes, only if you are a Barcelona based organization. Send us a message and you will be helped by the Directorate of Research, Development and Innovation of the Area of Citizenship Rights, Participation and Transparency of Barcelona City Council. - q20: - question: Do you support institutions? - answer: >- - Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. - q21: - question: What is the Decidim Association? - answer: >- - The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. - q22: - question: How can I get more information about the Decidim Association? - answer: >- - In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) - q23: - question: How can I become a member of the Decidim Association? - answer: >- - Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: When was the Decidim Association born? - answer: >- - The Associació [Decidim is founded on February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + title: Components + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim. + subheading: Decidim is a digital platform
for citizen participation + subhero: + cta: Explore all features + feature1: Strategic
planning + feature2: Participatory
budgeting + feature3: Initiatives and
citizen consultations + feature4: Participative
processes + feature5: Biltzarrak + feature6: Networked
communication + intro: Decidim helps citizens, organizations and public institutions self-organize democratically at every scale. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: They are already using Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Kodea + community: Community + contact: Contact + contract: Social Contract + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentation + faqs: FAQs + features: Funtzionalitateak + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Modules + partners: Cooperating entities + partnership-policy: Partnership policy + press: Press + privacy-policy: Privacy policy + text: Nabigazioa + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in use + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/eu" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Barcelona City Hall (2015-2019) + quote: Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. + n2: + org: Som Energia + quote: With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. + n3: + org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico + quote: The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. + n4: + org: City of Helsinki + quote: What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. + n5: + org: Open Government of Mexico City + quote: Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Thank you for contacting us, we will get back to you soon. + title: Thanks for your email + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/fi.yml b/locales/fi.yml index c76c54e6..dc32ac0e 100644 --- a/locales/fi.yml +++ b/locales/fi.yml @@ -1,448 +1,589 @@ +--- fi: - path: '/fi' - activeLang: 'Suomi' - nav: - text: 'Navigaatio' - demo: 'Demo' - community: 'Yhteisö' - contract: 'Sosiaalinen sopimus' - code: 'Koodi' - docs: - title: 'Dokumentaatio' - path: 'https://docs.decidim.org/' - blog: 'Blogi' - features: 'Ominaisuudet' - faqs: 'UKK' - contact: 'Ota yhteyttä' - used_by: 'Decidimiä käyttävät organisaatiot' - partners: 'Yhteistyökumppanit' - modules: 'Moduulit' - press: 'Lehdistö' - legal-notice: 'Oikeudellinen ilmoitus' - privacy-policy: 'Tietosuojaseloste' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Demokratia, teknologia ja globaali oikeudenmukaisuus | 20.-22. lokakuuta' - subtitle: 'Liity mukaan' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest on intensiivinen kolmipäiväinen toiminnan täyteinen Decidim-hankkeelle omistettu tapahtuma, osallistuvaa demokratiaa ja avoimen lähdekoodin työkaluja globaalin demokratian aikakaudella.' - index: - hero: - heading: 'Vapaa avoimen lähdekoodin osallistuvan demokratian työkalu kaupungeille ja organisaatioille' - subheading: 'Decidim on digitaalinen alusta
osallisuudelle ja kansalaisaktivismille' - intro: 'Vapaa ja turvallinen teknologia.
Demokraattisilla takuilla.
Demokratian uudelleenohjelmointi on nyt mahdollista Decidimin avulla.' - video: - play: 'Toista video' - url: 'https://www.youtube-nocookie.com/embed/b0XREFhmXVk' - close: 'Sulje video' - subhero: - intro: 'Decidim auttaa kansalaisia, organisaatioita ja julkisia toimijoita itseohjautumaan demokraattisesti. Alusta mukautuu kaiken kokoisille toimijoille.' - feature1: 'Strateginen
suunnittelu' - feature2: 'Osallistuva
budjetointi' - feature3: 'Aloitteet ja
kansalaisten kuuleminen' - feature4: 'Osallistumis
-prosessit' - feature5: 'Ryhmät' - feature6: 'Sosiaaliset
verkostot' - used_by: - title: 'He käyttävät jo Decidimiä' - cta: 'Näytä kaikki' - cta: - title: 'Aloita Decidimin käyttö tänään' - button: - code: 'Koodi GitHubissa' - footer: - supported_by: 'Tukijat' - attribution: '- Creative Commons By-SA' - demo: - title: Verkkopohjainen Demo - p1: Kokeile ja tutki Decidim-alustaa vapaasti verkkopohjaisen demon avulla. - p2: Decidim on käytössä useilla verkkosivustoilla, joilla voit vierailla ja joita voit tutkia vapaasti, kuten Barcelonan kaupungin Decidim Barcelona -alusta tai voit vierailla muiden muassa Gavàn ja L'Hospitaletin Decidim-sivustoilla. Näissä julkisissa ympäristöissä et voi kuitenkaan kokeilla asioita niin helposti, mikäli et ole kyseisten kuntien asukas tai hallintakäyttäjä kyseisillä sivustoilla. - p3: Jos haluat tutkia tarkemmin, voit kokeilla Decidimin demo-sivustoa (jota ylläpitää aLabs:in kehittäjät). Siirry demo-sivustolle ja tutki vapaasti Decidimin potentiaalia ja sen ominaisuuksia. - p4: Voit kirjautua sisään hallintakäyttäjänä (käyttäjänimi "admin@example.org" ja salasana "decidim123456"). - button: Verkkopohjainen demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim-yhteisömme' - subtitle: 'Demokraattinen yhteisö, joka hallinnoi Decidim-hanketta sen kaikissa ulottuvuuksissa' - intro: 'Metadecidim on yhteisö, joka tekee yhteistyötä alustan suunnittelussa ja projektin kehittämisessä. Yhdessä voimme suunnitella ja kehittää uusia ominaisuuksia sekä raportoida vikoja parantaakseemme alustaa jatkuvasti.' - cta: 'Aloita' - features: - title: 'Ehdota uusia ominaisuuksia' - subtitle: 'Suunnitellaksemme ja kehittääksemme Decidimiä yhteisön kanssa' - text: 'Voit luoda keskusteluja Decidimin tulevaisuudesta ja ehdottaa uusia ominaisuuksia tai parannuksia. Ehdotukset voivat kerätä kannatuksia ja niitä voi kommentoida. Näistä käy ilmi ehdotusten keräämä kiinnostus yhteisössä ja kuinka tärkeäksi muut kokevat kyseiset ehdotukset. Ehdotukset, joille on vastuun kantava rahoittaja (kuten kaupunginvaltuusto tai jokin muu yhteisö), joka tarjoaa resurssit kehitykselle, ovat erityisen hyödyllisiä projektille.' - cta: 'Liity ja osallistu nyt' - bug: - title: 'Ilmoita virheestä' - subtitle: 'Osallistu yhteisöllisen kehityksen edistämiseksi' - text: 'Jokainen uusi Decidim-versio sisältää uusia ominaisuuksia ja käytettävyysparannuksia, mutta kaikki toiminnot eivät välttämättä toimi täydellisesti aluksi ja virheitä voi esiintyä. Täällä voit ilmoittaa ongelmista ja auttaa kehittäjiä korjaamaan ne nopeasti.' - cta: 'Liity ja osallistu nyt' - img_alt: 'Kuva Decidim-yhteisöstä Metadecidim-tapaamisessa 2016' - timeline: - title: 'Yhteisöllinen ominaisuuksien suunnittelu' - step1: - title: 'Uusi ehdotus' - text: 'Kuvaus toiminnallisuudesta' - step2: - title: 'Hyväksytty ehdotus' - text: 'Tekninen ja teknopoliittinen validointi' - step3: - title: 'Suunniteltu ehdotus' - text: 'Kehitysyhteistyön resurssit (jaetut tai ei)' - step4: - title: 'Tekninen työtehtävä' - text: 'Tekninen kuvaus ominaisuudesta' - step5: - title: 'Tekninen kehitys (pull request)' - text: 'Ominaisuuden valmiiksi kehitetty koodi' - step6: - title: 'Valmis ominaisuus' - text: 'Ominaisuus julkaistaan seuraavassa versiossa' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Aloita + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Kuva Decidim-yhteisöstä Metadecidim-tapaamisessa 2016 + intro: Metadecidim on yhteisö, joka tekee yhteistyötä alustan suunnittelussa ja projektin kehittämisessä. Yhdessä voimme suunnitella ja kehittää uusia ominaisuuksia sekä raportoida vikoja parantaakseemme alustaa jatkuvasti. + subtitle: Demokraattinen yhteisö, joka hallinnoi Decidim-hanketta sen kaikissa ulottuvuuksissa + title: Metadecidim-yhteisömme contact: - title: Ota yhteyttä - bot_field: "Älä täytä tätä kenttää, jos olet ihminen:" - name: Nimi - entity: Organisaatio + bot_field: 'Älä täytä tätä kenttää, jos olet ihminen:' email: Sähköpostiosoite - subject: Aihe message: Viesti + name: Nimi privacy_policy: - accept: Hyväksyn tietosuojaselosteen - message: >- -

Kun otat meihin yhteyttä yhteydenottolomakkeella, sähköpostilla tai muulla vastaavalla viestintävälineellä, keräämme automaattisesti sinusta seuraavat tiedot: nimi, organisaatio, sähköpostiosoite ja viestin sisältö, jotta voimme käsitellä yhteydenottosi, kommenttisi, pyyntösi, ehdotuksesi, jne.

Lisäksi voimme käsitellä tätä tietoa tilastollisissa tutkimuksissa käyttäen hyväksi pseudonymisointi- ja anonymisointitekniikoita, kuten tietojen aggrekointia tai koontia, mikä estää yksittäisten käyttäjien tunnistamisen ja yksilöinnin datan jatkokäsittelyn yhteydessä.

+ accept: I accept the Privacy Policy + message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Lähetä - thanks: - title: Kiitos yhteydenotostasi - message: Kiitos yhteydenotostasi. Palaamme asiaan pian. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Ota yhteyttä + demo: + button: Verkkopohjainen demo + p1: Kokeile ja tutki Decidim-alustaa vapaasti verkkopohjaisen demon avulla. + strong: Try Online + title: Verkkopohjainen Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Usein kysytyt kysymykset + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Ominaisuudet' - intro: '

Voit käyttää Decidimiä julkisessa tai yksityisessä organisaatiossa, jossa on satoja tai tuhansia potentiaalisia osallistujia. Organisaationa voi toimi esimerkiksi kaupunginvaltuusto, yhdistys, yliopisto, kansalaisjärjestö, ammattiliitto, asukasyhteisö tai osuuskunta...

Decidimin avulla voit määrittää osallistumistiloja (aloitteet, ryhmät, prosessit tai kuulemiset) ja lisätä niihin useita käytettävissä olevia ominaisuuksia (tapaamiset, kyselyt, ehdotukset, äänestykset, äänestystulosten seuranta, jne.).

' - list: - n1: - title: 'Osallistuva
budjetointi' - content: 'Arvioi esitettyjä ehdotuksia ja mahdollista uudenlainen tapa jakaa yhteisiä resursseja.' - n2: - title: 'Kansalaisaloitteet
ja kuulemiset' - content: 'Vahvista yhteisöäsi kansalaisaloitteilla. Edistä asiaa koskevia äänestyksiä kuulemisten avulla.' - n3: - title: 'Poliittisen verkoston
voima' - content: 'Vie deliberaatio, yhteistyö ja päätökset uuteen ulottuvuuteen osallistamalla tuhansia ihmisiä reaaliaikaisesti.' - n4: - title: 'Demokraattinen
ja mukautuva järjestelmä' - content: 'Modulaarisen arkkitehtuurin ja skaalatuvan ohjelmakoodin ansiosta voit luoda tehokkaan demokraattisen hallintojärjestelmän kaikenlaisissa organisaatioissa.' - n5: - title: 'Suhtaudumme demokratiaan
erittäin vakavasti' - content: 'Decidim varmistaa ennennäkemättömällä tavalla avoimuuden, jäljitettävyyden ja tiedon eheyden. Se tarjoaa turvallisen, yksityisyyttä kunnioittavan ja luottamuksellisen ympäristön kaikille osallistujille.' - n6: - title: "Sinun alustasi.
Jaa se. Paranna sitä." - content: 'Alusta on suunniteltu täysin vapaiden ohjelmistojen avulla. Metadecidim-yhteisön avulla saat pääsyn myös avoimeen ja yhteisölliseen sisältöön.' - cta: - features: 'Näytä kaikki ominaisuudet' - values: 'Siirry sosiaaliseen sopimukseen' + intro: "

Voit käyttää Decidimiä julkisessa tai yksityisessä organisaatiossa, jossa on satoja tai tuhansia potentiaalisia osallistujia. Organisaationa voi toimi esimerkiksi kaupunginvaltuusto, yhdistys, yliopisto, kansalaisjärjestö, ammattiliitto, asukasyhteisö tai osuuskunta...

Decidimin avulla voit määrittää osallistumistiloja (aloitteet, ryhmät, prosessit tai kuulemiset) ja lisätä niihin useita käytettävissä olevia ominaisuuksia (tapaamiset, kyselyt, ehdotukset, äänestykset, äänestystulosten seuranta, jne.).

" page: feature1: - title: 'Osallistumisprosessit' - subtitle: 'Demokratisoi yhteiset asiat, askel askeleelta' - text: >- - Prosessit ovat tila, jonka avulla voidaan luoda, aktivoida/deaktivoida ja hallita erilaisia osallisuusprosesseja. Ne erotetaan muista tiloista siten, että ne on rakennettu eri vaiheisiin, joissa kaikki osat voidaan liittää. Esimerkkejä osallistuvista prosesseista ovat komitean jäsenten vaaliprosessi, osallistava budjetointi, strateginen suunnitteluprosessi, asetuksen tai normin yhteistoiminnallinen kirjoittaminen, kaupunkialueen suunnittelu tai julkisen politiikan suunnitelman laatiminen. - feature2: - title: 'Ryhmät' - subtitle: 'Yhteisöllisen itseohjautuvuuden voima' - text: >- - On tila, joka tarjoaa mahdollisuuden perustaa päätöksentekoelimiä tai -ryhmiä (neuvostot, työryhmät, komiteat jne. jotka kokoontuvat säännöllisesti, yksityiskohtaisesti niiden kokoonpano, listalle ja geolocating niiden kokouksia, ja mahdollisuus osallistua niihin (esimerkiksi: osallistuminen, jos istumapaikkoja ja kokoonpanon luonne niin sallii, asialistalle lisätään kohtia tai kommentoidaan kyseisen elimen tekemiä ehdotuksia ja päätöksiä). - feature3: - title: 'Kuulemiset' - subtitle: 'Oikeus päättää asioista demokraattisella tavalla' - text: >- - Kuulemiset ovat tila, joka mahdollistaa kansanäänestysten koordinoinnin, keskustelujen ja keskustelujen käynnistämisen, äänestysten tulosten julkaisemisen. se voidaan liittää turvalliseen sähköiseen äänestysjärjestelmään. - feature4: - title: 'Aloitteet' - subtitle: "Mahdollista jokaisen omat tavoitteet kaikkien ulottuville" - text: >- - Aloitteet ovat tila, joka antaa osallistujille mahdollisuuden luoda yhdessä aloitteita, määritellä niiden kehityspolut ja tavoitteet, kerätä hyväksyntöjä, keskustella, keskustellaan aloitteista ja levitetään niitä ja määritellään ne kohdat, joissa allekirjoituksia voidaan kerätä osallistujilta tai muille järjestön jäsenille avautuvilta keskusteluilta. - feature5: - title: 'Ehdotukset' - subtitle: 'Ideasi yksityiskohtaisesti' - text: >- - Ehdotusten osan avulla käyttäjä voi luoda ehdotuksen käyttäen luontiohjain, verrata sitä olemassa oleviin, julkaista sen alustalla ja sisältää lisätietoja, kuten geolocation tai liitetyt asiakirjat ja kuvat. Tämän komponentin avulla voit myös navigoida, suodattaa ja olla vuorovaikutuksessa ehdotusten kanssa. Lisäksi ehdotus-hautomo voit luoda yhteistyöehdotuksia. - feature6: - title: 'Äänestys' - subtitle: 'Anna oman äänesi kuulua' - text: >- - Äänestyskomponentti tarjoaa organisaatioille mahdollisuuden aktivoida erilaisia äänestys- tai tukijärjestelmiä ehdotusten ympärillä: rajoittamaton, rajattu tiettyyn kynnysarvoon, painotettu, kustannuspohjainen jne. - feature7: - title: 'Tulokset' - subtitle: 'Ei ehdotusta ilman vastausta' - text: >- - Tuloksia käytetään ehdotusten muuttamiseen tuloksiksi ja virallisten vastausten antamiseen niiden hyväksymisestä tai hylkäämisestä, eri ehdotusten yhdistäminen yhdeksi tulokseksi. - feature8: - title: 'Vastuullisuus' - subtitle: 'Avointa toimintaa alusta loppuun' - text: >- - Vastuullisuutta koskeva osa-alue tarjoaa mahdollisuuden jakaa tulokset edelleen hankkeisiin, määritellä ja soveltaa edistymistilannetta niiden täytäntöönpanon osalta, tulosten laajuuden osoittaminen siten, että ne on ryhmitelty kategorioiden ja soveltamisalan mukaan. - feature9: - title: 'Tapaamiset' - subtitle: 'Tapaa ja pysy kartalla yhteisistä asioista' - text: >- - Kokouksen osa tarjoaa organisaatioille ja osallistujille mahdollisuuden kutsua kokouksia, määrittää niiden sijainti ja aika, rekisteröidä ja rajoittaa osallistujia, määritellä kokouksen rakenne ja sisältö sekä julkaista pöytäkirjoja ja niitä koskevia ehdotuksia. + subtitle: Demokratisoi yhteiset asiat, askel askeleelta + text: Prosessit ovat tila, jonka avulla voidaan luoda, aktivoida/deaktivoida ja hallita erilaisia osallisuusprosesseja. Ne erotetaan muista tiloista siten, että ne on rakennettu eri vaiheisiin, joissa kaikki osat voidaan liittää. Esimerkkejä osallistuvista prosesseista ovat komitean jäsenten vaaliprosessi, osallistava budjetointi, strateginen suunnitteluprosessi, asetuksen tai normin yhteistoiminnallinen kirjoittaminen, kaupunkialueen suunnittelu tai julkisen politiikan suunnitelman laatiminen. + title: Osallistumisprosessit feature10: - title: 'Ehdotusaineistot' - subtitle: 'Analysoi, yhdistä ja luo uutta yhteisön avulla' - text: >- - Osallistuvia tekstejä koskevaa osaa voidaan käyttää muuntamaan pitkiä tekstiasiakirjoja erilaisiksi ehdotuksiksi tai tuloksiksi, ja päinvastoin, laatia ja näyttää yhtenäinen teksti, joka perustuu kokoelma ehdotuksia tai tuloksia. + subtitle: Analysoi, yhdistä ja luo uutta yhteisön avulla + text: Osallistuvia tekstejä koskevaa osaa voidaan käyttää muuntamaan pitkiä tekstiasiakirjoja erilaisiksi ehdotuksiksi tai tuloksiksi, ja päinvastoin, laatia ja näyttää yhtenäinen teksti, joka perustuu kokoelma ehdotuksia tai tuloksia. + title: Ehdotusaineistot feature11: - title: 'Konferenssit' - subtitle: 'Suuret tapahtumat saavat ensi-iltansa' - text: >- - Konferenssikomponenttin avulla organisaatio voi luoda verkkosivuston suurille tapahtumille määrittämällä aihealueiden ympärille muodostettavia ennalta määriteltyjä tapaamisia (esitykset, keskustelut, työpajat, jne.). Näistä tapahtumista muodostuu konferenssiohjelma ja osallistujalistat erilaisille tilaisuuksille. + subtitle: Suuret tapahtumat saavat ensi-iltansa + text: Konferenssikomponenttin avulla organisaatio voi luoda verkkosivuston suurille tapahtumille määrittämällä aihealueiden ympärille muodostettavia ennalta määriteltyjä tapaamisia (esitykset, keskustelut, työpajat, jne.). Näistä tapahtumista muodostuu konferenssiohjelma ja osallistujalistat erilaisille tilaisuuksille. + title: Konferenssit feature12: - title: 'Kyselyt' - subtitle: 'Yhteisösi mielipiteellä on merkitystä' - text: >- - Kyselykokonaisuutta voidaan käyttää kyselyjen suunnitteluun ja julkaisuun sekä niiden tulosten näyttämiseen ja lataamiseen. + subtitle: Yhteisösi mielipiteellä on merkitystä + text: Kyselykokonaisuutta voidaan käyttää kyselyjen suunnitteluun ja julkaisuun sekä niiden tulosten näyttämiseen ja lataamiseen. + title: Kyselyt feature13: - title: 'Satunnaisvalinta' - subtitle: 'Sattumanvaraisuuden mahdollistama tasa-arvoisuus ja oikeudenmukaisuus' - text: >- - Satunnaisvalintojen avulla voidaan valita ehdotuksia (esim. lautakunnan ehdokkaista) satunnaisesti toistettavissa olevalla menettelyllä, joka takaa puolueettoman ja yhdenmukaisen lopputuloksen. + subtitle: Sattumanvaraisuuden mahdollistama tasa-arvoisuus ja oikeudenmukaisuus + text: Satunnaisvalintojen avulla voidaan valita ehdotuksia (esim. lautakunnan ehdokkaista) satunnaisesti toistettavissa olevalla menettelyllä, joka takaa puolueettoman ja yhdenmukaisen lopputuloksen. + title: Satunnaisvalinta feature14: - title: 'Kommentit' - subtitle: 'Yhteisöllisen tiedon rakentaminen' - text: >- - Kommentointikomponentin avulla käyttäjät voivat kommentoida asioita sekä osoittaa mielipiteensä keskusteltavasta aiheesta esimerkiksi olemalla sen puolella, sitä vastaan tai neutraali. Käyttäjät voivat myös äänestää kommentteja ja vastata niihin. Kommenteista saa myös ilmoitukset järjestelmässä ja ne voidaan lähettää myös sähköpostiin. + subtitle: Yhteisöllisen tiedon rakentaminen + text: Kommentointikomponentin avulla käyttäjät voivat kommentoida asioita sekä osoittaa mielipiteensä keskusteltavasta aiheesta esimerkiksi olemalla sen puolella, sitä vastaan tai neutraali. Käyttäjät voivat myös äänestää kommentteja ja vastata niihin. Kommenteista saa myös ilmoitukset järjestelmässä ja ne voidaan lähettää myös sähköpostiin. + title: Kommentit feature15: - title: 'Sivut ja blogit' - subtitle: 'Pidä yhteisösi ajan tasalla ja tietoisena päivänpolttavista asioista' - text: >- - Sivut-komponenttia käytetään informatiivisten tekstisivujen luomiseen rikkaalla tekstisisällöllä, johon voidaan liittää kuvia ja videoita. Blogi-komponentti mahdollistaa artikkelien tai uutisten luomisen ja niiden navigoinnin kronologisessa järjestyksessä. + subtitle: Pidä yhteisösi ajan tasalla ja tietoisena päivänpolttavista asioista + text: Sivut-komponenttia käytetään informatiivisten tekstisivujen luomiseen rikkaalla tekstisisällöllä, johon voidaan liittää kuvia ja videoita. Blogi-komponentti mahdollistaa artikkelien tai uutisten luomisen ja niiden navigoinnin kronologisessa järjestyksessä. + title: Sivut ja blogit feature16: - title: 'Ilmoitukset' - subtitle: 'Yksilöityä tietoa mielenkiintoisista sisällöistä' - text: >- - Decidimin avulla voit seurata mitä tahansa osallistumistilaa tai -komponenttia sekä vastaanottaa päivityksiä aina kun jotain tapahtuu. + subtitle: Yksilöityä tietoa mielenkiintoisista sisällöistä + text: Decidimin avulla voit seurata mitä tahansa osallistumistilaa tai -komponenttia sekä vastaanottaa päivityksiä aina kun jotain tapahtuu. + title: Ilmoitukset feature17: - title: 'Uutiskirje' - subtitle: 'Yksinkertainen, mutta tehokas' - text: >- - Uutiskirje-komponentin avulla voidaan lähettää sähköposteja kaikille alustalle rekisteröityneille käyttäjille tai valikoivammin niille, jotka ovat osallistuneet tietyssä osallistumistilassa. + subtitle: Yksinkertainen, mutta tehokas + text: Uutiskirje-komponentin avulla voidaan lähettää sähköposteja kaikille alustalle rekisteröityneille käyttäjille tai valikoivammin niille, jotka ovat osallistuneet tietyssä osallistumistilassa. + title: Uutiskirje + feature2: + subtitle: Yhteisöllisen itseohjautuvuuden voima + text: 'On tila, joka tarjoaa mahdollisuuden perustaa päätöksentekoelimiä tai -ryhmiä (neuvostot, työryhmät, komiteat jne. jotka kokoontuvat säännöllisesti, yksityiskohtaisesti niiden kokoonpano, listalle ja geolocating niiden kokouksia, ja mahdollisuus osallistua niihin (esimerkiksi: osallistuminen, jos istumapaikkoja ja kokoonpanon luonne niin sallii, asialistalle lisätään kohtia tai kommentoidaan kyseisen elimen tekemiä ehdotuksia ja päätöksiä).' + title: Ryhmät + feature3: + subtitle: Oikeus päättää asioista demokraattisella tavalla + text: Kuulemiset ovat tila, joka mahdollistaa kansanäänestysten koordinoinnin, keskustelujen ja keskustelujen käynnistämisen, äänestysten tulosten julkaisemisen. se voidaan liittää turvalliseen sähköiseen äänestysjärjestelmään. + title: Kuulemiset + feature4: + subtitle: Mahdollista jokaisen omat tavoitteet kaikkien ulottuville + text: Aloitteet ovat tila, joka antaa osallistujille mahdollisuuden luoda yhdessä aloitteita, määritellä niiden kehityspolut ja tavoitteet, kerätä hyväksyntöjä, keskustella, keskustellaan aloitteista ja levitetään niitä ja määritellään ne kohdat, joissa allekirjoituksia voidaan kerätä osallistujilta tai muille järjestön jäsenille avautuvilta keskusteluilta. + title: Aloitteet + feature5: + subtitle: Ideasi yksityiskohtaisesti + text: Ehdotusten osan avulla käyttäjä voi luoda ehdotuksen käyttäen luontiohjain, verrata sitä olemassa oleviin, julkaista sen alustalla ja sisältää lisätietoja, kuten geolocation tai liitetyt asiakirjat ja kuvat. Tämän komponentin avulla voit myös navigoida, suodattaa ja olla vuorovaikutuksessa ehdotusten kanssa. Lisäksi ehdotus-hautomo voit luoda yhteistyöehdotuksia. + title: Ehdotukset + feature6: + subtitle: Anna oman äänesi kuulua + text: 'Äänestyskomponentti tarjoaa organisaatioille mahdollisuuden aktivoida erilaisia äänestys- tai tukijärjestelmiä ehdotusten ympärillä: rajoittamaton, rajattu tiettyyn kynnysarvoon, painotettu, kustannuspohjainen jne.' + title: Äänestys + feature7: + subtitle: Ei ehdotusta ilman vastausta + text: Tuloksia käytetään ehdotusten muuttamiseen tuloksiksi ja virallisten vastausten antamiseen niiden hyväksymisestä tai hylkäämisestä, eri ehdotusten yhdistäminen yhdeksi tulokseksi. + title: Tulokset + feature8: + subtitle: Avointa toimintaa alusta loppuun + text: Vastuullisuutta koskeva osa-alue tarjoaa mahdollisuuden jakaa tulokset edelleen hankkeisiin, määritellä ja soveltaa edistymistilannetta niiden täytäntöönpanon osalta, tulosten laajuuden osoittaminen siten, että ne on ryhmitelty kategorioiden ja soveltamisalan mukaan. + title: Vastuullisuus + feature9: + subtitle: Tapaa ja pysy kartalla yhteisistä asioista + text: Kokouksen osa tarjoaa organisaatioille ja osallistujille mahdollisuuden kutsua kokouksia, määrittää niiden sijainti ja aika, rekisteröidä ja rajoittaa osallistujia, määritellä kokouksen rakenne ja sisältö sekä julkaista pöytäkirjoja ja niitä koskevia ehdotuksia. + title: Tapaamiset + subtitle: For democratic organizations and collectives of any size and kind. + title: Ominaisuudet type1: - title: 'Osallistumistilat' - subtitle: 'Osallistujia varten, jotta he voivat luoda ehdotuksia ja tehdä päätöksiä' + title: Osallistumistilat type2: - title: 'Komponentit' - subtitle: 'Osallistujien ja osallistumistilojen väliseen vuorovaikutukseen' - other: - subtitle: 'Uskalla yhdistää komponentteja. Suunnittele ja ota käyttöön tehokas demokraattinen järjestelmä helposti ja mukauta se oman organisaatiosi tarpeisiin' - cta: - title: 'Tutustu Decidimin toimintaan syvemmin' - button: 'Toiminnallisuudet ja ominaisuudet' - partners: - notice: Yhteistyötoimijoiden logot ovat kyseisten yhteisöjen aineetonta omaisuutta ja kyseisten toimijoiden tekijänoikeuksien alaisia. Ne eivät ole Creative Commons By-SA -lisenssin alaisia materiaaleja, kuten muu tämän sivuston sisältö. - modules: - description: Kuvaus - explanation: Käyttämällä moduuleita voit laajentaa Decidimin toiminnallisuuksia ja jakaa toiminallisuuksia muiden Decidim-käyttäjien kanssa. Moduulit helpottavat Decidimin päivittämistä tulevaisuudessa. Tutustu dokumentaatioon omien moduulien rakentamisesta. - image: Kuva - name: Nimi - type: - community: Yhteisö - auth: Tunnistautumistavat - official: Viralliset - used_by: - explain: Nämä kaupungit, alueet ja järjestöt käyttävät jo Decidimiä - type: - city: Kaupungit - region: Alueet - organizations: Organisaatiot - testimonials: - n1: - quote: >- - Decidimin ansiosta olemme luoneet yhdessä kaupunkilaisten kanssa strategisen kaupunkisuunnitelman. Vuonna 2016 otimme käyttöön kunnallisen toimintasuunnitelman osallistumisprosessin avulla Decidim Barcelona -alustalla. Tällä hetkellä kyseinen suunnitelma pitää sisällään muun muassa noin 7 000 ehdotusta kaupunkilaisilta. Yksi alustan tuomia hyötyjä on ehdotusten käsittelyn ja hyväksyttyjen ehdotusten toimeenpanon läpinäkyvä seuranta alustalla. - org: Barcelonan kaupungintalo (2015-2019) - n2: - quote: >- - Som Energia (uusiutuvan energian käyttöä ajava osuuskunta) on luonut Decidimin avulla yhteisöllisen ja ystävällisen tavan osallistumiselle. Julkaisimme alustan vuonna 2018, jolloin alustan avulla pidettiin osuuskunnan yleiskokous ja kuukausia myöhemmin debatoimme osuuskunnan ylläpitämän koulun visuaalisesta uudelleensuunnittelusta ja yhteisöllisestä kehittämisestä muiden osallistumisprosessien lisäksi. Muutaman kuukauden aikana alustalle oli rekisteröitynyt yli 3 500 osallistujaa ja siellä oli viisi osallistumistilaa, kolme ryhmää ja sen kautta saatiin yli 1 300 ääntä yleiskokouksen äänestyksessä. - org: Som Energia - n3: - quote: >- - Decide Mérida -alusta avasi ennennäkemättömän mahdollisuuden kansalaisosallistumiselle kunnallisen kehityssuunnitelman laatimiselle Méridassa 2018-2020. Alustalla oli yli 3 000 vuorovaikutusta, joiden avulla keräsimme ehdotuksia, kommentteja, esityksiä ja tukea saavuttaaksemme suurimman mahdollisen yhteisymmärryksen siitä, mikä on parasta kaupungillemme. Epäilemättä Decide Mérida -alusta tulee jatkossakin olemaan tärkeässä roolissa Méridan kehittämisessä yhä osallistuvamman yhteisön suuntaan. - org: Meksikon Mérida Yucatánin kunnallinen johtaja. Meksikon Mérida Yucatánin kaupunginvaltuusto - n4: - quote: >- - Arvostamme erityisesti alustan demokraattisuutta ja demokraattisen ajattelun roolia sen kehityksessä. Demokraattiset periaatteet, kuten vastuullisuus, tasa-arvo ja läpinäkyvyys, ovat järjestelmän suunnittelun ytimessä. - org: Helsingin kaupunki - n5: - quote: >- - Olemme ratkaisseet lähes kaikki toteuttamamme osallistumisprosessit Decidimin toiminnallisuuden avulla. Työkaluna se on erittäin vahva, mutta sen vahvimmat ja meille tärkeimmät osa-alueet tuntuvat olevan sen ympärille kehittyvä yhteisö, niin alustan kehittäjien kuin sen käyttäjien osalta. Olemalla osana tätä yhteisöä, olemme oppineet arvostamaan yhteisöä ja sen kykyä ratkaista niitä haasteita, jotka liittyvät osallistuvan demokratian toteuttamiseen oikeassa maailmassa. - org: Méxicon kaupungin avoin hallinto - n6: - quote: >- - Kärsimme julkisen tilan puutteesta. On erityisen tärkeää, että saamme takaisin nämä julkiset tilat ihmisille. Avoimet alustat, kuten Decidim, mahdollistavat juuri tämän. Avoimen lähdekoodin ansiosta kuka tahansa voi käyttää alustaa hyödykseen, muokata sitä ja rakentaa sillä prosesseja. Tämän lisäksi hanke edustaa niitä arvoja, joita haluamme yhteiskuntamme edustavan ja joita varten yhteiskuntamme on rakennettu. - org: Mozilla Foundation - n7: - quote: >- - Prosessi alkoi lokakuussa 2019 Euroopan komission viestintä- ja eDemokratia-yksikössä yhteisessä tutkimuskeskuksessa, Euroopan komission tiede- ja osaamispalvelussa. Konferenssin tarpeiden analysointi ja erilaisten työkalujen vertaaminen johtivat avoimen lähdekoodin Decidim-työkalun valitsemiseen sen teknisen kypsyyden, laajan yhteisön ja soveltamiskyvyn takia. - org: OpenForum Europe tutkimusjohtaja, Euroopan unioni - faqs: - title: Usein kysytyt kysymykset - q01: - question: Mikä on Decidim? - answer: >- - Decidim on vapaa avoimen lähdekoodin osallistuvan demokratian alusta kaupungeille ja organisaatioille. Digitaalisen alustan lisäksi Decidim on muutakin: se on yhteisön vapaa ja avoin hanke sekä infrastruktuuri, johon sisältyy koodia, dokumentaatiota, suunnittelutyötä, koulutusta, oikeudellinen kehys, osallistumisen käyttöliittymä, yhteisöjä ja yhteinen visio. - q02: - question: Kuka Decidimiä käyttää? - answer: >- - Tällä hetkellä alustaa käytetään kaupungeissa ja organisaatioissa. Mikä tahansa yhteisö voi käyttää sitä, esimerkiksi kansalaisjärjestö, yliopisto, ammattiliitto, osuuskunta, naapurustoyhdistys jne. Tutustu [aktiivisten Decidim-palveluiden listaan](/usedby/). - q03: - question: Mitä Decidimin ylläpitäjä voi tehdä? - answer: >- - Voit määrittää Decidimin avulla helposti osallistumisprosesseja. Jos haluat tehdä strategisen suunnitelman tai esimerkiksi keskustella julkisista hankkeista yhteisen hyvän edistämiseksi, Decidim antaa sinulle oikeat työkalut. Voit määrittää alustalle osallistumistiloja (aloitteet, ryhmät, prosessit tai kuulemiset) ja lisätä niihin saatavilla olevia komponentteja (mm. tapaamiset, kyselyt, ehdotukset, äänestykset, toteutuksen seuranta). - q04: - question: Mitä osallistuja (käyttäjä) voi tehdä Decidimissä? - answer: >- - Decidim mahdollistaa tuhansien ihmisten itseorganisoitumisen demokraattisesti luomalla ehdotuksia, osallistumalla tapaamisiin, järjestämällä keskusteluja päätöksistä, päättämällä asioista erilaisten äänestysten avulla ja seuraamalla tehtyjen päätösten toteutumista. - q05: - question: Missä voin kokeilla alustaa? Haluan käyttää Decidimiä nyt, asentamatta sitä itse, jotta näen kuinka se toimii. - answer: 'Voit kokeilla Decidimiä [demo-alustan](/demo) avulla.' - q06: - question: Kuinka usein alustaa päivitetään? - answer: >- - Julkaisemme uuden version noin kerran kuukaudessa. Tutustu [alustan versiohistoriaan](https://github.com/decidim/decidim/releases). - q07: - question: Mitä tarvitsen asentaakseni Decidimin? - answer: >- - Decidimin asentaminen on helppoa, mutta tarvitset jonkin verran tietoa sen teknisistä vaatimuksista. Tutustu [Decidimin asennusohjeisiin](https://docs.decidim.org/en/install/). - q08: - question: Mistä voin löytää projektin etenemissuunnitelman ja suunnitellut ominaisuudet? - answer: Löydät [tiekartan hankkeen uusista ominaisuuksista GitHubista](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Mitä tarkoittaa, että Decidim on vapaa ja avointa lähdekoodia?' - answer: >- - Decidim on kansalaisosallistumisen alusta, jonka ihmiset ovat luoneet ihmisiä varten. Sen lähdekoodi on avointa ja siihen voi tutustua, sitä voi muokata ja parantaa kuka tahansa. Decidim-ohjelmisto on lisensoitu [AGPL-lisenssillä](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). Se tarkoittaa, että voit käyttää sitä, muuttaa sitä ja levittää johdannaisia versioita siitä, kunhan noudatat AGPL-lisenssiä. - q10: - question: >- - Minulla on uusia parannusehdotuksia alustan ominaisuuksiin. Haluan saada paremman käsityksen hankkeesta. Mitä voin tehdä? - answer: >- - Voit osallistua usealla tavalla. Yksi osallistumismahdollisuus on [Metadecidim](http://meta.decidim.org)-yhteisö. Jos haluat ehdottaa uusia ominaisuuksia, mene [yhteisön tiekartta-osioon](https://meta.decidim.org/processes/roadmap). Jos olet huomannut virheellistä toimintaa tai ohjelmointivirheitä, mene [yhteisön virheraportointi-osioon](https://meta.decidim.org/processes/bug-report). Jos haluat osalistua aktiivisemmin Metadecidim-yhteisöön, voit osallistua kuukausittaisiin [Metadecidimin operatiivisiin tapaamisiin](https://meta.decidim.org/assemblies/eix-comunitat). Liity osallistujaksi yhteisöön luomalla oma tilisi ja osallistu kanssamme järjestelmän kehittämiseen. Jos osaat ohjelmoida, [tervetuloa GitHubiin](https://github.com/decidim/decidim). Jos olet tutkija, sinua voisi kiinnostaa tulla [Metadecidimin LAB-seminaareihin](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Minulla on monia avoimia kysymyksiä... Keneltä voin kysyä niistä tai kuinka voin ratkaista ongelmani? - answer: >- - Paras tapa saada vastauksia kysymyksiisi nopeasti, on Metadecidim-yhteisö. Käy tutustumassa hankkeen [tukifoorumiin](https://meta.decidim. rg/processes/supportforum) ja etsi, onko joku muu kysynyt jo saman kysymyksen tai onko siihen jo vastattu. Jos et löydä mitään kysymystäsi vastaavaa, liity yhteisöön ja esitä kysymyksesi siellä. Jos et onnistu löytämään kysymykseesi vastausta, voit ottaa meihin myös yhteyttä [yhteydenottolomakkeen](/contact) kautta. - q12: - question: Onko olemassa mitään ohjeita alustan käytön aloittamiseen tai sen asentamiseen? - answer: >- - Voit tutustua uusimpaan versioon hallintakäyttäjän ohjeesta [dokumentaatio-osiosta](https://docs.decidim.org). - q13: - question: Mikä on sosiaalinen sopimus? - answer: >- - Kutsumme tällä nimellä menettelysääntöjämme demokraattisille takuille ja demokraattiselle osallistumiselle. Kaikkien yhteisömme jäsenien tulee tukea [sosiaalista sopimustamme](http://decidim.org/contract). - q14: - question: Kuinka Decidim eroaa Consul-hankkeesta? - answer: >- - Eroja on useita: ominaisuudet, joustavuus, ohjelmistoarkkitehtuuri, modulaarisuus, jne. Olemme [julkaisseet artikkelin (englanniksi)](/blog/2019-01-14-consul-comparison/), jossa yritämme vastata tähän kysymykseen. - q15: - question: Mikä on Metadecidim-yhteisö? - answer: >- - [Metadecidim](http://meta.decidim.org) on Decidimin yhteisö, joka auttaa Decidim-hankkeen suunnittelussa ja rakentamisessa. Tapaamme säännöllisesti [SOM-tilaisuuksissa (Metadecidimin operatiiviset tapaamiset)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) ja [tutkijoille suunnatuissa LAB-seminaareissa](https://meta.decidim.org/assemblies/eix-lab). Mene osoitteeseen [meta.decidim.org](http://meta.decidim.org) seuraamaan tilaisuuksia ja ilmoita, jos haluat osallistua niihin. Olet erittäin tervetullut näihin tilaisuuksiin! ;-) - q16: - question: Voinko liittyä Metadecidim-yhteisöön, vaikka en asu Barcelonassa? - answer: >- - Decidim on Barcelonassa syntynyt hanke ja siksi sillä on vahva alueellinen side kyseiseen kaupunkiin. Siitä huolimatta voit osallistua verkossa, osallistumisprosessien, keskustelujen ja muiden Metadecidim-yhteisön tarjoamien osallistumismahdollisuuksien kautta. Ehkä haluat kuitenkin joskus tulla Barceloonaan tapaamaan meitä! :) - q17: - question: Haluamme tehdä muodollisen yhteistyösopimuksen. Onko olemassa mitään malleja, joita voimme käyttää? - answer: Kyllä, meillä on virallisia malleja yhteistyösopimuksille. [Ota meihin yhteyttä](/contact). - q18: - question: Minkälaisia jäseniä Metadecidim-yhteisöön hyväksytään? - answer: Kaikenlaisia jäseniä, jotka on uskovat demokraattiseen yhteistyöhön ja joilla on oikea asenne sitä kohtaan. - q19: - question: Tarjoatteko maksuttoman asennuksen voittoa tavoittelemattomille järjestöille? - answer: >- - Kyllä, jos olet Barcelonassa toimiva järjestö. Lähetä meille viesti ja saat apua asennukseen Barcelonan kaupungin tutkimus-, kehitys- ja innovaatio-osastolta, joka työskentelee kansalaisoikeuksien, osallistumisen ja läpinäkyvyyden puolesta. - q20: - question: Tuetteko instituutioita? - answer: >- - Kyllä, jos olet kärsivällinen. Tällä hetkellä on paljon instituutioita, jotka haluavat käyttää Decidimiä ja autamme heitä askel askeleelta. [Ota yhteyttä](/contact), jos sinulla on mitä tahansa kysymyksiä aiheesta. Vastaamme sinulle mahdollisimman pian. - q21: - question: Mikä on Decidim-yhdistys? - answer: >- - Vapaan Decidim-ohjelmiston yhdistys ("Asociacion de Software Libre Decidim") on demokraattinen yhdistys, jonka tehtävänä on hallinnoida Decidim-yhteisöä. - q22: - question: Mistä voin saada lisää tietoa Decidim-yhdistyksestä? - answer: >- - [Decidim-yhdistyksen yleisryhmästä](https://meta.decidim.org/assemblies/general-assembly-association) löydät lisää tietoa meistä ja voit seurata tapaamisia ja tutustua yhdistykseen liittyvään tietoon (säännöt, oikeudelliset sopimukset, sisäiset määräykset). - q23: - question: Kuinka voin liittyä Decidim-yhdistykseen? - answer: >- - Tällä hetkellä hankkeeseen osallistuvat ihmiset voivat osallistua yhteistyökumppaneina. [Täällä selitämme yksityiskohtaisesti, kuinka voit liittyä jäseneksi](https://meta.decidim.org/assemblies/QuieroSerSocia). - q24: - question: Milloin Decidim-yhdistys perustettiin? - answer: >- - [Decidim-yhdistys perustettiin 16.2.2019 yhteisön ylimääräisessä kokouksessa](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), organisaation sääntöjen hyväksynnällä. + title: Komponentit + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Tukijat + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Vapaa ja turvallinen teknologia.
Demokraattisilla takuilla.
Demokratian uudelleenohjelmointi on nyt mahdollista Decidimin avulla. + subheading: Decidim on digitaalinen alusta
osallisuudelle ja kansalaisaktivismille + subhero: + cta: Explore all features + feature1: Strateginen
suunnittelu + feature2: Osallistuva
budjetointi + feature3: Aloitteet ja
kansalaisten kuuleminen + feature4: Osallistumis
-prosessit + feature5: Ryhmät + feature6: Sosiaaliset
verkostot + intro: Decidim auttaa kansalaisia, organisaatioita ja julkisia toimijoita itseohjautumaan demokraattisesti. Alusta mukautuu kaiken kokoisille toimijoille. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: He käyttävät jo Decidimiä legal-notice: - title: Oikeudellinen ilmoitus section-1: + paragraph:

Käytät Associació de Software Lliure Decidim:n ("Decidim", "Yhdistys", "Me") verkkosivustoa, joka on saatavissa verkko-osoitteessa https://decidim.org/ (jäljempänä "Verkkosivusto"), kotipaikkana Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Espanja ja ID-numero G67401174.

Voit ottaa meihin yhteyttä sähköpostitse osoitteen hola@decidim.org kautta

title: Keitä me olemme - paragraph: >- -

Käytät Associació de Software Lliure Decidim:n ("Decidim", "Yhdistys", "Me") verkkosivustoa, joka on saatavissa verkko-osoitteessa https://decidim.org/ (jäljempänä "Verkkosivusto"), kotipaikkana Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Espanja ja ID-numero G67401174.

Voit ottaa meihin yhteyttä sähköpostitse osoitteen hola@decidim.org kautta

section-2: + paragraph: "

Tämän Verkkosivuston tarkoitus on tarjota yleistä julkista tietoa Decidimistä, sen toiminnasta ja teknologiasta, jotka koostuvat vapaasta avoimen lähdekoodin osallistuvan demokratian alustasta kaupungeille ja organisaatioille sekä sen ympärille muodostuneen maailmanlaajuisen Decidim-yhteisön hallinnoinnista. Teknologiamme mahdollistaa kansalais- ja yhteisöhankkeiden kehittämisen laajemman yhteisöllisen osallistumisen avulla. Voit vapaasti kokeilla Decidim-alustaa julkisessa verkossa olevan demo-palvelumme kautta.

Tämän Oikeudellisen ilmoituksen sisältämien käyttöehtojen tarkoitus on säädellä tämän Verkkosivuston ja lain 34/2002 informaatioyhteiskunnan palveluista ja sähköisestä kaupasta (Law 34/2002 on Information Society Services and Electronic Commerce) sekä muiden sovellettavien lakien ja säädösten mukaan tarjottujen palveluiden ja/tai sisältöjen sallittua käyttöä.

" title: Tarkoitus - paragraph: >- -

Tämän Verkkosivuston tarkoitus on tarjota yleistä julkista tietoa Decidimistä, sen toiminnasta ja teknologiasta, jotka koostuvat vapaasta avoimen lähdekoodin osallistuvan demokratian alustasta kaupungeille ja organisaatioille sekä sen ympärille muodostuneen maailmanlaajuisen Decidim-yhteisön hallinnoinnista. Teknologiamme mahdollistaa kansalais- ja yhteisöhankkeiden kehittämisen laajemman yhteisöllisen osallistumisen avulla. Voit vapaasti kokeilla Decidim-alustaa julkisessa verkossa olevan demo-palvelumme kautta.

Tämän Oikeudellisen ilmoituksen sisältämien käyttöehtojen tarkoitus on säädellä tämän Verkkosivuston ja lain 34/2002 informaatioyhteiskunnan palveluista ja sähköisestä kaupasta (Law 34/2002 on Information Society Services and Electronic Commerce) sekä muiden sovellettavien lakien ja säädösten mukaan tarjottujen palveluiden ja/tai sisältöjen sallittua käyttöä.

section-3: + paragraph: '

Tälle verkkosivustolle on vapaa pääsy. Tämän Verkkosivuston tietoja ja/tai sisältöjä voi selata yleisesti täyttämättä hakemuslomakkeita. Muissa käyttötapauksissa pyydämme tutustumaan Tietosuojaselosteeseemme.

Käyttämällä tätä Verkkosivustoa hyväksyt tämän Oikeudellisen ilmoituksen sisältämät käyttöehdot ja sitoudut käyttämään Verkkosivustoa asianmukaisesti, huolellisesti, lainmukaisesti sekä erityisesti: (i) käyttämään Verkkosivustoa sen tarkoituksenmukaisiin käyttötarkoituksiin, eli tiedonsaantiin palveluistamme, sekä pidättäydyt käyttämästä Verkkosivustoa tai sen sisältöjä lainvastaisiin tai muihin tarkoituksiin, jotka ovat yleisen järjestyksen, moraalikäsitysten tai hyvien tapojen vastaisia; (ii) kunnioittamaan Verkkosivuston ja sen sisältöjen tekijän- ja muita oikeuksia, sekä kaikkia Decidimiin liittyviä oikeuksia; (iii) olemaan jäljentämättä, kopioimatta, muuntamatta, muokkaamatta, levittämättä, esittämättä julkisesti tai asettamatta julkisen yleisön saataville Verkkosivustoa tai sen sisältöjä tai mitää siihen tehtyjä muutoksia; (iv) olemaan vastuussa Decidimille aiheutuneista menetyksistä tai vahingoista, jotka johtuvat suorasti tai epäsuorasti Verkkosivustoa, "Lakitekstien" (tämä Oikeudellinen ilmoitus ja Tietosuojaseloste yhdessä) ehtoja ja soveltuvaa lainsäädäntöä kohtaan tekemistäsi väärinkäytöksistä.

' title: Verkkosivuston käyttö - paragraph: >- -

Tälle verkkosivustolle on vapaa pääsy. Tämän Verkkosivuston tietoja ja/tai sisältöjä voi selata yleisesti täyttämättä hakemuslomakkeita. Muissa käyttötapauksissa pyydämme tutustumaan Tietosuojaselosteeseemme.

Käyttämällä tätä Verkkosivustoa hyväksyt tämän Oikeudellisen ilmoituksen sisältämät käyttöehdot ja sitoudut käyttämään Verkkosivustoa asianmukaisesti, huolellisesti, lainmukaisesti sekä erityisesti: (i) käyttämään Verkkosivustoa sen tarkoituksenmukaisiin käyttötarkoituksiin, eli tiedonsaantiin palveluistamme, sekä pidättäydyt käyttämästä Verkkosivustoa tai sen sisältöjä lainvastaisiin tai muihin tarkoituksiin, jotka ovat yleisen järjestyksen, moraalikäsitysten tai hyvien tapojen vastaisia; (ii) kunnioittamaan Verkkosivuston ja sen sisältöjen tekijän- ja muita oikeuksia, sekä kaikkia Decidimiin liittyviä oikeuksia; (iii) olemaan jäljentämättä, kopioimatta, muuntamatta, muokkaamatta, levittämättä, esittämättä julkisesti tai asettamatta julkisen yleisön saataville Verkkosivustoa tai sen sisältöjä tai mitää siihen tehtyjä muutoksia; (iv) olemaan vastuussa Decidimille aiheutuneista menetyksistä tai vahingoista, jotka johtuvat suorasti tai epäsuorasti Verkkosivustoa, "Lakitekstien" (tämä Oikeudellinen ilmoitus ja Tietosuojaseloste yhdessä) ehtoja ja soveltuvaa lainsäädäntöä kohtaan tekemistäsi väärinkäytöksistä.

section-4: + paragraph: "

Kaikki immateriaalioikeudet tämän Verkkosivuston sisältöihin, mukaanlukien kuvat, tavaramerkit, logot, tunnusmerkit, äänet ja animaatiot, tekstit, äänet, visuaaliset tai audiovisuaaliset tallenteet sekä tietokannat, ovat Decidimin tai lisenssinantajien omaisuutta ja niitä suojaavat kansalliset ja kansainväliset lait. Nämä oikeudet pidätetään Decidimille ja/tai sen lisenssinantajille. Tämän verkkosivuston tai sen osien jäljentäminen, kopioiminen, julkinen esittäminen, jakelu, muuttaminen, muuntaminen, tuhoaminen, manipulointi ja mikä tahansa muu käyttö, mukaan lukien kopiointi ja uudelleenkäyttö, tuottoa tavoitellen tai tavoittelematta, suorasti tai epäsuorasti, väliaikaisesti tai pysyvästi, on ehdottomasti kielletty ilman Decidimin etukäteen antamaa kirjallista lupaa. Voimme ryhtyä oikeustoimiin ja/tai tuomioistuinten ulkopuolisiin toimiin asianmukaiseksi katsomallamme tavalla kaikissa näitä oikeuksia koskevissa rikkomuksissa.

" title: Tekijän- ja muut oikeudet - paragraph: >- -

Kaikki immateriaalioikeudet tämän Verkkosivuston sisältöihin, mukaanlukien kuvat, tavaramerkit, logot, tunnusmerkit, äänet ja animaatiot, tekstit, äänet, visuaaliset tai audiovisuaaliset tallenteet sekä tietokannat, ovat Decidimin tai lisenssinantajien omaisuutta ja niitä suojaavat kansalliset ja kansainväliset lait. Nämä oikeudet pidätetään Decidimille ja/tai sen lisenssinantajille. Tämän verkkosivuston tai sen osien jäljentäminen, kopioiminen, julkinen esittäminen, jakelu, muuttaminen, muuntaminen, tuhoaminen, manipulointi ja mikä tahansa muu käyttö, mukaan lukien kopiointi ja uudelleenkäyttö, tuottoa tavoitellen tai tavoittelematta, suorasti tai epäsuorasti, väliaikaisesti tai pysyvästi, on ehdottomasti kielletty ilman Decidimin etukäteen antamaa kirjallista lupaa. Voimme ryhtyä oikeustoimiin ja/tai tuomioistuinten ulkopuolisiin toimiin asianmukaiseksi katsomallamme tavalla kaikissa näitä oikeuksia koskevissa rikkomuksissa.

section-5: + paragraph: "

Decidim ei ole vastuussa kolmansien osapuolien verkkosivuista, joihin pääsee tämän Verkkosivuston kautta, eikä esitettyjen tietojen tarkkuudesta, totuudenmukaisuudesta tai oikeellisuudesta sellaisilla verkkosivuilla, jotka eivät ole sen itse kehittämiä. Mikäli Decidimille saatetaan tieto tämänkaltaisen sisällön tai linkkien laittomuudesta, se sitoutuu poistamaan ne tai estämään niiden käytön lain 34/2002 17 §:n (article 17 of Law 34/2002) mukaan sekä edellä mainitun lain 11 ja 16 §:n mukaisesti (articles 11 and 16 of the aforementioned Law).

Decidim ei myöskään ole vastuussa mistään vahingoista, jotka voivat aiheutua käyttäjän tietokoneelleen asentaman selaimen virheistä tai virheellisistä asetuksista. Decidim ei ole vastuussa mistään onnettomuudesta, vahingosta, välikohtauksesta tai teknisestä viasta, joka johtuu käyttäjän internet-yhteydestä.

Decidim pyrkii parhaansa mukaan ja mahdollisimman lyhyessä ajassa toteuttamaan virheiden ja puutteiden päivitykset ja korjaukset, mukaan lukien niiden, jotka ilmenevät pääsyssä ja/tai yhteyden muodostamisessa Verkkosivustoon ja/tai sen sisältöön, mutta ei takaa, ettei katkoksia, virheitä yhteyden muodostamisessa ja/tai pääsyssä Verkkosivustolle ja sen sisällön päivittymiseen esiintyisi.

Olet vastuussa Verkkosivuston käytöstä ja pääsystä siihen. Decidim ei ole vastuussa tälle Verkkosivustolle yhdistämisen ja/tai yhteyden muodostamisen yhteydessä esiintyvistä viruksista, tietoturvavirheistä, eikä vahingoista, joita voi aiheutua laitteillesi tai tiedostoillesi tai asiakirjoillesi, joita näille laitteille on tallennettu. Decidim ei myöskään ole vastuussa sellaisista kolmansien osapuolien aiheuttamista vahingoista, jotka ovat aiheutuneet Decidimin vaikutusvallan ulkopuolella olevasta laittomasta yhteyden kaappauksesta.

Decidim ei ole vastuussa velvoitteidesi rikkomisesta, jotka sisältyvät tähän Oikeudelliseen ilmoitukseen ja jotka hyväksyt yhdistäessäsi tälle Verkkosivustolle, etenkään immateriaalioikeuksien, tekijänoikeuksien, mainonta- ja kuvaoikeuksien tai muiden kolmansien osapuolien oikeuksien loukkauksista.

" title: Vastuu - paragraph: >- -

Decidim ei ole vastuussa kolmansien osapuolien verkkosivuista, joihin pääsee tämän Verkkosivuston kautta, eikä esitettyjen tietojen tarkkuudesta, totuudenmukaisuudesta tai oikeellisuudesta sellaisilla verkkosivuilla, jotka eivät ole sen itse kehittämiä. Mikäli Decidimille saatetaan tieto tämänkaltaisen sisällön tai linkkien laittomuudesta, se sitoutuu poistamaan ne tai estämään niiden käytön lain 34/2002 17 §:n (article 17 of Law 34/2002) mukaan sekä edellä mainitun lain 11 ja 16 §:n mukaisesti (articles 11 and 16 of the aforementioned Law).

Decidim ei myöskään ole vastuussa mistään vahingoista, jotka voivat aiheutua käyttäjän tietokoneelleen asentaman selaimen virheistä tai virheellisistä asetuksista. Decidim ei ole vastuussa mistään onnettomuudesta, vahingosta, välikohtauksesta tai teknisestä viasta, joka johtuu käyttäjän internet-yhteydestä.

Decidim pyrkii parhaansa mukaan ja mahdollisimman lyhyessä ajassa toteuttamaan virheiden ja puutteiden päivitykset ja korjaukset, mukaan lukien niiden, jotka ilmenevät pääsyssä ja/tai yhteyden muodostamisessa Verkkosivustoon ja/tai sen sisältöön, mutta ei takaa, ettei katkoksia, virheitä yhteyden muodostamisessa ja/tai pääsyssä Verkkosivustolle ja sen sisällön päivittymiseen esiintyisi.

Olet vastuussa Verkkosivuston käytöstä ja pääsystä siihen. Decidim ei ole vastuussa tälle Verkkosivustolle yhdistämisen ja/tai yhteyden muodostamisen yhteydessä esiintyvistä viruksista, tietoturvavirheistä, eikä vahingoista, joita voi aiheutua laitteillesi tai tiedostoillesi tai asiakirjoillesi, joita näille laitteille on tallennettu. Decidim ei myöskään ole vastuussa sellaisista kolmansien osapuolien aiheuttamista vahingoista, jotka ovat aiheutuneet Decidimin vaikutusvallan ulkopuolella olevasta laittomasta yhteyden kaappauksesta.

Decidim ei ole vastuussa velvoitteidesi rikkomisesta, jotka sisältyvät tähän Oikeudelliseen ilmoitukseen ja jotka hyväksyt yhdistäessäsi tälle Verkkosivustolle, etenkään immateriaalioikeuksien, tekijänoikeuksien, mainonta- ja kuvaoikeuksien tai muiden kolmansien osapuolien oikeuksien loukkauksista.

section-6: + paragraph:

Decidim voi muuttaa tätä Oikeudellista ilmoitusta, Tietosuojaselostetta ja/tai muita tähän Verkkosivustoon sovellettavaa sopimusluonteista tekstiä ilman etukäteisilmoitusta. Tällaiset muutokset tulevat voimaan niiden julkaisuajankohtana Verkkosivustolla.

Decidim voi myös lopettaa tai keskeyttää Verkkosivustoon liittyvät palvelut milloin tahansa. Mikäli mahdollista, Decidim varoittaa/ilmoittaa etukäteen tällaisesta lopettamisesta tai keskeyttämisestä tämän Verkkosivuston kautta.

title: Muutokset - paragraph: >- -

Decidim voi muuttaa tätä Oikeudellista ilmoitusta, Tietosuojaselostetta ja/tai muita tähän Verkkosivustoon sovellettavaa sopimusluonteista tekstiä ilman etukäteisilmoitusta. Tällaiset muutokset tulevat voimaan niiden julkaisuajankohtana Verkkosivustolla.

Decidim voi myös lopettaa tai keskeyttää Verkkosivustoon liittyvät palvelut milloin tahansa. Mikäli mahdollista, Decidim varoittaa/ilmoittaa etukäteen tällaisesta lopettamisesta tai keskeyttämisestä tämän Verkkosivuston kautta.

section-7: + paragraph:

Verkkosivustomme, verkkolomakkeen avulla lähetettyjen yhteydenottojesi tai lähettämiesi sähköpostien kautta kerättyjä henkilötietojasi käsitellään tarkasti Tietosuojaselosteemme mukaisesti.

title: Henkilötiedot - paragraph: >- -

Verkkosivustomme, verkkolomakkeen avulla lähetettyjen yhteydenottojesi tai lähettämiesi sähköpostien kautta kerättyjä henkilötietojasi käsitellään tarkasti Tietosuojaselosteemme mukaisesti.

section-8: + paragraph:

Tämä Verkkosivusto ei käytä evästeitä. Lisätietoja on saatavilla Tietosuojaselosteestamme.

title: Evästeet - paragraph: >- -

Tämä Verkkosivusto ei käytä evästeitä. Lisätietoja on saatavilla Tietosuojaselosteestamme.

section-9: + paragraph: '

Lakiteksteihimme, mukaan lukien tämä Oikeudellinen ilmoitus ja Tietosuojaselosteemme, sovelletaan Espanjan lakia. Barcelonan kaupungin tuomioistuimet ovat toimivaltaisia päättämään kaikista Verkkosivustomme käytöstä aiheutuvista erimielisyyksistä.

Viimeksi päivitetty: helmikuu 2022.

' title: Sovellettava laki ja tuomioistuimet - paragraph: >- -

Lakiteksteihimme, mukaan lukien tämä Oikeudellinen ilmoitus ja Tietosuojaselosteemme, sovelletaan Espanjan lakia. Barcelonan kaupungin tuomioistuimet ovat toimivaltaisia päättämään kaikista Verkkosivustomme käytöstä aiheutuvista erimielisyyksistä.

Viimeksi päivitetty: helmikuu 2022.

+ title: Oikeudellinen ilmoitus + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blogi + close_menu: Close menu + code: Koodi + community: Yhteisö + contact: Ota yhteyttä + contract: Sosiaalinen sopimus + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Dokumentaatio + faqs: UKK + features: Ominaisuudet + first-steps: First steps + home: Home + legal-notice: Oikeudellinen ilmoitus + menu: Menu + modules: Moduulit + partners: Yhteistyökumppanit + partnership-policy: Partnership policy + press: Lehdistö + privacy-policy: Tietosuojaseloste + text: Navigaatio + trademark: Trademark policy + use-cases: Use cases + used_by: Decidimiä käyttävät organisaatiot + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/fi" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Tietosuojaseloste section-1: + paragraph:

Associació de Software Lliure Decidim (Decidim", "Yhdistys" tai "me") omistaa tämän verkkosivuston, joka on saatavissa verkko-osoitteessa https://decidim.org/ (jäljempänä "Verkkosivusto"), ja toimii henkilötietojen rekisterinpitäjänä kaikille Verkkosivuston käyttäjille ("Sinä", "Käyttäjä").

Decidim on sitoutunut suojaamaan kaikkien Verkkosivuston Käyttäjien, kumppanijäsenten ja Decidim-yhteisön jäsenten yksityisyyttä. Tämä Tietosuojaseloste esittää Verkkosivuston kautta kerättyjen henkilötietojen käyttöön, mukaan lukien vapaan avoimen lähdekoodin osallistuvan demokratian alustamme demo-palvelu, sekä Decidimiin ja Decidim-yhteisön hallinnointiin liittyvien yksilöiden tietojen käsittelyyn liittyvät käytäntömme, joko tällä Verkkosivustolla tai millä tahansa muulla Decidimin hallinnoimalla alustalla.

Tämä Tietosuojaseloste on osa Lakitekstejämme yhdessä Oikeudellisen ilmoituksen kanssa.

title: Johdanto - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim", "Yhdistys" tai "me") omistaa tämän verkkosivuston, joka on saatavissa verkko-osoitteessa https://decidim.org/ (jäljempänä "Verkkosivusto"), ja toimii henkilötietojen rekisterinpitäjänä kaikille Verkkosivuston käyttäjille ("Sinä", "Käyttäjä").

Decidim on sitoutunut suojaamaan kaikkien Verkkosivuston Käyttäjien, kumppanijäsenten ja Decidim-yhteisön jäsenten yksityisyyttä. Tämä Tietosuojaseloste esittää Verkkosivuston kautta kerättyjen henkilötietojen käyttöön, mukaan lukien vapaan avoimen lähdekoodin osallistuvan demokratian alustamme demo-palvelu, sekä Decidimiin ja Decidim-yhteisön hallinnointiin liittyvien yksilöiden tietojen käsittelyyn liittyvät käytäntömme, joko tällä Verkkosivustolla tai millä tahansa muulla Decidimin hallinnoimalla alustalla.

Tämä Tietosuojaseloste on osa Lakitekstejämme yhdessä Oikeudellisen ilmoituksen kanssa.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Kerättävät henkilötiedot ja käsittelyn tarkoitus - paragraph: >- -

a. Verkkosivuston selaamisen yhteydessä kerättävät tiedot

Käyttäessään verkkosivustoamme Decidim käyttää Plausible-analytiikkaohjelmistoa. Kyseinen ohjelmisto pitää kaikki keräämänsä käyttäjätiedot täysin ja turvallisesti salattuna. Plausible Analyticsin tarkoituksena on seurata yleisiä liikennetrendejä verkkosivustolla, ei yksittäisiä vierailijoita. Jokainen HTTP-pyyntö lähettää IP-osoitteen ja käyttäjäagentin palvelimelle, joita käytetään luomaan yksilöivä tunniste, joka vaihtuu päivittäin ja perustuu näihin tietoihin. Tiedot anonymisoidaan suolaustekniikkaa hyödyntävällä hajautusalgoritmilla. Tämä luo satunnaisen kirjain- ja numeromerkkijonon, jota käytetään yksilöityjen vierailijoiden määrän selvittämiseen kultakin päivältä. IP-osoitteen ja käyttäjäagentin raakatietoja ei koskaan tallenneta lokeihin, tietokantoihin tai minnekään Plausible Analytics -ohjelmiston tallennusvälineelle. Vanhentuneet suolausarvot poistetaan 24 tunnin välein, jotta vierailijatietoja ei voida yhdistää eri päivien välillä. Tällä tavalla käyttäjien yksilöityjä henkilötietoja ei kerätä selatessasi verkkosivustoamme. Lisätietoja Plausible Analyticsin tietojenkäsittelystä saat vierailemalla heidän verkkosivustollaan osoitteessa https://plausible.io/privacy-focused-web-analytics

b. Demo-palvelussamme kerättävät tiedot

Decidim-alustan demo-palvelua, joka on saatavilla verkkosivuston kautta osoitteessa https://try.decidim.org/ on anonyymi, voi käyttää anonyyminä, koska kyseistä alustaa voi käyttää yleisten tunnusten avulla alustan toiminnan, ominaisuuksien ja mahdollisuuksien tutkimiseen ja tiedonkeruuseen Decidim-alustasta käyttäjien näkökulmasta.

Ainoastaan istuntoeväste ("Session_id") on aktivoitu, jonka tarkoituksena on hankkia tai määrittää istuntotunnus kunkin käyttäjän istunnolle. Tämä eväste on ehdottoman välttämätön verkkosivuston yksilöllisten istuntojen tunnistamiseen HTTP-protokollan avulla tehtyjen yhteyksien kautta ja käyttäjän istunnon tunnistamiseen kyseisessä verkkopalvelussa. Tällaiset välttämättömät evästeet eivät vaadi käyttäjän etukäteishyväksyntää Euroopan tietosuojaviranomaisen lausunnon 4/2012 mukaisesti koskien evästeiden etukäteishyväksynnän vaatimuksia.

c. Yhteydenottolomakkeista, sähköposteista tai muista viestintävälineistä kerättävät tiedot

Ihmisten ottaessa meihin yhteyttä yhteydenottolomakkeella, sähköpostilla tai vastaavalla viestintävälineellä, keräämme automaattisesti seuraavat tiedot: nimi, organisaatio, sähköpostiosoite ja lähetetyn viestin sisältö, jotta voimme vastata kommentteihin, pyyntöihin, ehdotuksiin, jne.

Lisäksi saatamme käsitellä näitä tietoja tilastotutkimustarkoituksiin käyttäen hyväksi pseudonymisointi- ja anonymisointitekniikoita, kuten tietojen yhdistämistä, mikä estää yksilöityjen Käyttäjien tunnistamisen tietojen jatkokäsittelyn yhteydessä.

d. Decidim-yhteisöstä kerättävät tiedot

Decidim käyttää muita tähän Verkkosivustoon linkitettyjä alustoja hallinnoidakseen Decidimin teknologian ympärille kehittynyttä yhteisöä, Decidim-yhteisön tapaamispaikkana, jossa suurin osa toiminnasta ja viestinnästä Decidimin ja sen käyttäjien välillä tapahtuu. Nämä alustat, kuten https://meta.decidim.org/ tai GitHub (https://github.com/decidim/decidim) ovat niiden omien käyttöehtojen ja tietosuojakäytäntöjen alaisia.

Siitä huolimatta Decidim voi käsitellä näiltä alustoilta kerättyjä Käyttäjän henkilötietoja kyseisillä alustoilla kehitettyjen yhteisöhankkeiden hallinnoimiseksi, erityisesti nämä henkilötiedot voivat olla yhteydessä näihin alustoihin, alustojen käyttäjäprofiileihin sekä kommentteihin ja huomautuksiin, joita käyttäjä voi esittää näiden alustojen kautta Decidim-hankkeisiin. Huomioi, että nämä tiedot voivat olla julkisia ja siten muiden käyttäjien saatavilla ja näkyvissä.

e. Kumppanijäseniltämme kerättävät tiedot

Jokainen henkilö tai organisaatio, joka haluaa osallistua vapaasti Decidim-yhteisöön, sen keskusteluihin, tapahtumien järjestämiseen, työryhmien tai yhteisöpäivien edistämiseen, sekä vapaan avoimen lähdekoodin avoimen demokratian alustamme koodin tai dokumentaation kehittämiseen, instanssien hallintaan, jne., voi halutessaan ryhtyä Decidimin jäseneksi, mikäli he ovat osoittaneet riittävää sitoutumista yhteisöön toteuttamalla jotain edellä mainituista toimista. Jäseneksi liittymisen voi tehdä täyttämällä ja lähettämällä hakemuslomakkeen, jonka Decidimin koordinointikomitea arvioi.

Decidim-jäsenten henkilötietoja käsitellään edellä mainittujen hankkeiden ja toimintojen hallinnointiin, jäsenmaksuihin liittyviin kirjanpidollisiin toimiin ja Decidim-hankkeiden ja toiminnan hallinnointiin yleisesti, jotta voimme taata kaiken tällaisen toiminnan sekä työtovereiden velvollisuuksien ja oikeuksien noudattavan Decidimin periaatteita ja arvoja.

section-3: + paragraph:

Henkilötietojen käsittelyn oikeusperusteet ovat seuraavat:

  • Käyttäjien ja kumppanien henkilötietojen käsittely on välttämätöntä solmiaksemme sopimuksen, joka koostuu Käyttäjien antamasta hyväksynnästä Verkkosivuston Lakiteksteille, tarjotaksemme heille kaiken tiedon Decidimistä ja sen teknologiasta, hankkeista ja toiminnasta, kuten myös mahdollistaaksemme heidän osallistumisen Decidimin toteuttamiin hankkeisiin ja toimintaan.
  • Voimme myös käsitellä henkilötietojasi kun annat meille nimenomaisen suostumuksesi julkaisujen tekemiseen Decidimiin liittyvistä hankkeista ja toiminnasta, joihin olet osallistunut, lehdistötiedotteisiin tai muihin viestintämuotoihin ja levitykseen Decidimin toiminnasta, kuten myös säännöllisen tiedon vastaanottamiseen ja/tai ottaessasi meihin yhteyttä Verkkosivuston yhteydenottolomakkeen kautta tai sähköpostilla.
  • Lisäksi voimme käsitelläsi tietojasi oikeutettujen etujemme perusteella toteuttaaksemme tilastollisia tutkimuksia tai muita tiedontuottotapoja käyttämällä pseudonymisointi- ja mahdollisuuksien mukaan anonymisointitoimenpiteitä, kuten tietojen yhdistäminen, suojataksemme Käyttäjien yksityisyyttä GDPR 89 artiklan mukaisesti.

Tietyissä tilanteissa voimme käsitellä tietojasi tämän selosteen mukaisesti noudattaaksemme meitä koskevia lakisääteisiä tai asetusten mukaisia velvotteita.

title: Käsittelyn oikeusperuste - paragraph: >- -

Henkilötietojen käsittelyn oikeusperusteet ovat seuraavat:

  • Käyttäjien ja kumppanien henkilötietojen käsittely on välttämätöntä solmiaksemme sopimuksen, joka koostuu Käyttäjien antamasta hyväksynnästä Verkkosivuston Lakiteksteille, tarjotaksemme heille kaiken tiedon Decidimistä ja sen teknologiasta, hankkeista ja toiminnasta, kuten myös mahdollistaaksemme heidän osallistumisen Decidimin toteuttamiin hankkeisiin ja toimintaan.
  • Voimme myös käsitellä henkilötietojasi kun annat meille nimenomaisen suostumuksesi julkaisujen tekemiseen Decidimiin liittyvistä hankkeista ja toiminnasta, joihin olet osallistunut, lehdistötiedotteisiin tai muihin viestintämuotoihin ja levitykseen Decidimin toiminnasta, kuten myös säännöllisen tiedon vastaanottamiseen ja/tai ottaessasi meihin yhteyttä Verkkosivuston yhteydenottolomakkeen kautta tai sähköpostilla.
  • Lisäksi voimme käsitelläsi tietojasi oikeutettujen etujemme perusteella toteuttaaksemme tilastollisia tutkimuksia tai muita tiedontuottotapoja käyttämällä pseudonymisointi- ja mahdollisuuksien mukaan anonymisointitoimenpiteitä, kuten tietojen yhdistäminen, suojataksemme Käyttäjien yksityisyyttä GDPR 89 artiklan mukaisesti.

Tietyissä tilanteissa voimme käsitellä tietojasi tämän selosteen mukaisesti noudattaaksemme meitä koskevia lakisääteisiä tai asetusten mukaisia velvotteita.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Tietojen julkaisu - paragraph: >- -

Käsittelemme henkilötietojasi luottamuksellisesti ja sovellettavan lainsäädännön mukaisesti. Ellei toisin ole mainittu, henkilötietojasi ei luovuteta kolmansille osapuolille.

Erityisesti luovutamme henkilötietojasi seuraavasti:

  • Voimme antaa pääsyn henkilötietoihisi IT-palveluntarjoajillemme niiden sopimusten mukaisesti, joita kyseiset toimijat ovat solmineet Decidimin kanssa. Muiden muassa amerikkalainen yritys Netlify, Inc., joka tarjoaa meille verkkosivuston hosting-palveluita. Decidim on allekirjoittanut Netlifyn kanssa henkilötietojen käsittelysopimuksen, joka pitää sisällään Euroopan komission hyväksymät vakiosopimuslausekkeet, taatakseen asianmukaisen henkilötietojesi käsittelyn. Lisätietoja siitä, miten Netlify käsittelee henkilötietojasi, on saatavilla täältä: https://www.netlify.com/gdpr-ccpa.
  • Voimme antaa tiedot julkishallinnon tai viranomaisten käyttöön tutkimustarkoituksiin petosepäilyissä, häirintätapauksissa tai muissa lain- tai säädösten vastaisissa tapauksissa tai Verkkosivuston ehtojen rikkomuksissa.

Mikäli haluat lisätietoja palveluntarjoajistamme, jotka siirtävät henkilötietoja kansainvälisesti, ota meihin yhteyttä sähköpostitse osoitteella privacy@decidim.org.

section-5: + paragraph: "

Säilytämme henkilötietojasi ainoastaan niin kauan kuin niiden keräämisen tarkoituksen täyttämiseksi niitä on tarpeen säilyttää tai noudattaaksemme laillisia, kirjanpidollisia tai tietoja koskevia vaatimuksia.

Määrittääksemme asianmukaisen ajan henkilötietojen säilyttämiseen, otamme huomioon henkilötietojen määrän, luonteen ja arkaluonteisuuden, henkilötietojesi luvattomasta käytöstä tai luovuttamisesta aiheutuvan haittariskin, henkilötietojen käsittelyn tarkoituksen, käsittelyn tarkoituksen saavuttamisen muilla keinoin sekä sovellettavat oikeudelliset vaatimukset.

" title: Tietojen säilyttäminen - paragraph: >- -

Säilytämme henkilötietojasi ainoastaan niin kauan kuin niiden keräämisen tarkoituksen täyttämiseksi niitä on tarpeen säilyttää tai noudattaaksemme laillisia, kirjanpidollisia tai tietoja koskevia vaatimuksia.

Määrittääksemme asianmukaisen ajan henkilötietojen säilyttämiseen, otamme huomioon henkilötietojen määrän, luonteen ja arkaluonteisuuden, henkilötietojesi luvattomasta käytöstä tai luovuttamisesta aiheutuvan haittariskin, henkilötietojen käsittelyn tarkoituksen, käsittelyn tarkoituksen saavuttamisen muilla keinoin sekä sovellettavat oikeudelliset vaatimukset.

section-6: + paragraph: "

Olemme toteuttaneet lain vaatimat turvatoimet ja henkilötietojen suojausmenetelmät taataksemme tietojesi luottamuksellisuuden ja eheyden sekä suojataksemme tietojasi luvattomalta pääsyltä, muutoksilta tai tuhoutumiselta.

" title: Turvatoimet - paragraph: >- -

Olemme toteuttaneet lain vaatimat turvatoimet ja henkilötietojen suojausmenetelmät taataksemme tietojesi luottamuksellisuuden ja eheyden sekä suojataksemme tietojasi luvattomalta pääsyltä, muutoksilta tai tuhoutumiselta.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Rekisteröityjen oikeudet - paragraph: >- -

Sinulla on tietosuojalakien mukaiset oikeudet henkilötietoihisi liittyen. Erityisesti sinulla on oikeus:

  • Pyytää pääsyä henkilötietoihisi (tunnetaan yleisesti nimellä "oikeus saada pääsy henkilötietoihin"). Tämän oikeuden kautta voit saada jäljennöksen hallussamme olevista henkilötiedoistasi ja tarkastaa, että käsittelemme niitä lain mukaisesti.
  • Pyytää oikaisua hallussamme oleviin henkilötietoihisi. Tämän oikeuden kautta voit pyytää virheellisen tai epätarkan tiedon korjaamista, mutta meidän on mahdollisesti tarkistettava antamiesi uusien tietojen oikeellisuus.
  • Pyytää poistamaan henkilötietosi. Tämän oikeuden kautta voit pyytää meitä poistamaan henkilötietosi, mikäli niiden käsittelyn jatkamiseen ei ole hyvää syytä. Sinulla on myös oikeus pyytää meitä poistamaan henkilötietosi, jos olet onnistuneesti käyttänyt oikeuttasi vastustaa henkilötietojesi käsittelyä (lisätietoja alla), mikäli olemme käsitelleet henkilötietojasi lain vastaisesti tai mikäli meidän täytyy poistaa henkilötietosi noudattaaksemme paikallisia lakeja. Huomioi kuitenkin, että emme välttämättä aina pysty toteuttamaan poistopyyntöäsi erityisistä oikeudellisista syistä, joista ilmoitamme sinulle tarvittaessa pyyntösi yhteydessä.
  • Vastustaa henkilötietojesi käsittelyä, jos käsittely perustuu oikeutettuun etuun (tai kolmannen osapuolen oikeutettuun etuun) ja omaan erityistilanteeseesi liittyy jotain sellaista, minkä takia haluat vastustaa henkilötietojesi käsittelyä tällä perusteella kokiessasi, että käsittely vaikuttaa perusoikeuksiisi tai -vapauksiisi. Sinulla on myös oikeus vastustaa henkilötietojesi käsittelyä suoramarkkinointitarkoituksiin. Joissain tapauksissa voimme osoittaa, että meillä on pakottavia lakiperusteita käsitellä henkilötietojasi, mikä ohittaa oikeutesi ja vapautesi.
  • Rajoittaa henkilötietojesi käsittelyä. Tämän oikeuden kautta voit pyytää meitä keskeyttämään henkilötietojesi käsittelyn seuraavissa tilanteissa: (a) haluat meidän varmistavan tietojesi oikeellisuuden; (b) haluat meidän säilyttävän tietosi vaikka käsittelymme olisi lain vastaista; (c) haluat meidän säilyttävän tietosi oikeudellisten vaatimusten esittämiseen, tekemiseen tai puolustamiseen, vaikka emme enää tarvitsisi tietojasi; tai (d) olet vastustanut henkilötietojesi käsittelyä, mutta meidän on tarkistettava, onko meillä oikeudellisia perusteita jatkaa niiden käsittelyä.
  • Pyytää siirtämään henkilötietosi kolmannelle osapuolelle (oikeus henkilötietojen siirtämiseen). Toimitamme sinulle tai valitsemallesi kolmannelle osapuolelle henkilötietosi jäsennellyssä, yleisesti käytetyssä ja koneellisesti luettavassa muodossa. Huomioi, että tämä oikeus koskee vain automatisoituja tietojasi, joiden käsittelyyn annoit alun perin suostumuksen tai joita käytimme solmiaksemme sopimuksen kanssasi.
  • Peruuttaa suostumuksesi henkilötietojen käsittelyyn milloin tahansa, jos henkilötietojesi käsittely perustuu antamaasi suostumukseen. Tämä ei kuitenkaan vaikuta ennen peruuttamista suorittamamme henkilötietojen käsittelyn lainmukaisuuteen. Jos peruutat suostumuksesi, emme välttämättä voi tarjota sinulle tiettyjä tuotteita tai palveluita. Kerromme sinulle mikäli näin on, kun vastaamme henkilötietojesi käsittelyn peruutuspyyntöösi.

Sinulla on myös oikeus tehdä valitus toimivaltaiselle viranomaiselle, tässä tapauksessa Espanjan tietosuojavirastolle (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Espanja.

section-8: + paragraph: "

Pidätämme oikeuden muuttaa tämän Tietosuojaselosteen ehtoja ja ilmoitamme sinulle selkeällä ilmoituksella näistä muutoksista sähköpostitse tai Verkkosivustollamme ja tässä Tietosuojaselosteessa. Jatkamalla palveluidemme käyttöä tällaisten päivitysten jälkeen, sinun katsotaan hyväksyvän uudet ehdot. Jos et hyväksy ehtojen päivitystä, ilmoita siitä meille, niin poistamme Tilisi ja kaikki siihen liittyvät henkilötietosi (poislukien sellaiset tiedot, jotka on säilytettävä lain vaatimiin tarkoituksiin), minkä jälkeen et voi jatkaa palveluidemme käyttöä.

Ellei jokin paikallinen säännös muuta määrää, tähän Tietosuojaselosteeseen sovelletaan Espanjan lakeja.

Viimeksi päivitetty: helmikuu 2022.

" title: Yleiset asiat - paragraph: >- -

Pidätämme oikeuden muuttaa tämän Tietosuojaselosteen ehtoja ja ilmoitamme sinulle selkeällä ilmoituksella näistä muutoksista sähköpostitse tai Verkkosivustollamme ja tässä Tietosuojaselosteessa. Jatkamalla palveluidemme käyttöä tällaisten päivitysten jälkeen, sinun katsotaan hyväksyvän uudet ehdot. Jos et hyväksy ehtojen päivitystä, ilmoita siitä meille, niin poistamme Tilisi ja kaikki siihen liittyvät henkilötietosi (poislukien sellaiset tiedot, jotka on säilytettävä lain vaatimiin tarkoituksiin), minkä jälkeen et voi jatkaa palveluidemme käyttöä.

Ellei jokin paikallinen säännös muuta määrää, tähän Tietosuojaselosteeseen sovelletaan Espanjan lakeja.

Viimeksi päivitetty: helmikuu 2022.

+ title: Tietosuojaseloste + testimonials: + n1: + org: Barcelonan kaupungintalo (2015-2019) + quote: Decidimin ansiosta olemme luoneet yhdessä kaupunkilaisten kanssa strategisen kaupunkisuunnitelman. Vuonna 2016 otimme käyttöön kunnallisen toimintasuunnitelman osallistumisprosessin avulla Decidim Barcelona -alustalla. Tällä hetkellä kyseinen suunnitelma pitää sisällään muun muassa noin 7 000 ehdotusta kaupunkilaisilta. Yksi alustan tuomia hyötyjä on ehdotusten käsittelyn ja hyväksyttyjen ehdotusten toimeenpanon läpinäkyvä seuranta alustalla. + n2: + org: Som Energia + quote: Som Energia (uusiutuvan energian käyttöä ajava osuuskunta) on luonut Decidimin avulla yhteisöllisen ja ystävällisen tavan osallistumiselle. Julkaisimme alustan vuonna 2018, jolloin alustan avulla pidettiin osuuskunnan yleiskokous ja kuukausia myöhemmin debatoimme osuuskunnan ylläpitämän koulun visuaalisesta uudelleensuunnittelusta ja yhteisöllisestä kehittämisestä muiden osallistumisprosessien lisäksi. Muutaman kuukauden aikana alustalle oli rekisteröitynyt yli 3 500 osallistujaa ja siellä oli viisi osallistumistilaa, kolme ryhmää ja sen kautta saatiin yli 1 300 ääntä yleiskokouksen äänestyksessä. + n3: + org: Meksikon Mérida Yucatánin kunnallinen johtaja. Meksikon Mérida Yucatánin kaupunginvaltuusto + quote: Decide Mérida -alusta avasi ennennäkemättömän mahdollisuuden kansalaisosallistumiselle kunnallisen kehityssuunnitelman laatimiselle Méridassa 2018-2020. Alustalla oli yli 3 000 vuorovaikutusta, joiden avulla keräsimme ehdotuksia, kommentteja, esityksiä ja tukea saavuttaaksemme suurimman mahdollisen yhteisymmärryksen siitä, mikä on parasta kaupungillemme. Epäilemättä Decide Mérida -alusta tulee jatkossakin olemaan tärkeässä roolissa Méridan kehittämisessä yhä osallistuvamman yhteisön suuntaan. + n4: + org: Helsingin kaupunki + quote: Arvostamme erityisesti alustan demokraattisuutta ja demokraattisen ajattelun roolia sen kehityksessä. Demokraattiset periaatteet, kuten vastuullisuus, tasa-arvo ja läpinäkyvyys, ovat järjestelmän suunnittelun ytimessä. + n5: + org: Méxicon kaupungin avoin hallinto + quote: Olemme ratkaisseet lähes kaikki toteuttamamme osallistumisprosessit Decidimin toiminnallisuuden avulla. Työkaluna se on erittäin vahva, mutta sen vahvimmat ja meille tärkeimmät osa-alueet tuntuvat olevan sen ympärille kehittyvä yhteisö, niin alustan kehittäjien kuin sen käyttäjien osalta. Olemalla osana tätä yhteisöä, olemme oppineet arvostamaan yhteisöä ja sen kykyä ratkaista niitä haasteita, jotka liittyvät osallistuvan demokratian toteuttamiseen oikeassa maailmassa. + n6: + org: Mozilla Foundation + quote: Kärsimme julkisen tilan puutteesta. On erityisen tärkeää, että saamme takaisin nämä julkiset tilat ihmisille. Avoimet alustat, kuten Decidim, mahdollistavat juuri tämän. Avoimen lähdekoodin ansiosta kuka tahansa voi käyttää alustaa hyödykseen, muokata sitä ja rakentaa sillä prosesseja. Tämän lisäksi hanke edustaa niitä arvoja, joita haluamme yhteiskuntamme edustavan ja joita varten yhteiskuntamme on rakennettu. + n7: + org: OpenForum Europe tutkimusjohtaja, Euroopan unioni + quote: Prosessi alkoi lokakuussa 2019 Euroopan komission viestintä- ja eDemokratia-yksikössä yhteisessä tutkimuskeskuksessa, Euroopan komission tiede- ja osaamispalvelussa. Konferenssin tarpeiden analysointi ja erilaisten työkalujen vertaaminen johtivat avoimen lähdekoodin Decidim-työkalun valitsemiseen sen teknisen kypsyyden, laajan yhteisön ja soveltamiskyvyn takia. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Kiitos yhteydenotostasi. Palaamme asiaan pian. + title: Kiitos yhteydenotostasi + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/fr.yml b/locales/fr.yml index 3fefda91..00136f59 100644 --- a/locales/fr.yml +++ b/locales/fr.yml @@ -1,448 +1,589 @@ +--- fr: - path: '/fr' - activeLang: 'Français' - nav: - text: 'Navigation' - demo: 'Démo' - community: 'Communauté' - contract: 'Contrat social' - code: 'Code' - docs: - title: 'Documentation' - path: 'https://docs.decidim.org/' - blog: 'Actualités' - features: 'Fonctionnalités' - faqs: 'Foire aux questions' - contact: 'Contact' - used_by: 'Cas d''usages' - partners: 'Partenaires' - modules: 'Modules' - press: 'Presse' - legal-notice: 'Mentions légales' - privacy-policy: 'Politique de confidentialité' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Démocratie, technologie et justice mondiale | 20, 21 et 22 Octobre' - subtitle: 'Candidatez' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest est un programme intensif de 3 jours d''activités consacré au projet Decidim. La démocratie participative et les outils open source pour l''intelligence collective à l''ère de la démocratie mondiale.' - index: - hero: - heading: 'démocratie participative libre et open source pour les villes et les organisations' - subheading: 'Decidim est une plateforme numérique
pour la participation des citoyens' - intro: 'Technologie libre et sûre.
Avec toutes les garanties démocratiques.
La modernisation de la démocratie est maintenant possible avec Decidim.' - video: - play: 'Lire la vidéo' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Fermer la vidéo' - subhero: - intro: 'Decidim aide les citoyens, les organisations et les institutions publiques à s''organiser démocratiquement à toutes les échelles.' - feature1: 'Planification
stratégique' - feature2: 'Budgets
participatifs' - feature3: 'Initiatives et
consultations citoyennes' - feature4: 'Processus
participatifs' - feature5: 'Assemblées' - feature6: 'Communication
en réseau' - used_by: - title: 'Ils utilisent déjà Decidim' - cta: 'Tout voir' - cta: - title: 'débutez avec Decidim aujourd''hui' - button: - code: 'Code sur Github' - footer: - supported_by: 'Avec le soutien de' - attribution: '- Creative Commons By-SA' - demo: - title: Démo en ligne - p1: Explorez librement la plateforme Decidim avec notre démo en ligne. - p2: Decidim est opérationnel sur plusieurs instances que vous pouvez visiter et explorer, Decidim Barcelona de la ville de Barcelone ou encore celles de Gavà et de L'Hospitalet. Il s'agit d'instances en production, évitez les tests, car vous n'êtes peut-être pas citoyen de ces municipalités, et vous ne pouvez pas explorer ces sites en tant qu'administrateur. - p3: Si vous voulez aller plus loin, vous pouvez tester Decidim sur notre site de démo Decidim (grâce à nos développeurs chez aLabs). Accédez au site de démonstration et explorez librement le potentiel de Decidim et de ses fonctionnalités. - p4: Vous pouvez vous connecter en tant qu'Administrateur (nom d'utilisateur "admin@example.org" et mot de passe "decidim123456"). - button: Démo en ligne + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, notre communauté' - subtitle: 'Une communauté démocratique qui gère le projet Decidim dans toutes ses dimensions' - intro: 'Metadecidim est une communauté qui collabore à la conception de la plate-forme et à la construction du projet. Ensemble, nous pouvons concevoir et développer de nouvelles fonctionnalités et rapporter des bugs pour améliorer continuellement la plate-forme.' - cta: 'Premiers pas' - features: - title: 'Proposer de nouvelles fonctionnalités' - subtitle: 'Concevoir et développer Decidim tous ensemble' - text: 'Vous pouvez créer des débats sur l''avenir de Decidim ou proposer de nouvelles fonctionnalités ou améliorations. Les propositions peuvent être approuvées et commentaires, afin de montrer, par exemple, l''intérêt qu''elles suscitent pour la communauté et la valeur de leur développement. Propositions ayant un sponsor (comme un conseil municipal ou toute autre entité), responsable de la recherche et de la fourniture des ressources nécessaires à la réalisation de leur développement, sera utile pour le projet.' - cta: 'Entrez et participez maintenant' - bug: - title: 'Signaler un bug' - subtitle: 'Collaboration pour l''amélioration progressive' - text: 'Chaque nouvelle version de Decidim intègre de nouvelles fonctionnalités et des améliorations d''utilisabilité, mais tout ne fonctionne pas au début et des erreurs peuvent apparaître. Ici, vous pouvez rapporter les bogues que vous trouvez et aider les développeurs à les corriger rapidement.' - cta: 'Entrez et participez maintenant' - img_alt: 'Photo de la communauté Decidim à la réunion Metadecidim 2016' - timeline: - title: 'Conception collaborative de fonctionnalités' - step1: - title: 'Nouvelle proposition' - text: 'Description de la fonction' - step2: - title: 'Proposition validée' - text: 'Validation technique et technopolitique' - step3: - title: 'Proposition planifiée' - text: 'Ressources pour le développement (partagé ou non)' - step4: - title: 'Problème' - text: 'Description technique' - step5: - title: 'Demande de tirage' - text: 'Code développé' - step6: - title: 'Fonctionnalité terminée' - text: 'Valiable à la prochaine version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Premiers pas + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Photo de la communauté Decidim à la réunion Metadecidim 2016 + intro: Metadecidim est une communauté qui collabore à la conception de la plate-forme et à la construction du projet. Ensemble, nous pouvons concevoir et développer de nouvelles fonctionnalités et rapporter des bugs pour améliorer continuellement la plate-forme. + subtitle: Une communauté démocratique qui gère le projet Decidim dans toutes ses dimensions + title: Metadecidim, notre communauté contact: - title: Contactez-nous - bot_field: "Ne remplissez pas ceci si vous êtes humain:" - name: Nom - entity: Entité + bot_field: 'Ne remplissez pas ceci si vous êtes humain:' email: Email - subject: Objet message: Message + name: Nom privacy_policy: - accept: J'accepte la Politique de confidentialité - message: >- -

Lorsque des personnes nous contactent par le formulaire de contact, par e-mail ou par des moyens de communication similaires, nous recueillerons automatiquement les informations suivantes : nom, entité, adresse e-mail et le contenu du message de l'Utilisateur afin de répondre à vos commentaires, demandes, suggestions, etc.

En outre, nous pouvons traiter ces données pour des études statistiques par pseudonymisation et même des techniques d'anonymisation, tels que l'agrégation des données, empêchant ce traitement ultérieur d'identifier les Utilisateurs individuellement.

+ accept: I accept the Privacy Policy + message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Envoyer - thanks: - title: Merci pour votre e-mail - message: Merci de nous contacter, nous vous répondrons sous peu. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contactez-nous + demo: + button: Démo en ligne + p1: Explorez librement la plateforme Decidim avec notre démo en ligne. + strong: Try Online + title: Démo en ligne + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Foire aux questions + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Fonctionnalités' - intro: '

Vous pouvez utiliser Decidim dans une organisation publique ou privée, avec des centaines ou des milliers de participants potentiels, comme un conseil municipal, une association, une université, une ONG, un syndicat, un collectif de voisinage ou encore une coopérative...

Grâce à Decidim, vous pourrez configurer les espaces de participation (initiatives, assemblées, processus ou consultations) et les enrichir grâce aux multiples fonctionnalités disponibles (rencontres, questionnaires, propositions, votes, suivi des résultats, commentaires et bien d’autres).

' - list: - n1: - title: 'Budgets
participatifs' - content: 'Elle analyse les propositions soumises et promeut une nouvelle manière de répartir les ressources communes.' - n2: - title: 'Initiatives citoyennes
et consultations' - content: 'Renforcez votre communauté avec les initiatives citoyennes. Promouvez un vote pertinent par le biais de consultations.' - n3: - title: 'La puissance
d''un réseau politique' - content: 'Elle donne à la délibération, à la collaboration et à la prise de décision une dimension massive, avec la participation de milliers de personnes en temps réel.' - n4: - title: 'Un système démocratique
et flexible' - content: 'Grâce à son architecture modulaire et à sa logique évolutive, vous pouvez configurer un système puissant de gouvernance démocratique dans toutes sortes d''organisations.' - n5: - title: 'Nous prenons la démocratie
très au sérieux' - content: 'Decidim assure la transparence, la traçabilité et l''intégrité de l''information comme jamais auparavant et assure la sécurité et la confidentialité à tous les participants.' - n6: - title: "Elle est à vous.
Partagez-la. Améliorez-la." - content: 'Une plateforme entièrement conçue avec des logiciels libres, des contenus ouverts et collaboratifs grâce à la communauté Metadecidim.' - cta: - features: 'Voir toutes les fonctionnalités' - values: 'Lire le contrat social' + intro: "

Vous pouvez utiliser Decidim dans une organisation publique ou privée, avec des centaines ou des milliers de participants potentiels, comme un conseil municipal, une association, une université, une ONG, un syndicat, un collectif de voisinage ou encore une coopérative...

Grâce à Decidim, vous pourrez configurer les espaces de participation (initiatives, assemblées, processus ou consultations) et les enrichir grâce aux multiples fonctionnalités disponibles (rencontres, questionnaires, propositions, votes, suivi des résultats, commentaires et bien d’autres).

" page: feature1: - title: 'Concertations' - subtitle: 'pour démocratiser les questions communes, pas à pas' - text: >- - Les concertations sont des espaces qui permettent de créer, activer/désactiver et gérer différents processus participatifs. Ils se distinguent des autres espaces par leur structuration en différentes étpaes au sein desquelles toutes les fonctionnalités peuvent être incorporées. Les exemples de concertations sont : un processus électoral pour les membres d'un comité, un budget participatif, un processus de planification stratégique, la rédaction collaborative d'un règlement ou d'une norme, la conception d'un espace urbain ou la production d'un plan de politique publique. - feature2: - title: 'Assemblées' - subtitle: 'le pouvoir de l''auto-organisation collective' - text: >- - Les assemblées sont des espaces qui offrent la possibilité de mettre en place des organes ou des groupes de décision (conseils, groupes de travail, comités, etc.) qui se réunissent périodiquement, et qui permet de détailler leur composition, de répertorier et géolocaliser leurs réunions, et d'y participer (par exemple : assister à une réunion s'il reste des places, ajouter des points à l'ordre du jour ou commenter les propositions et les décisions prises par cet organisme). - feature3: - title: 'Votations' - subtitle: 'le droit de décider avec toutes les garanties démocratiques' - text: >- - Les votations sont des espaces qui permettent de coordonner des référendums, de déclencher des discussions et des débats, de publier les résultats de votes, etc. Ils peuvent être connectés à un système de vote électronique sécurisé. - feature4: - title: 'Initiatives' - subtitle: "définir les objectifs de chacun, à portée de tous" - text: >- - Les initiatives sont un espace qui permet aux participants de créer des initiatives collaboratives, de définir leurs trajectoires et leurs objectifs, de recueillir des votes, de discuter, de débattre, de diffuser des initiatives et de définir des points de rencontre où des signatures peuvent être recueillies auprès des participants ou des débats ouverts à d'autres membres de l'organisation. - feature5: - title: 'Propositions' - subtitle: 'vos idées en détail' - text: >- - La fonctionnalité Propositions permet à l'utilisateur de créer une proposition en plusieurs étapes, de la comparer avec les propositions existantes, de la publier sur la plateforme et d'inclure des informations supplémentaires telles que la géolocalisation ou les documents et images joints. Cette fonctionnalité vous permet également de naviguer, de filtrer et d'interagir avec un ensemble de propositions. De plus, avec l'incubateur de proposition vous pouvez créer des propositions collaboratives. - feature6: - title: 'Vote' - subtitle: 'décidez de votre vote' - text: >- - Le vote offre aux organisations la possibilité d'activer différents systèmes de vote ou de soutien autour de propositions : possibilité de vote illimitée, limitée à un seuil donné, pondéré, basé sur les coûts, etc. - feature7: - title: 'Résultats' - subtitle: 'aucune proposition sans réponse' - text: >- - La fonctionnalité résultats est utilisée pour transformer les propositions en résultats et donner des réponses officielles concernant leur acceptation ou leur rejet, ou en fusionnant différentes propositions en un seul résultat. - feature8: - title: 'Suivi des réalisations' - subtitle: 'la transparence du début à la fin' - text: >- - La fonctionnalité suivi des réalisations offre la possibilité de subdiviser les résultats en différents projets, de définir et d'appliquer des statuts de progression de leur mise en œuvre, mais aussi d’afficher l’étendue de l’implémentation des résultats par catégories et secteurs. - feature9: - title: 'Rencontres' - subtitle: 'pour se rencontrer et ne rien rater' - text: >- - La fonctionnalité rencontres offre aux organisations et aux participants la possibilité de convoquer des réunions, de déterminer leur lieu et leur heure, de s'y inscrire, d'en limiter les places, de définir la structure et le contenu de la réunion ainsi que publier les comptes-rendus et les propositions qui en résultent. + subtitle: pour démocratiser les questions communes, pas à pas + text: 'Les concertations sont des espaces qui permettent de créer, activer/désactiver et gérer différents processus participatifs. Ils se distinguent des autres espaces par leur structuration en différentes étpaes au sein desquelles toutes les fonctionnalités peuvent être incorporées. Les exemples de concertations sont : un processus électoral pour les membres d''un comité, un budget participatif, un processus de planification stratégique, la rédaction collaborative d''un règlement ou d''une norme, la conception d''un espace urbain ou la production d''un plan de politique publique.' + title: Concertations feature10: - title: 'Textes participatifs' - subtitle: 'pour analyser, synthétiser et construire en commun' - text: >- - La fonctionnalité de textes participatifs peut être utilisé pour convertir de longs documents textes en différentes propositions ou résultats et, vice versa, pour composer et afficher un texte unifié basé sur un ensemble de propositions ou de résultats. + subtitle: pour analyser, synthétiser et construire en commun + text: La fonctionnalité de textes participatifs peut être utilisé pour convertir de longs documents textes en différentes propositions ou résultats et, vice versa, pour composer et afficher un texte unifié basé sur un ensemble de propositions ou de résultats. + title: Textes participatifs feature11: - title: 'Conférence' - subtitle: 'Là où les grands événements sont mis en avant' - text: >- - Le composant conférence permet à une organisation de créer un site web pour un grand événement en participant à une série de réunions prédéfinies (chats, ateliers, etc.). , en formant un programme unifié et en gérant les participants. + subtitle: Là où les grands événements sont mis en avant + text: Le composant conférence permet à une organisation de créer un site web pour un grand événement en participant à une série de réunions prédéfinies (chats, ateliers, etc.). , en formant un programme unifié et en gérant les participants. + title: Conférence feature12: - title: 'Enquêtes' - subtitle: 'Parce que l''opinion de votre communauté importe' - text: >- - Le composant Enquêtes peut être utilisé pour concevoir et publier des sondages et pour afficher et télécharger leurs résultats. + subtitle: Parce que l'opinion de votre communauté importe + text: Le composant Enquêtes peut être utilisé pour concevoir et publier des sondages et pour afficher et télécharger leurs résultats. + title: Enquêtes feature13: - title: 'Tirage au sort' - subtitle: 'Égalité et justice du hasard' - text: >- - Le composant de tirage au sort permet de sélectionner un certain nombre de propositions (par ex. les candidats pour un jury) avec des procédures aléatoires, mais reproductibles, qui garantissent des distributions non partiales et uniformes. + subtitle: Égalité et justice du hasard + text: Le composant de tirage au sort permet de sélectionner un certain nombre de propositions (par ex. les candidats pour un jury) avec des procédures aléatoires, mais reproductibles, qui garantissent des distributions non partiales et uniformes. + title: Tirage au sort feature14: - title: 'Commentaires' - subtitle: 'Construire une intelligence collective' - text: >- - Le composant Commentaires permet aux utilisateurs d'ajouter des commentaires, d'identifier le commentaire comme étant en faveur, contre ou neutre par rapport à l'objet commenté, pour les commentaires de vote, pour y répondre et pour recevoir des notifications sur les réponses. + subtitle: Construire une intelligence collective + text: Le composant Commentaires permet aux utilisateurs d'ajouter des commentaires, d'identifier le commentaire comme étant en faveur, contre ou neutre par rapport à l'objet commenté, pour les commentaires de vote, pour y répondre et pour recevoir des notifications sur les réponses. + title: Commentaires feature15: - title: 'Pages et blogs' - subtitle: 'Votre communauté, informée et à jour' - text: >- - Le composant de pages est utilisé pour créer des pages informatives avec mise en forme de texte riche, des images et des vidéos intégrées. Le composant blog permet la création de messages ou de nouvelles, et de les naviguer de manière chronologique. + subtitle: Votre communauté, informée et à jour + text: Le composant de pages est utilisé pour créer des pages informatives avec mise en forme de texte riche, des images et des vidéos intégrées. Le composant blog permet la création de messages ou de nouvelles, et de les naviguer de manière chronologique. + title: Pages et blogs feature16: - title: 'Notifications' - subtitle: 'Informations personnalisées sur les contenus intéressants' - text: >- - Decidim vous permet de suivre n'importe quel espace ou composant pour recevoir des mises à jour chaque fois qu'elles arrivent. + subtitle: Informations personnalisées sur les contenus intéressants + text: Decidim vous permet de suivre n'importe quel espace ou composant pour recevoir des mises à jour chaque fois qu'elles arrivent. + title: Notifications feature17: - title: 'Bulletin d''information (newsletter)' - subtitle: 'Simple mais puissant' - text: >- - Le volet newsletter permet d'envoyer des courriels à tous ceux qui sont inscrits sur la plateforme ou, plus sélectivement, à ceux qui participent à un espace spécifique. + subtitle: Simple mais puissant + text: Le volet newsletter permet d'envoyer des courriels à tous ceux qui sont inscrits sur la plateforme ou, plus sélectivement, à ceux qui participent à un espace spécifique. + title: Bulletin d'information (newsletter) + feature2: + subtitle: le pouvoir de l'auto-organisation collective + text: 'Les assemblées sont des espaces qui offrent la possibilité de mettre en place des organes ou des groupes de décision (conseils, groupes de travail, comités, etc.) qui se réunissent périodiquement, et qui permet de détailler leur composition, de répertorier et géolocaliser leurs réunions, et d''y participer (par exemple : assister à une réunion s''il reste des places, ajouter des points à l''ordre du jour ou commenter les propositions et les décisions prises par cet organisme).' + title: Assemblées + feature3: + subtitle: le droit de décider avec toutes les garanties démocratiques + text: Les votations sont des espaces qui permettent de coordonner des référendums, de déclencher des discussions et des débats, de publier les résultats de votes, etc. Ils peuvent être connectés à un système de vote électronique sécurisé. + title: Votations + feature4: + subtitle: définir les objectifs de chacun, à portée de tous + text: Les initiatives sont un espace qui permet aux participants de créer des initiatives collaboratives, de définir leurs trajectoires et leurs objectifs, de recueillir des votes, de discuter, de débattre, de diffuser des initiatives et de définir des points de rencontre où des signatures peuvent être recueillies auprès des participants ou des débats ouverts à d'autres membres de l'organisation. + title: Initiatives + feature5: + subtitle: vos idées en détail + text: La fonctionnalité Propositions permet à l'utilisateur de créer une proposition en plusieurs étapes, de la comparer avec les propositions existantes, de la publier sur la plateforme et d'inclure des informations supplémentaires telles que la géolocalisation ou les documents et images joints. Cette fonctionnalité vous permet également de naviguer, de filtrer et d'interagir avec un ensemble de propositions. De plus, avec l'incubateur de proposition vous pouvez créer des propositions collaboratives. + title: Propositions + feature6: + subtitle: décidez de votre vote + text: 'Le vote offre aux organisations la possibilité d''activer différents systèmes de vote ou de soutien autour de propositions : possibilité de vote illimitée, limitée à un seuil donné, pondéré, basé sur les coûts, etc.' + title: Vote + feature7: + subtitle: aucune proposition sans réponse + text: La fonctionnalité résultats est utilisée pour transformer les propositions en résultats et donner des réponses officielles concernant leur acceptation ou leur rejet, ou en fusionnant différentes propositions en un seul résultat. + title: Résultats + feature8: + subtitle: la transparence du début à la fin + text: La fonctionnalité suivi des réalisations offre la possibilité de subdiviser les résultats en différents projets, de définir et d'appliquer des statuts de progression de leur mise en œuvre, mais aussi d’afficher l’étendue de l’implémentation des résultats par catégories et secteurs. + title: Suivi des réalisations + feature9: + subtitle: pour se rencontrer et ne rien rater + text: La fonctionnalité rencontres offre aux organisations et aux participants la possibilité de convoquer des réunions, de déterminer leur lieu et leur heure, de s'y inscrire, d'en limiter les places, de définir la structure et le contenu de la réunion ainsi que publier les comptes-rendus et les propositions qui en résultent. + title: Rencontres + subtitle: For democratic organizations and collectives of any size and kind. + title: Fonctionnalités type1: - title: 'Espaces de participation' - subtitle: 'Pour que les participants fassent des propositions et prennent des décisions' + title: Espaces de participation type2: - title: 'Composants' - subtitle: 'Pour que les participants et les espaces interagissent' - other: - subtitle: 'Osez combiner les composants. Concevez et déployez un système démocratique puissant de manière facile et adaptez-le aux besoins de votre organisation' - cta: - title: 'Découvrez comment Decidim fonctionne en profondeur' - button: 'Fonctions et fonctionnalités' - partners: - notice: Les logos des entités coopérantes sont la propriété intellectuelle de leurs détenteurs respectifs de droits d'auteur. Ils ne tombent pas sous la licence Creative Commons By-SA le reste du contenu du site est licencié. - modules: - description: Description - explanation: En utilisant des modules, vous pouvez étendre l'utilisation de Decidim et la partager avec d'autres. Ils vous permettent de plus facilement mettre à jour à l'avenir. Consultez la documentation pour créer votre propre module. - image: Image - name: Nom - type: - community: Communauté - auth: Autorisation - official: Propositions officielles - used_by: - explain: Ces villes, régions et organisations utilisent déjà Decidim - type: - city: Villes - region: Régions - organizations: Organisations - testimonials: - n1: - quote: >- - Grâce à Decidim, nous sommes parvenus à coproduire un plan stratégique pour la ville de Barcelone avec ses citoyens. En 2016, nous avons inauguré le Plan d’Action Municipale sous la forme d’un processus participatif par le biais de Decidim Barcelone. Actuellement, ce plan comprend près de 7 000 propositions citoyennes. L'un des avantages de l'utilisation de cette plateforme est que vous pouvez contrôler à tout moment l'état de mise en œuvre des propositions approuvées. - org: Hôtel de Ville de Barcelone (2015-2019) - n2: - quote: >- - Avec la mise en œuvre de Decidim à Som Energia, nous avons créé un espace de participation plus chaleureux. Nous avons déployé l'outil en 2018, pour accueillir l'Assemblée Générale de la coopérative et quelques mois plus tard, nous avons débattu de la refonte graphique du développement collaboratif de l'école de Som Energia, entre autres processus participatifs. En quelques mois, plus de 3 500 participants se sont inscrits, 5 processus participatifs et 3 assemblées furent en place et plus de 1 300 participants votèrent lors de la dernière Assemblée Générale. - org: Som Énergie - n3: - quote: >- - La plate-forme numérique Decide Mérida a été une opportunité qui a encouragé comme jamais auparavant la participation des citoyens à l’élaboration du Plan de Développement Municipal de Mérida 2018-2021. Nous avons eu plus de 3 000 interactions citoyennes, y compris des propositions, des commentaires, suggestions et soutiens pour obtenir un consensus le plus élevé possible sur ce qui est le mieux pour notre ville. Il ne fait aucun doute que la plateforme Decide Mérida continuera d’être notre allié pour faire de Mérida une société de plus en plus participative. - org: Présidente municipale de Mérida Yucatán, Mexique. Mairie de Mérida Yucatán, Mexique - n4: - quote: >- - Ce que nous apprécions, c’est qu’il est construit en gardant la démocratie comme ligne de mire, et donc la démocratie est une priorité majeure. Les principes démocratiques tels que la responsabilisation, l'égalité et la transparence sont au cœur de la conception. - org: Ville d'Helsinki - n5: - quote: >- - Presque tous les processus participatifs qui sont arrivés à notre table, nous avons été en mesure de le résoudre en utilisant les règles opérationnelles de Decidim. En tant qu'outil, il est très bon. Cependant, l'aspect qui nous semble le plus solide et le plus important est sa communauté, tant les développeurs que ceux qui l'utilisent pour des processus participatifs. La coopération avec eux nous a fait comprendre les défis que représente la mise en œuvre de la démocratie participative dans le monde réel. - org: Gouvernement libre de Mexico - n6: - quote: >- - Nous manquons d'espaces publics pour nous exprimer. Il est important que nous reprenions contrôle de ces derniers. Les plateformes ouvertes comme Decidim font exactement cela. Ce n'est pas seulement ça qui est open-source (pour que d'autres personnes puissent le forker, le réutiliser et construire un processus participatif). Decidim a également ces valeurs que nous voulons refléter dans notre société codée de la manière dont la plateforme est conçue. - org: Fondation Mozilla - n7: - quote: >- - Le processus a débuté en octobre 2019 au sein de la DG Communication et Démocratie en ligne de la Commission européenne au Centre commun de recherche (service de la science et de la connaissance de la Commission européenne). Une analyse des besoins de la Conférence et des outils adaptés à ceux-ci, a conduit à choisir l'outil open source Decidim pour sa maturité technique, sa grande communauté et sa flexibilité. - org: Directeur de la recherche OpenForum Europe, Union européenne - faqs: - title: Foire aux questions - q01: - question: Qu'est-ce que Decidim? - answer: >- - Decidim est une plate-forme libre de démocratie participative Open-Source pour les villes et les organisations. Mais Decidim est plus qu'une plate-forme numérique : c'est un projet et une infrastructure libres et ouverts communs impliquant du code, de la documentation, conception, formations, cadre juridique, interfaces collaboratives, communautés d'utilisateurs et de facilitation et une vision commune. - q02: - question: Qui utilise actuellement Decidim? - answer: >- - Il est actuellement utilisé par les villes et les organisations. En fait, tout groupe de personnes peut l'utiliser, qu'il s'agisse d'une ONG, d'une université, d'un syndicat, d'une coopérative, d'une association de voisinage, etc. Consultez la [liste complète des instances actuellement actives](/usedby/). - q03: - question: Que peut faire un administrateur Decidim ? - answer: >- - Configurez facilement les processus participatifs. Voulez-vous faire un plan stratégique ? Discuter de nouvelles règlementations ? Discuter de l'aménagement d'une nouvelle place ou d'un bâtiment public ? Grâce à Decidim, vous pourrez configurer des espaces de participation (initiatives, assemblées, processus ou consultations) et les enrichir grâce aux multiples fonctionnalités disponibles (rencontres, enquêtes, boîtes à idées, votes, suivi des résultats, commentaires et bien d’autres). - q04: - question: Que peut faire un utilisateur de Decidim ? - answer: >- - Decidim permet à des milliers de personnes de s'organiser démocratiquement en faisant des propositions, en participant à des réunions publiques, en favorisant les prises de décision, en décidant par le biais de différentes formes de vote et en contrôlant la mise en œuvre des décisions. - q05: - question: Vous avez une démo ? Je veux utiliser Decidim maintenant, sans l'installer, pour voir comment cela fonctionne. - answer: 'Oui, nous avons une [démo en ligne](/demo).' - q06: - question: À quelle fréquence la plateforme est-elle mise à jour ? - answer: >- - Nous publions une nouvelle version environ chaque mois. Voir [l'historique des versions](https://github.com/decidim/decidim/releases). - q07: - question: Que dois-je faire pour installer Decidim? - answer: >- - L'installation de Decidim est facile, mais vous avez besoin de connaissances et d'exigences techniques. Consultez la [documentation pour installer Decidim](https://docs.decidim.org/en/install/). - q08: - question: Où puis-je trouver la feuille de route du projet et les fonctionnalités prévues? - answer: Vous pouvez trouver la [feuille de route des nouvelles fonctionnalités du projet sur GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Qu''est-ce que cela signifie que Decidim soit gratuit, "libre" et open source?' - answer: >- - Decidim est une plate-forme pour la participation citoyenne faite par le peuple et pour le peuple. Son code source est ouvert et peut être inspecté, modifié et amélioré par n'importe qui. Le logiciel Decidim est couvert par la [licence AGPL](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Cela signifie que vous pouvez l'utiliser, le modifier et redistribuer les versions dérivées de celui-ci tant que vous respectez la licence AGPL. - q10: - question: >- - J'ai des idées pour de nouvelles fonctionnalités d'amélioration. Je veux avoir une meilleure compréhension du projet. Que puis-je faire? - answer: >- - Vous pouvez collaborer de plusieurs façons. L'une d'elles est à travers la communauté [Metadecidim](http://meta.decidim.org). Si vous voulez proposer de nouvelles fonctionnalités, [allez ici](https://meta. ecidim.org/processes/roadmap). Si vous avez détecté des erreurs et que vous voulez les notifier, [allez sur ce processus](https://meta.decidim.org/processes/bug-report?locale=es). Si vous souhaitez participer activement à la communauté Metadecidim, vous pouvez assister aux [Sessions Opérationnelles Metadecidim](https://meta.decidim.org/assemblies/eix-comunitat). Inscrivez-vous en tant que participant de la communauté et participez avec nous. Si votre talent est le code, [venez sur Github](https://github.com/decidim/decidim). Si vous êtes un chercheur, vous pourriez être intéressé à venir aux [séminaires LAB Metadecidim ](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: J'ai de nombreuses questions, de toutes sortes... où puis-je les poser ou les résoudre ? - answer: >- - La meilleure façon de résoudre vos questions rapidement est de passer par la communauté Metadecidim. Consultez le processus [Forum de support](https://meta.decidim.org/processes/supportforum?locale=en) et vérifiez si votre question existe ou si elle a reçu une réponse, sinon posez vos propres questions. Si vous ne pouvez pas résoudre votre problème dans cet espace, il est peut-être temps de nous contacter via le [formulaire de contact](/contact). - q12: - question: Y a-t-il un tutoriel pour commencer à configurer le logiciel ? - answer: >- - Vous pouvez consulter la dernière version de notre manuel d'administration dans la [section Documentation](https://docs.decidim.org). - q13: - question: Qu'est-ce que le contrat social ? - answer: >- - C'est ainsi que nous appelons notre Code de Garanties Démocratiques et la Collaboration Démocratique. Tous les membres de la communauté doivent approuver le [Contrat Social](http://decidim.org/contract). - q14: - question: Quelles sont les différences avec le projet Consul / Décide Madrid ? - answer: >- - Il existe de nombreuses différences : fonctionnalités, flexibilité, architecture, modularité, etc. Nous avons [publié un post](/blog/2019-01-14-consul-comparison/) pour essayer de répondre à cette question. - q15: - question: Qu'est-ce que la communauté Metadecidim ? - answer: >- - [Metadecidim](http://meta.decidim.org) est la communauté de Decidim qui collabore à la conception de la plate-forme et à la construction du projet Decidim. Nous nous rencontrons régulièrement à travers les [SOM (Metadecidim Operative Sessions)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) et les [séminaires de recherche LAB](https://meta.decidim.org/assemblies/eix-lab). Allez sur [meta.decidim.org](http://meta.decidim.org) pour suivre les appels de près et si vous voulez rejoindre la communauté. Nous aimerions ;-) - q16: - question: Puis-je rejoindre la communauté Metadecidim même si je ne vis pas à Barcelone ? - answer: >- - Decidim est un projet qui est né à Barcelone et c'est pourquoi il y a un lien territorial fort avec cette ville. Mais oui, vous pouvez collaborer en ligne, à travers des processus de participation, des débats, etc .... que nous fournissons dans Metadecidim. Bien que vous pourriez vouloir venir à Barcelone un jour :) - q17: - question: Nous voulons conclure un accord de collaboration formel, y a-t-il des modèles que nous pouvons utiliser? - answer: Oui, nous avons des modèles pour formaliser les accords de collaboration. [Veuillez nous contacter](/contact). - q18: - question: Quel type de membres vous acceptez dans la communauté Metadecidim ? - answer: Toute personne de bonne foi et ayant une attitude correcte à l'égard de la collaboration démocratique. - q19: - question: Offrez-vous une installation gratuite aux organismes sans but lucratif? - answer: >- - Oui, seulement si vous êtes une organisation basée à Barcelone. Envoyez-nous un message et vous serez aidé par la Direction de la Recherche, Développement et innovation de l'espace des droits de la citoyenneté, de la participation et de la transparence de la Mairie de Barcelone. - q20: - question: Aidez-vous les institutions ? - answer: >- - Oui, mais vous devez être patient. De nombreuses institutions veulent utiliser Decidim dès maintenant et nous les aidons pas à pas. [Contactez-nous](/contact) pour toute question et nous vous répondrons dans les plus brefs délais. - q21: - question: Qu'est-ce que l'association Decidim ? - answer: >- - L'Asociacion de Software Libre Decidim est une association démocratique pour la gouvernance de la communauté Decidim. - q22: - question: Comment puis-je obtenir plus d'informations sur l'Association Decidim ? - answer: >- - Dans l'[assemblée générale de l'Association Decidim](https://meta.decidim.org/assemblies/association générale-assemblée) vous pouvez trouver plus d'infos, suivre l'activité des réunions et vérifier les informations pertinentes (statuts, accords juridiques, règlements internes) - q23: - question: Comment puis-je devenir membre de l'Association Decidim ? - answer: >- - Maintenant, les personnes impliquées dans le projet peuvent être des partenaires. [Ici, nous expliquons en détail comment vous devez le faire](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=s) - q24: - question: Quand l'Association Decidim est-elle née? - answer: >- - L'Association [Decidim est fondée le 16 février 2019 dans une assemblée extraordinaire de la communauté](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), avec l'approbation des statuts de l'organisation. + title: Composants + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Avec le soutien de + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Technologie libre et sûre.
Avec toutes les garanties démocratiques.
La modernisation de la démocratie est maintenant possible avec Decidim. + subheading: Decidim est une plateforme numérique
pour la participation des citoyens + subhero: + cta: Explore all features + feature1: Planification
stratégique + feature2: Budgets
participatifs + feature3: Initiatives et
consultations citoyennes + feature4: Processus
participatifs + feature5: Assemblées + feature6: Communication
en réseau + intro: Decidim aide les citoyens, les organisations et les institutions publiques à s'organiser démocratiquement à toutes les échelles. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Ils utilisent déjà Decidim legal-notice: - title: Mentions légales section-1: + paragraph: '

Vous accédez au site web de l''Association du Logiciel Libre ("Decidim" ou "Nous") disponible via le domaine web https://decidim.org/ (ci-après, le "site web"), domiciliée à Sant Adria, 20 Fabrica de Creacio, Fabra I Coats, Barcelone, 08030, Espagne et numéro d''identification G67401174.

Vous pouvez nous contacter à : hola@decidim.org

' title: Qui sommes-nous ? - paragraph: >- -

Vous accédez au site web de l'Association du Logiciel Libre ("Decidim" ou "Nous") disponible via le domaine web https://decidim.org/ (ci-après, le "site web"), domiciliée à Sant Adria, 20 Fabrica de Creacio, Fabra I Coats, Barcelone, 08030, Espagne et numéro d'identification G67401174.

Vous pouvez nous contacter à : hola@decidim.org

section-2: + paragraph: "

Le but de ce Site Web est de fournir au public des informations générales sur Decidim, ses activités et sa technologie, consistant en une plateforme de démocratie participative libre et open-source pour les villes et les organisations, et la gestion de la communauté Decidim générée à travers le monde à partir de notre technologie collaborative permettant le développement de projets citoyens et associatifs avec une plus grande participation sociale. Vous pouvez tester librement la plateforme Decidim avec notre démo en ligne.

Les conditions d'utilisation du présent avis légal ont pour objet de régir l'utilisation autorisée de ce Site Web et des services et/ou contenus hébergés conformément à la Loi 34/2002 sur les services de la société de l'information et le commerce électronique et aux autres dispositions légales applicables.

" title: Finalité du traitement - paragraph: >- -

Le but de ce Site Web est de fournir au public des informations générales sur Decidim, ses activités et sa technologie, consistant en une plateforme de démocratie participative libre et open-source pour les villes et les organisations, et la gestion de la communauté Decidim générée à travers le monde à partir de notre technologie collaborative permettant le développement de projets citoyens et associatifs avec une plus grande participation sociale. Vous pouvez tester librement la plateforme Decidim avec notre démo en ligne.

Les conditions d'utilisation du présent avis légal ont pour objet de régir l'utilisation autorisée de ce Site Web et des services et/ou contenus hébergés conformément à la Loi 34/2002 sur les services de la société de l'information et le commerce électronique et aux autres dispositions légales applicables.

section-3: + paragraph: '

L''accès à ce Site Web est gratuit. Aucun formulaire de demande n''est requis pour naviguer dans l''information et/ou le contenu de ce site web en termes généraux. Sinon, veuillez vous référer à notre Politique de confidentialité.

En accédant au Site Web et en l''utilisant, Vous acceptez les conditions d''utilisation de cet avis légal et vous vous engagez à en faire autant, une utilisation diligente et licite du wite et en particulier : (i) l’utilisation du Site Web aux fins prévues, c.-à-d. informations sur nos services, vous vous abstiendrez d''utiliser le Site Web ou son contenu à des fins illégales, ou à des fins contraires à l''ordre public, à la moralité et aux bonnes mœurs; (ii) respecter les droits de propriété intellectuelle et industrielle du Site Web et de son contenu, ainsi que tous les droits qui correspondent à Decidim ; (iii) ne pas reproduire, copier, convertir, modifier, distribuer, afficher ou mettre à la disposition du public le site Web ou son contenu ou toute modification de celui-ci ; (iv) Vous serez responsable de toute perte ou de tout dommage subi par Decidim en raison d''une utilisation directe ou indirecte de votre Site Web, les dispositions des "Textes Juridiques" (collectivement, cet Avis Légal et la Politique de Confidentialité) et les lois applicables.

' title: Utilisation du Site Web - paragraph: >- -

L'accès à ce Site Web est gratuit. Aucun formulaire de demande n'est requis pour naviguer dans l'information et/ou le contenu de ce site web en termes généraux. Sinon, veuillez vous référer à notre Politique de confidentialité.

En accédant au Site Web et en l'utilisant, Vous acceptez les conditions d'utilisation de cet avis légal et vous vous engagez à en faire autant, une utilisation diligente et licite du wite et en particulier : (i) l’utilisation du Site Web aux fins prévues, c.-à-d. informations sur nos services, vous vous abstiendrez d'utiliser le Site Web ou son contenu à des fins illégales, ou à des fins contraires à l'ordre public, à la moralité et aux bonnes mœurs; (ii) respecter les droits de propriété intellectuelle et industrielle du Site Web et de son contenu, ainsi que tous les droits qui correspondent à Decidim ; (iii) ne pas reproduire, copier, convertir, modifier, distribuer, afficher ou mettre à la disposition du public le site Web ou son contenu ou toute modification de celui-ci ; (iv) Vous serez responsable de toute perte ou de tout dommage subi par Decidim en raison d'une utilisation directe ou indirecte de votre Site Web, les dispositions des "Textes Juridiques" (collectivement, cet Avis Légal et la Politique de Confidentialité) et les lois applicables.

section-4: + paragraph: "

Tous les droits de propriété intellectuelle sur le contenu de ce Site Web, y compris, mais sans s'y limiter, les images, les marques, les logos, les signes distinctifs, les sons et les animations, les textes, les enregistrements sonores, visuels ou audiovisuels et les bases de données sont la propriété de Decidim ou de ses concédants et sont protégés par les lois nationales et internationales. Ces droits sont réservés en faveur de Decidim et/ou de ses concédants. La reproduction, la copie, la communication publique, la distribution, la modification, la transformation, l'élimination, la manipulation et toute autre utilisation, y compris l'extraction et la réutilisation, à des fins lucratives ou non, direct ou indirect, temporaire ou permanent, de tout ou partie de ce Site Web ou de son contenu, est expressément interdite sans l'autorisation expresse préalable et écrite de Decidim. Nous pouvons entreprendre toute action juridique et/ou extrajudiciaire jugée appropriée en cas de violation possible de ces droits.

" title: Propriété industrielle et intellectuelle - paragraph: >- -

Tous les droits de propriété intellectuelle sur le contenu de ce Site Web, y compris, mais sans s'y limiter, les images, les marques, les logos, les signes distinctifs, les sons et les animations, les textes, les enregistrements sonores, visuels ou audiovisuels et les bases de données sont la propriété de Decidim ou de ses concédants et sont protégés par les lois nationales et internationales. Ces droits sont réservés en faveur de Decidim et/ou de ses concédants. La reproduction, la copie, la communication publique, la distribution, la modification, la transformation, l'élimination, la manipulation et toute autre utilisation, y compris l'extraction et la réutilisation, à des fins lucratives ou non, direct ou indirect, temporaire ou permanent, de tout ou partie de ce Site Web ou de son contenu, est expressément interdite sans l'autorisation expresse préalable et écrite de Decidim. Nous pouvons entreprendre toute action juridique et/ou extrajudiciaire jugée appropriée en cas de violation possible de ces droits.

section-5: + paragraph: "

Decidim n'est pas responsable des pages web de sites tiers qui peuvent être accédées à partir du Site Web, ni pour l'exactitude, la véracité et la validité des informations figurant sur le site web qui ne sont pas de sa propre élaboration. Toutefois, conformément à l'article 17 de la loi 34/2002, dans le cas où Decidim prend conscience de l'illégalité de ce contenu ou de ces liens, il s'engage à les supprimer ou les désactiver, ainsi que, le cas échéant, pour bloquer tout contenu qui pourrait être illégal ou violer les droits de toute tierce partie, conformément aux articles 11 et 16 de la Loi susmentionnée.

De plus, Decidim n'est pas responsable des dommages qui pourraient survenir en raison de défaillances ou de mauvaises configurations dans le navigateur installé par l'utilisateur sur son ordinateur. Decidim décline toute responsabilité en cas d'incident ou de défaillance technique causée par la connexion de l'utilisateur à Internet.

Decidim utilisera ses meilleurs efforts pour effectuer, dans le plus court laps de temps, des mises à jour et des corrections d'erreurs et de carences, y compris ceux qui se produisent dans l'accès et/ou la connexion au Site et/ou à son contenu, mais ne garantit pas l'absence d'interruptions, d'erreurs dans la connexion et/ou l'accès au site Web et la mise à jour de son contenu.

Vous êtes responsable de votre utilisation et de votre accès au Site Web. Decidim ne sera pas responsable de la présence de virus ni des erreurs de sécurité ni des dommages qui pourraient être causés à vos appareils ou aux fichiers ou documents stockés dans ces appareils pour l'accès et/ou la connexion au Site Web, ni pour les dommages causés à des tiers par des intromissions illégales hors de contrôle de Decidim.

Decidim ne sera pas responsable de la violation de vos obligations que vous acceptez lorsque vous accédez à ce Site Web qui sont contenus dans le présent avis légal et, en particulier ne sera pas responsable de toute violation des droits de propriété intellectuelle, des droits d'auteur, les droits de publicité et d'image, ou tout autre droit concernant les biens et les droits de toute tierce partie.

" title: Responsabilités - paragraph: >- -

Decidim n'est pas responsable des pages web de sites tiers qui peuvent être accédées à partir du Site Web, ni pour l'exactitude, la véracité et la validité des informations figurant sur le site web qui ne sont pas de sa propre élaboration. Toutefois, conformément à l'article 17 de la loi 34/2002, dans le cas où Decidim prend conscience de l'illégalité de ce contenu ou de ces liens, il s'engage à les supprimer ou les désactiver, ainsi que, le cas échéant, pour bloquer tout contenu qui pourrait être illégal ou violer les droits de toute tierce partie, conformément aux articles 11 et 16 de la Loi susmentionnée.

De plus, Decidim n'est pas responsable des dommages qui pourraient survenir en raison de défaillances ou de mauvaises configurations dans le navigateur installé par l'utilisateur sur son ordinateur. Decidim décline toute responsabilité en cas d'incident ou de défaillance technique causée par la connexion de l'utilisateur à Internet.

Decidim utilisera ses meilleurs efforts pour effectuer, dans le plus court laps de temps, des mises à jour et des corrections d'erreurs et de carences, y compris ceux qui se produisent dans l'accès et/ou la connexion au Site et/ou à son contenu, mais ne garantit pas l'absence d'interruptions, d'erreurs dans la connexion et/ou l'accès au site Web et la mise à jour de son contenu.

Vous êtes responsable de votre utilisation et de votre accès au Site Web. Decidim ne sera pas responsable de la présence de virus ni des erreurs de sécurité ni des dommages qui pourraient être causés à vos appareils ou aux fichiers ou documents stockés dans ces appareils pour l'accès et/ou la connexion au Site Web, ni pour les dommages causés à des tiers par des intromissions illégales hors de contrôle de Decidim.

Decidim ne sera pas responsable de la violation de vos obligations que vous acceptez lorsque vous accédez à ce Site Web qui sont contenus dans le présent avis légal et, en particulier ne sera pas responsable de toute violation des droits de propriété intellectuelle, des droits d'auteur, les droits de publicité et d'image, ou tout autre droit concernant les biens et les droits de toute tierce partie.

section-6: + paragraph:

Decidim peut modifier cette mentions légale, la Politique de confidentialité et/ou tout autre texte de nature contractuelle applicable au présent site web sans préavis. Ces modifications entreront en vigueur au moment de leur publication sur le site.

Decidim peut également résilier ou suspendre les services du site à tout moment. Dans la mesure du possible, Decidim avertira ou avertira préalablement une telle résiliation ou suspension par l'intermédiaire de ce site web.

title: Modifications - paragraph: >- -

Decidim peut modifier cette mentions légale, la Politique de confidentialité et/ou tout autre texte de nature contractuelle applicable au présent site web sans préavis. Ces modifications entreront en vigueur au moment de leur publication sur le site.

Decidim peut également résilier ou suspendre les services du site à tout moment. Dans la mesure du possible, Decidim avertira ou avertira préalablement une telle résiliation ou suspension par l'intermédiaire de ce site web.

section-7: + paragraph:

Vos données personnelles collectées sur notre site web ou lorsque vous nous contactez via le formulaire de contact ou en envoyant un e-mail seront traitées strictement conformément à notre Politique de confidentialité.

title: Données personnelles - paragraph: >- -

Vos données personnelles collectées sur notre site web ou lorsque vous nous contactez via le formulaire de contact ou en envoyant un e-mail seront traitées strictement conformément à notre Politique de confidentialité.

section-8: + paragraph:

Ce site Web n'utilise pas de cookies. Plus d'informations dans notre Politique de confidentialité.

title: Cookies - paragraph: >- -

Ce site Web n'utilise pas de cookies. Plus d'informations dans notre Politique de confidentialité.

section-9: + paragraph: '

Nos textes juridiques, y compris cet notice légale et notre Politique de confidentialité, sont régis par le droit espagnol. Les tribunaux de la ville de Barcelone seront compétents pour trancher tout litige découlant de l''utilisation de notre site Internet.

Dernière mise à jour: février 2022.

' title: Loi applicable et juridiction - paragraph: >- -

Nos textes juridiques, y compris cet notice légale et notre Politique de confidentialité, sont régis par le droit espagnol. Les tribunaux de la ville de Barcelone seront compétents pour trancher tout litige découlant de l'utilisation de notre site Internet.

Dernière mise à jour: février 2022.

+ title: Mentions légales + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Actualités + close_menu: Close menu + code: Code + community: Communauté + contact: Contact + contract: Contrat social + demo: Démo + docs: + path: https://docs.decidim.org/ + title: Documentation + faqs: Foire aux questions + features: Fonctionnalités + first-steps: First steps + home: Home + legal-notice: Mentions légales + menu: Menu + modules: Modules + partners: Partenaires + partnership-policy: Partnership policy + press: Presse + privacy-policy: Politique de confidentialité + text: Navigation + trademark: Trademark policy + use-cases: Use cases + used_by: Cas d'usages + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/fr" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Politique de confidentialité section-1: + paragraph:

L' Association d Logiciel Libre Decidim ("Decidim" ou "nous") est le propriétaire de ce site web. disponible via le domaine web https://decidim.org/ (ci-après, le "Site Web"), et agit en tant que contrôleur de données pour le traitement des données personnelles de tous les utilisateurs du Site Internet (« Vous », « Utilisateur »).

Decidim s'engage à protéger la vie privée de tous les Utilisateurs du Site, ses membres associés et membres de la communauté Decidim . Cette politique de confidentialité explique nos pratiques concernant l'utilisation des données personnelles collectées par le biais du site Web, y compris la démo de notre plateforme de démocratie participative libre et open-source, ainsi que le traitement des données des personnes associées à Decidim et la gestion de la communauté Decidim soit sur ce site Web, soit sur d'autres plates-formes gérées par Decidim.

La présente politique de confidentialité fait partie de nos textes légaux avec l' Avis légal.

title: Introduction - paragraph: >- -

L' Association d Logiciel Libre Decidim ("Decidim" ou "nous") est le propriétaire de ce site web. disponible via le domaine web https://decidim.org/ (ci-après, le "Site Web"), et agit en tant que contrôleur de données pour le traitement des données personnelles de tous les utilisateurs du Site Internet (« Vous », « Utilisateur »).

Decidim s'engage à protéger la vie privée de tous les Utilisateurs du Site, ses membres associés et membres de la communauté Decidim . Cette politique de confidentialité explique nos pratiques concernant l'utilisation des données personnelles collectées par le biais du site Web, y compris la démo de notre plateforme de démocratie participative libre et open-source, ainsi que le traitement des données des personnes associées à Decidim et la gestion de la communauté Decidim soit sur ce site Web, soit sur d'autres plates-formes gérées par Decidim.

La présente politique de confidentialité fait partie de nos textes légaux avec l' Avis légal.

section-2: + paragraph: '

1. Données collectées en naviguant sur le Site Web

Quand vous utilisez notre site Decidim utilise les services du logiciel d''analyse Plausible. Ce logiciel s''assure que les données tracées sont entièrement chiffrées. Le but de Plausible Analytics est de connaître les tendances de trafic sur un site web et non les comportements individuels. Chaque requête HTTP envoie l''adresse IP et le User Agent au serveur, c''est ce qu''ils utilisent, en générant un identifiant changeant quotidiennement selon l''IP et le User Agent des visiteurs. Pour anonymiser ces données, l''identifiant est passé dans une fonction de hash avec salage tournant. Cela génère une chaîne de caractères de lettres et de chiffres utilisé pour calculer le nombre de visite unique par jour. L''adresse IP et le User Agent ne sont jamais stockés dans les logs, base de données où autre espace de stockage de Plausible. Les anciennes clés de salage sont supprimés toutes les 24h pour éviter la possibilité de relier les informations d''un visiteur d''un jour à l''autre. De ce fait, aucune information personnelle est collectée lors de la visite de notre site web. Pour plus d''informations sur les traitements de données opérés par Plausible Analytics, vous pouvez visitez leur site web à https://plausible.io/privacy-focused-web-analytics

Données collectées sur notre Démo

L''accès à la plateforme Decidim de démonstration,via le Site Web à l''URLhttps://try.decidim.org/ est anonyme,car vous passez par des identifiants génériques pour tester et découvrir lesfonctionnalités de la plateforme Decidim par lesutilisateurs.

Un cookie de session ("Session_id") est cependant activé, mais ce dernier ne sert qu''à établir l''identificant de votre session courante. Ce cookie est nécessaire pour le fonctionnement technique de la plateforme, pour assurer la connexion via le protocole HTTP et garder la session utilisateur et les services du Site Web fonctionnels, et sont exemptés du consentement utilisateur en accord avec l''alinéa 4/2012 sur l''exemption du consentement utilisateur décrit par l''Autorité Européenne de Protection des Données.

c. Données collectées via les formulaires, email et autres moyens de communication

Quand nous sommes contactés via le formulaire de contact, par email ou moyens similiaires, nous collectons automatiquement les données suivantes: nom, prénom, entité, adresse mail et contenu du message de manière à répondre à votre requête, commentaire ou suggestion

Il est également possible que nous traitions ces données pour des traitements statistiques avec pseudonymisation et procédures techniques d''anonymisation, comme par exemple l''aggrégation de donnée, de manière à éviter de ces traitements la possibilité d''identifier les utilisateurs individuellement.

d. Données collectées via la communautéDecidim

Decidim utilise d''autres sites liés à ce Site Web pour la gestion de la communauté Decidim créée autour de notre logiciel, comme point de rencontre de la communauté Decidim et où la plupart des activités et des communications entre les utilisateurs et Decidim prend place. Ces plateformes, comme https://meta.decidim.org/ ou GitHub(https://github.com/decidim/decidim)sont gouvernées par leurs propres Conditions Générales d''Utilisations.

Nonobstant,Decidim peut potentiellement traiterdes données personnelles via ces plateformes pour la gestion des projets de lacommunauté développés sur ces plateformes respectivement, en particulier cesdonnées peuvent consister en les données de connexion à ces plateformes, leprofil utilisateur, et le contenu des commentaires et remarques quel''utilisateur ferait pour contribuer aux projetsDecidim. À noter que ces informations peuvent être publique et, de manièreconséquente, accessible et visible des autres utilisateurs.

e. Données collectés via nos partenaires

Toute personne ou organisation voulant librement participer dans la communauté Decidim, participer aux débats, collaborer à l''organisation d''événements, promouvoir le travail d''un groupe ou de journées communautaires, ainsi que contribuer au développement ou la documentaion de notre plateforme libre et open-source de démocratie participative, gestion des instances etc., peut choisir de devenir membre de Decidim, tant qu''elle a montré un investissement conséquent dans la commauté via la réalisation d''activités décrites précedemment. Pour ce faire, vous devez compléter un formulaire pour soumettre votre candidature, qui sera évaluée par le Comité de Coordination Decidim.

Le traitement des données personnelles des membres de Decidim est effectué dans le but de gérer les projets et activités sus-mentionnés dans lesquels les membres associés participent, la gestion comptable des cotisations d''adhérents et, en général, la gouvernance des projets et activités de Decidim, pour assurer la conformité avec les principes et valeurs de Decidim autant que les devoirs des droits et devoirs associés.

' title: Données personnelles que nous collectons sur vous et comment nous les utilisons - paragraph: >- -

1. Données collectées en naviguant sur le Site Web

Quand vous utilisez notre site Decidim utilise les services du logiciel d'analyse Plausible. Ce logiciel s'assure que les données tracées sont entièrement chiffrées. Le but de Plausible Analytics est de connaître les tendances de trafic sur un site web et non les comportements individuels. Chaque requête HTTP envoie l'adresse IP et le User Agent au serveur, c'est ce qu'ils utilisent, en générant un identifiant changeant quotidiennement selon l'IP et le User Agent des visiteurs. Pour anonymiser ces données, l'identifiant est passé dans une fonction de hash avec salage tournant. Cela génère une chaîne de caractères de lettres et de chiffres utilisé pour calculer le nombre de visite unique par jour. L'adresse IP et le User Agent ne sont jamais stockés dans les logs, base de données où autre espace de stockage de Plausible. Les anciennes clés de salage sont supprimés toutes les 24h pour éviter la possibilité de relier les informations d'un visiteur d'un jour à l'autre. De ce fait, aucune information personnelle est collectée lors de la visite de notre site web. Pour plus d'informations sur les traitements de données opérés par Plausible Analytics, vous pouvez visitez leur site web à https://plausible.io/privacy-focused-web-analytics

Données collectées sur notre Démo

L'accès à la plateforme Decidim de démonstration,via le Site Web à l'URLhttps://try.decidim.org/ est anonyme,car vous passez par des identifiants génériques pour tester et découvrir lesfonctionnalités de la plateforme Decidim par lesutilisateurs.

Un cookie de session ("Session_id") est cependant activé, mais ce dernier ne sert qu'à établir l'identificant de votre session courante. Ce cookie est nécessaire pour le fonctionnement technique de la plateforme, pour assurer la connexion via le protocole HTTP et garder la session utilisateur et les services du Site Web fonctionnels, et sont exemptés du consentement utilisateur en accord avec l'alinéa 4/2012 sur l'exemption du consentement utilisateur décrit par l'Autorité Européenne de Protection des Données.

c. Données collectées via les formulaires, email et autres moyens de communication

Quand nous sommes contactés via le formulaire de contact, par email ou moyens similiaires, nous collectons automatiquement les données suivantes: nom, prénom, entité, adresse mail et contenu du message de manière à répondre à votre requête, commentaire ou suggestion

Il est également possible que nous traitions ces données pour des traitements statistiques avec pseudonymisation et procédures techniques d'anonymisation, comme par exemple l'aggrégation de donnée, de manière à éviter de ces traitements la possibilité d'identifier les utilisateurs individuellement.

d. Données collectées via la communautéDecidim

Decidim utilise d'autres sites liés à ce Site Web pour la gestion de la communauté Decidim créée autour de notre logiciel, comme point de rencontre de la communauté Decidim et où la plupart des activités et des communications entre les utilisateurs et Decidim prend place. Ces plateformes, comme https://meta.decidim.org/ ou GitHub(https://github.com/decidim/decidim)sont gouvernées par leurs propres Conditions Générales d'Utilisations.

Nonobstant,Decidim peut potentiellement traiterdes données personnelles via ces plateformes pour la gestion des projets de lacommunauté développés sur ces plateformes respectivement, en particulier cesdonnées peuvent consister en les données de connexion à ces plateformes, leprofil utilisateur, et le contenu des commentaires et remarques quel'utilisateur ferait pour contribuer aux projetsDecidim. À noter que ces informations peuvent être publique et, de manièreconséquente, accessible et visible des autres utilisateurs.

e. Données collectés via nos partenaires

Toute personne ou organisation voulant librement participer dans la communauté Decidim, participer aux débats, collaborer à l'organisation d'événements, promouvoir le travail d'un groupe ou de journées communautaires, ainsi que contribuer au développement ou la documentaion de notre plateforme libre et open-source de démocratie participative, gestion des instances etc., peut choisir de devenir membre de Decidim, tant qu'elle a montré un investissement conséquent dans la commauté via la réalisation d'activités décrites précedemment. Pour ce faire, vous devez compléter un formulaire pour soumettre votre candidature, qui sera évaluée par le Comité de Coordination Decidim.

Le traitement des données personnelles des membres de Decidim est effectué dans le but de gérer les projets et activités sus-mentionnés dans lesquels les membres associés participent, la gestion comptable des cotisations d'adhérents et, en général, la gouvernance des projets et activités de Decidim, pour assurer la conformité avec les principes et valeurs de Decidim autant que les devoirs des droits et devoirs associés.

section-3: + paragraph:

La base juridique de notre traitement de données personnelles est la suivantes :

  • Le traitement des Utilisateurs et des données associées est nécessaire pour exécuter le contrat, consistant en l'acceptation par les utilisateurs du texte légal du site Web, afin de leur fournir toutes les informations sur Decidim et ses technologies, projets et activités, en plus de leur permettre de participer aux projets et activités réalisés par Decidim.
  • Nous pouvons également traiter vos données personnelles lorsque vous nous donnez votre consentement exprès lors de publications sur les projets et activités de Decidim auxquels vous avez participé, communiqué de presse ou autres formes de communication et de diffusion de activités de Decidim, ainsi que de recevoir des informations particulières régulièrement et/ou lorsque vous nous contactez via le formulaire de contact du site Web ou par courriel.
  • De plus, nous pouvons traiter vos données sur notre intérêt légitime pour effectuer des études statistiques ou d'autres techniques de génération de connaissances. la mise en œuvre de la pseudonymisation et, si possible, de mesures d’anonymisation, telles que l’agrégation des données, afin de protéger la vie privée des Utilisateurs, conformément à l’art. 89 RGPD

Dans certaines circonstances, nous pouvons traiter vos données conformément à cette politique afin de nous conformer à une obligation légale ou réglementaire à laquelle nous sommes soumis.

title: Base juridique - paragraph: >- -

La base juridique de notre traitement de données personnelles est la suivantes :

  • Le traitement des Utilisateurs et des données associées est nécessaire pour exécuter le contrat, consistant en l'acceptation par les utilisateurs du texte légal du site Web, afin de leur fournir toutes les informations sur Decidim et ses technologies, projets et activités, en plus de leur permettre de participer aux projets et activités réalisés par Decidim.
  • Nous pouvons également traiter vos données personnelles lorsque vous nous donnez votre consentement exprès lors de publications sur les projets et activités de Decidim auxquels vous avez participé, communiqué de presse ou autres formes de communication et de diffusion de activités de Decidim, ainsi que de recevoir des informations particulières régulièrement et/ou lorsque vous nous contactez via le formulaire de contact du site Web ou par courriel.
  • De plus, nous pouvons traiter vos données sur notre intérêt légitime pour effectuer des études statistiques ou d'autres techniques de génération de connaissances. la mise en œuvre de la pseudonymisation et, si possible, de mesures d’anonymisation, telles que l’agrégation des données, afin de protéger la vie privée des Utilisateurs, conformément à l’art. 89 RGPD

Dans certaines circonstances, nous pouvons traiter vos données conformément à cette politique afin de nous conformer à une obligation légale ou réglementaire à laquelle nous sommes soumis.

section-4: + paragraph: '

Nous traitons vos données personnelles de manière confidentielle conformément à la législation applicable. Sauf indication contraire, vos données personnelles ne seront pas communiquées à des tiers.

Spécifiquement, nous divulguons vos données comme suit :

  • Nous pouvons donner accès à vos données personnelles à nos fournisseurs de services informatiques dans le cadre de contrats de fourniture de services en faveur de Decidim. Parmi les autres, Netlify, Inc., une entité américaine qui nous fournit des services d''hébergement web. Decidim a souscrit à Netlify un accord de traitement des données, y compris les clauses contractuelles normalisées actuellement approuvées par la Commission Européenne, afin de s''assurer que vos données personnelles sont traitées avec toutes les garanties appropriées. Plus d''informations sur la façon dont Netlify utilise vos données personnelles ici : https://www.netlify.com/gdpr-ccpa.
  • Nous pouvons mettre les données à disposition de l''administration publique ou des autorités pour enquêter sur les soupçons de fraude, le harcèlement ou toute autre violation de toute loi, règle ou réglementation ou des politiques du site Web.

Pour plus d''informations sur nos fournisseurs de services qui effectuent des transferts internationaux, veuillez nous contacter à l''adresse privacy@decidim. rg.

' title: Communication des données - paragraph: >- -

Nous traitons vos données personnelles de manière confidentielle conformément à la législation applicable. Sauf indication contraire, vos données personnelles ne seront pas communiquées à des tiers.

Spécifiquement, nous divulguons vos données comme suit :

  • Nous pouvons donner accès à vos données personnelles à nos fournisseurs de services informatiques dans le cadre de contrats de fourniture de services en faveur de Decidim. Parmi les autres, Netlify, Inc., une entité américaine qui nous fournit des services d'hébergement web. Decidim a souscrit à Netlify un accord de traitement des données, y compris les clauses contractuelles normalisées actuellement approuvées par la Commission Européenne, afin de s'assurer que vos données personnelles sont traitées avec toutes les garanties appropriées. Plus d'informations sur la façon dont Netlify utilise vos données personnelles ici : https://www.netlify.com/gdpr-ccpa.
  • Nous pouvons mettre les données à disposition de l'administration publique ou des autorités pour enquêter sur les soupçons de fraude, le harcèlement ou toute autre violation de toute loi, règle ou réglementation ou des politiques du site Web.

Pour plus d'informations sur nos fournisseurs de services qui effectuent des transferts internationaux, veuillez nous contacter à l'adresse privacy@decidim. rg.

section-5: + paragraph: "

Nous ne conservons vos données personnelles que tant qu'il est nécessaire de remplir les fins pour lesquelles nous les avons collectées, même pour se conformer aux exigences juridiques, comptables ou d'information.

Pour déterminer la période de rétention appropriée pour les données personnelles, nous considérons le montant, la nature et la sensibilité des données personnelles, le risque potentiel de dommage résultant d'une utilisation non autorisée ou de la divulgation de vos données personnelles, les fins pour lesquelles nous traitons vos données personnelles, si nous pouvons atteindre ces objectifs par d'autres moyens et par les exigences légales applicables.

" title: Conservation des données - paragraph: >- -

Nous ne conservons vos données personnelles que tant qu'il est nécessaire de remplir les fins pour lesquelles nous les avons collectées, même pour se conformer aux exigences juridiques, comptables ou d'information.

Pour déterminer la période de rétention appropriée pour les données personnelles, nous considérons le montant, la nature et la sensibilité des données personnelles, le risque potentiel de dommage résultant d'une utilisation non autorisée ou de la divulgation de vos données personnelles, les fins pour lesquelles nous traitons vos données personnelles, si nous pouvons atteindre ces objectifs par d'autres moyens et par les exigences légales applicables.

section-6: + paragraph: "

Nous mettons en œuvre des mesures de sécurité et des plans de protection des données personnelles conformément à la loi pour maintenir la confidentialité et l'intégrité de vos données et la protection contre l'accès non autorisé, la modification ou la destruction de ces données.

" title: Mesures de sécurité - paragraph: >- -

Nous mettons en œuvre des mesures de sécurité et des plans de protection des données personnelles conformément à la loi pour maintenir la confidentialité et l'intégrité de vos données et la protection contre l'accès non autorisé, la modification ou la destruction de ces données.

section-7: + paragraph:

Vous avez différents droits de par les lois concernant la protection de vos données personnelles. Spécifiquement, vous avez le droit à:

  • Demande d'accès à vos données personnelles. Cela vous permet de recevoir une copie des données personnelles que nous avons sur vous et vous permet de vérfier si nous les traitons légalement.
  • Demande de correction de vos données personnelles. Cela vous permet de corriger toute information incorrecte au incomplète à votre sujet, après vérification des nouvelles données fournies.
  • Demande de suppression de vos données personnelles. Cela vous permet de nous demander la suppression des données n'ayant plus aucune raison d'être traité par nos soins. Vous avez également le droit de nous demander supprimer vos données personnelles lorsque vous avez exercé avec succès votre droit d'opposition au traitement (voir ci-dessous), si nous avons traité vos données de manière illégale ou lorsque nous sommes tenus d'effacer vos données personnelles pour nous conformer à la législation locale. Notez toutefois que nous ne serons pas toujours en mesure de satisfaire à votre demande d'effacement pour des raisons juridiques spécifiques qui vous vous seront notifiées, le cas échéant, au moment de votre demande.
  • S'opposer au traitement de vos données personnelles lorsque nous nous appuyons sur un légitime (ou celui d'un tiers) et qu'un élément de votre situation particulière vous incite à vous opposer au traitement sur ce motif car vous estimez qu'il a un impact sur vos droits et libertés fondamentaux. Vous avez également le droit de vous opposer lorsque nous traitons vos données à caractère personnel à des fins de marketing direct. Dans certains cas, nous pouvons démontrer que nous avons des motifs légitimes impérieux de traiter vos informations qui l'emportent sur vos droits et libertés.
  • Demande de restriction sur les traitements de vos données personnelles.Cela vous permet de nous demander de suspendre le traitement de vos données personnelles dans les scénarios suivants:(a) si vous voulez établir la véracité des données; (b) là où notre utilisation des données est illégale mais vous ne voulez pas que nous les supprimions; (c) lorsque vous avez besoin que nous conservions vos données même si nous n'en avons plus besoin, car vous en avez besoin pour exercer ou défendre des revendications juridiques; ou (d) vous avez émis des objections quant à notre utilisation de vos données mais nous avons besoins de vérifier si nous avons des motifs légitimes impérieux pour les utiliser.
  • Demander le transfert de vos données personnelles à vous ou à un tiers (droit à la portabilités des données). Nous vous fournirons à vous ou à une tierce organisation que vous aurez choisie vos données personnelles dans un format structuré, communément utilisé,. et traitable informatiquement. Notez que ce droit s'applique uniquement aux informations fournies automatiquement sur lesquelles. vous auriez accorder votre consentement à notre égard pour que nous les traitions, ou à des moments où nous aurions utilisées ces informations pour effectuer un contrat avec vous.
  • Retirer votre consentement à tout moment. Cependant, cela n'affectera pas la légalité de tout traitement réalisé avant cette action.Si vous retirez votre consentement, nous ne serons potentiellement plus en mesure de vous fournir certains produits ou services. Nous vous en informerons si c'est le cas au moment où vous retirez votre consentement.

Les droits sus-mentionnés sont actionnables en nous contactant via privacy@decidim.org.

Vous avez également le droit de vous plaindre auprès de l'autorité compétente, dans ce cas la Comission Nationale Informatique et Libertés (Cnil).

. title: Vos droits - paragraph: >- -

Vous avez différents droits de par les lois concernant la protection de vos données personnelles. Spécifiquement, vous avez le droit à:

  • Demande d'accès à vos données personnelles. Cela vous permet de recevoir une copie des données personnelles que nous avons sur vous et vous permet de vérfier si nous les traitons légalement.
  • Demande de correction de vos données personnelles. Cela vous permet de corriger toute information incorrecte au incomplète à votre sujet, après vérification des nouvelles données fournies.
  • Demande de suppression de vos données personnelles. Cela vous permet de nous demander la suppression des données n'ayant plus aucune raison d'être traité par nos soins. Vous avez également le droit de nous demander supprimer vos données personnelles lorsque vous avez exercé avec succès votre droit d'opposition au traitement (voir ci-dessous), si nous avons traité vos données de manière illégale ou lorsque nous sommes tenus d'effacer vos données personnelles pour nous conformer à la législation locale. Notez toutefois que nous ne serons pas toujours en mesure de satisfaire à votre demande d'effacement pour des raisons juridiques spécifiques qui vous vous seront notifiées, le cas échéant, au moment de votre demande.
  • S'opposer au traitement de vos données personnelles lorsque nous nous appuyons sur un légitime (ou celui d'un tiers) et qu'un élément de votre situation particulière vous incite à vous opposer au traitement sur ce motif car vous estimez qu'il a un impact sur vos droits et libertés fondamentaux. Vous avez également le droit de vous opposer lorsque nous traitons vos données à caractère personnel à des fins de marketing direct. Dans certains cas, nous pouvons démontrer que nous avons des motifs légitimes impérieux de traiter vos informations qui l'emportent sur vos droits et libertés.
  • Demande de restriction sur les traitements de vos données personnelles.Cela vous permet de nous demander de suspendre le traitement de vos données personnelles dans les scénarios suivants:(a) si vous voulez établir la véracité des données; (b) là où notre utilisation des données est illégale mais vous ne voulez pas que nous les supprimions; (c) lorsque vous avez besoin que nous conservions vos données même si nous n'en avons plus besoin, car vous en avez besoin pour exercer ou défendre des revendications juridiques; ou (d) vous avez émis des objections quant à notre utilisation de vos données mais nous avons besoins de vérifier si nous avons des motifs légitimes impérieux pour les utiliser.
  • Demander le transfert de vos données personnelles à vous ou à un tiers (droit à la portabilités des données). Nous vous fournirons à vous ou à une tierce organisation que vous aurez choisie vos données personnelles dans un format structuré, communément utilisé,. et traitable informatiquement. Notez que ce droit s'applique uniquement aux informations fournies automatiquement sur lesquelles. vous auriez accorder votre consentement à notre égard pour que nous les traitions, ou à des moments où nous aurions utilisées ces informations pour effectuer un contrat avec vous.
  • Retirer votre consentement à tout moment. Cependant, cela n'affectera pas la légalité de tout traitement réalisé avant cette action.Si vous retirez votre consentement, nous ne serons potentiellement plus en mesure de vous fournir certains produits ou services. Nous vous en informerons si c'est le cas au moment où vous retirez votre consentement.

Les droits sus-mentionnés sont actionnables en nous contactant via privacy@decidim.org.

Vous avez également le droit de vous plaindre auprès de l'autorité compétente, dans ce cas la Comission Nationale Informatique et Libertés (Cnil).

. section-8: + paragraph: "

Nous nous réservons le droit de modifier les conditions de cette politique de confidentialité et nous vous en informerons en fournissant un avis clair de ces modifications par e-mail ou sur notre site Web, et dans cette politique de confidentialité. Si vous continuez à utiliser nos services après cette mise à jour, vous serez supposé accepter les nouvelles conditions. Si vous n'acceptez pas la mise à jour, veuillez résilier votre compte ou nous en aviser et nous clôturerons votre compte et supprimerons vos données personnelles (sauf si elles doivent être conservées à des fins légales), et vous ne pourrez pas continuer à utiliser nos services.

Sauf disposition contraire d'un règlement local spécifique, la Politique de Confidentialité est régie par les lois espagnoles.

Dernière mise à jour: février 2022.

" title: Général - paragraph: >- -

Nous nous réservons le droit de modifier les conditions de cette politique de confidentialité et nous vous en informerons en fournissant un avis clair de ces modifications par e-mail ou sur notre site Web, et dans cette politique de confidentialité. Si vous continuez à utiliser nos services après cette mise à jour, vous serez supposé accepter les nouvelles conditions. Si vous n'acceptez pas la mise à jour, veuillez résilier votre compte ou nous en aviser et nous clôturerons votre compte et supprimerons vos données personnelles (sauf si elles doivent être conservées à des fins légales), et vous ne pourrez pas continuer à utiliser nos services.

Sauf disposition contraire d'un règlement local spécifique, la Politique de Confidentialité est régie par les lois espagnoles.

Dernière mise à jour: février 2022.

+ title: Politique de confidentialité + testimonials: + n1: + org: Hôtel de Ville de Barcelone (2015-2019) + quote: Grâce à Decidim, nous sommes parvenus à coproduire un plan stratégique pour la ville de Barcelone avec ses citoyens. En 2016, nous avons inauguré le Plan d’Action Municipale sous la forme d’un processus participatif par le biais de Decidim Barcelone. Actuellement, ce plan comprend près de 7 000 propositions citoyennes. L'un des avantages de l'utilisation de cette plateforme est que vous pouvez contrôler à tout moment l'état de mise en œuvre des propositions approuvées. + n2: + org: Som Énergie + quote: Avec la mise en œuvre de Decidim à Som Energia, nous avons créé un espace de participation plus chaleureux. Nous avons déployé l'outil en 2018, pour accueillir l'Assemblée Générale de la coopérative et quelques mois plus tard, nous avons débattu de la refonte graphique du développement collaboratif de l'école de Som Energia, entre autres processus participatifs. En quelques mois, plus de 3 500 participants se sont inscrits, 5 processus participatifs et 3 assemblées furent en place et plus de 1 300 participants votèrent lors de la dernière Assemblée Générale. + n3: + org: Présidente municipale de Mérida Yucatán, Mexique. Mairie de Mérida Yucatán, Mexique + quote: La plate-forme numérique Decide Mérida a été une opportunité qui a encouragé comme jamais auparavant la participation des citoyens à l’élaboration du Plan de Développement Municipal de Mérida 2018-2021. Nous avons eu plus de 3 000 interactions citoyennes, y compris des propositions, des commentaires, suggestions et soutiens pour obtenir un consensus le plus élevé possible sur ce qui est le mieux pour notre ville. Il ne fait aucun doute que la plateforme Decide Mérida continuera d’être notre allié pour faire de Mérida une société de plus en plus participative. + n4: + org: Ville d'Helsinki + quote: Ce que nous apprécions, c’est qu’il est construit en gardant la démocratie comme ligne de mire, et donc la démocratie est une priorité majeure. Les principes démocratiques tels que la responsabilisation, l'égalité et la transparence sont au cœur de la conception. + n5: + org: Gouvernement libre de Mexico + quote: Presque tous les processus participatifs qui sont arrivés à notre table, nous avons été en mesure de le résoudre en utilisant les règles opérationnelles de Decidim. En tant qu'outil, il est très bon. Cependant, l'aspect qui nous semble le plus solide et le plus important est sa communauté, tant les développeurs que ceux qui l'utilisent pour des processus participatifs. La coopération avec eux nous a fait comprendre les défis que représente la mise en œuvre de la démocratie participative dans le monde réel. + n6: + org: Fondation Mozilla + quote: Nous manquons d'espaces publics pour nous exprimer. Il est important que nous reprenions contrôle de ces derniers. Les plateformes ouvertes comme Decidim font exactement cela. Ce n'est pas seulement ça qui est open-source (pour que d'autres personnes puissent le forker, le réutiliser et construire un processus participatif). Decidim a également ces valeurs que nous voulons refléter dans notre société codée de la manière dont la plateforme est conçue. + n7: + org: Directeur de la recherche OpenForum Europe, Union européenne + quote: Le processus a débuté en octobre 2019 au sein de la DG Communication et Démocratie en ligne de la Commission européenne au Centre commun de recherche (service de la science et de la connaissance de la Commission européenne). Une analyse des besoins de la Conférence et des outils adaptés à ceux-ci, a conduit à choisir l'outil open source Decidim pour sa maturité technique, sa grande communauté et sa flexibilité. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Merci de nous contacter, nous vous répondrons sous peu. + title: Merci pour votre e-mail + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/hu.yml b/locales/hu.yml index 793ec379..d0831551 100644 --- a/locales/hu.yml +++ b/locales/hu.yml @@ -1,448 +1,589 @@ +--- hu: - path: '' - activeLang: 'Angol' - nav: - text: 'Navigáció' - demo: 'Demo' - community: 'Community' - contract: 'Social Contract' - code: 'Kód' - docs: - title: 'Documentation' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Funkciók' - faqs: 'FAQs' - contact: 'Kapcsolat' - used_by: 'Decidim in use' - partners: 'Cooperating entities' - modules: 'Modules' - press: 'Press' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Join our call' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest is an intense 3-day program of activities devoted to the Decidim project, participatory democracy and open source tools for collective intelligence in the era of Global Democracy.' - index: - hero: - heading: 'Free Open-Source participatory democracy for cities and organizations' - subheading: 'Decidim is a digital platform
for citizen participation' - intro: 'Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim.' - video: - play: 'Play video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Close video' - subhero: - intro: 'Decidim helps citizens, organizations and public institutions self-organize democratically at every scale.' - feature1: 'Strategic
planning' - feature2: 'Participatory
budgeting' - feature3: 'Initiatives and
citizen consultations' - feature4: 'Participative
processes' - feature5: 'Gyűlések' - feature6: 'Networked
communication' - used_by: - title: 'They are already using Decidim' - cta: 'Összes megjelenítése' - cta: - title: 'start using Decidim today' - button: - code: 'Code on Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Online Demo - p1: Play around and explore freely the Decidim platform with our online demo. - p2: Decidim is up and running on several instances that you can visit and explore, Decidim Barcelona at Barcelona City or you can visit the sites of Gavà and L'Hospitalet. But these are real instances where you can't really play around freely, as you might not be a citizen of those municipalities, and you can't explore those sites as an admin. - p3: If you want to go further you are welcome to test Decidim on our Decidim Demo Site (courtesy of our developers at aLabs). Enter the demo site and freely explore the potential of Decidim and its features. - p4: You can log in as Admin (username "admin@example.org" and password "decidim123456"). - button: Online demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, our community' - subtitle: 'A democratic community that manages the Decidim project in all its dimensions' - intro: 'Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform.' - cta: 'Get started' - features: - title: 'Propose new features' - subtitle: 'To design and develop Decidim among all' - text: 'You can create debates about the future of Decidim or propose new features or improvements. Proposals can receive endorsements and comments, to show, for example, the interest they arouse in the community and value their development. Proposals that have a sponsor (such as a city council or any other entity), responsible for seeking and providing the necessary resources to carry out their development, will be useful for the project.' - cta: 'Enter and participate now' - bug: - title: 'Report a bug' - subtitle: 'Collaboration for progressive improvement' - text: 'Each new release of Decidim incorporates new features and usability improvements, but not everything works at first and errors may appear. Here you can report bugs you find and help the developers to fix them quickly.' - cta: 'Enter and participate now' - img_alt: 'Decidim Community Photo at Metadecidim Meeting 2016' - timeline: - title: 'Collaborative design of functionalities' - step1: - title: 'Új javaslat' - text: 'Functional description' - step2: - title: 'Validated proposal' - text: 'Technical and technopolitical validation' - step3: - title: 'Planned proposal' - text: 'Resources for development (shared or not)' - step4: - title: 'Issue' - text: 'Technical description' - step5: - title: 'Pull request' - text: 'Developed code' - step6: - title: 'Funcionality done' - text: 'Avaliable on the next version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Get started + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform. + subtitle: A democratic community that manages the Decidim project in all its dimensions + title: Metadecidim, our community contact: - title: Contact us - bot_field: "Don’t fill this out if you're human:" - name: Név - entity: Entity + bot_field: 'Don’t fill this out if you''re human:' email: Email - subject: Tárgy message: Message + name: Név privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Küldés - thanks: - title: Thanks for your email - message: Thank you for contacting us, we will get back to you soon. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contact us + demo: + button: Online demo + p1: Play around and explore freely the Decidim platform with our online demo. + strong: Try Online + title: Online Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Frequently asked questions + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funkciók' - intro: '

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

' - list: - n1: - title: 'Participatory
budgets' - content: 'It analyses the submitted proposals and promotes a new way of distributing common resources.' - n2: - title: 'Citizen’s initiatives
and consultations' - content: 'Empower your community through citizen initiatives. Promote relevant voting through consultations.' - n3: - title: 'The power
of a political network' - content: 'It takes deliberation, collaboration and decision to a massive dimension, with thousands of people participating in real time.' - n4: - title: 'A democratic
and flexible system' - content: 'Thanks to its modular architecture and scalable logic, you can configure a powerful system of democratic governance in all kinds of organizations.' - n5: - title: 'We take democracy
very seriously' - content: 'Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants.' - n6: - title: "It's yours.
Share it. Improve it." - content: 'A platform designed entirely with free software, open and collaborative content thanks to the community Metadecidim.' - cta: - features: 'See all features' - values: 'Go to social contract' + intro: "

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

" page: feature1: - title: 'Részvételi folyamatok' - subtitle: 'to democratize common issues, step by step' - text: >- - Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan. - feature2: - title: 'Gyűlések' - subtitle: 'the power of collective self-organization' - text: >- - Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body). - feature3: - title: 'Konzultációk' - subtitle: 'the right to decide with all democratic guarantees' - text: >- - Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. - feature4: - title: 'Kezdeményezések' - subtitle: "setting everyone's agenda, within everyone's reach" - text: >- - Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. - feature5: - title: 'Javaslatok' - subtitle: 'your ideas in detail' - text: >- - The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. - feature6: - title: 'Voting' - subtitle: 'decide your vote' - text: >- - The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc. - feature7: - title: 'Eredmények' - subtitle: 'no proposal without an answer' - text: >- - The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. - feature8: - title: 'Elszámoltathatóság' - subtitle: 'transparency from beginning to end' - text: >- - The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. - feature9: - title: 'Találkozók' - subtitle: 'to meet and not miss anything' - text: >- - The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + subtitle: to democratize common issues, step by step + text: 'Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan.' + title: Részvételi folyamatok feature10: - title: 'Részvételi szövegek' - subtitle: 'to analyze, synthesize, and build in common' - text: >- - The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + subtitle: to analyze, synthesize, and build in common + text: The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + title: Részvételi szövegek feature11: - title: 'konferencia' - subtitle: 'Where big events are premiered' - text: >- - The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + subtitle: Where big events are premiered + text: The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + title: konferencia feature12: - title: 'Felmérések' - subtitle: 'Because the opinion of your community matters' - text: >- - The surveys component can be used to design and publish surveys and to display and download their results. + subtitle: Because the opinion of your community matters + text: The surveys component can be used to design and publish surveys and to display and download their results. + title: Felmérések feature13: - title: 'Sorsolás' - subtitle: 'Equality and the justice of randomness' - text: >- - The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + subtitle: Equality and the justice of randomness + text: The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + title: Sorsolás feature14: - title: 'Hozzászólások' - subtitle: 'Building a collective intelligence' - text: >- - The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + subtitle: Building a collective intelligence + text: The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + title: Hozzászólások feature15: - title: 'Pages and blogs' - subtitle: 'Your community, informed and up to date' - text: >- - The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + subtitle: Your community, informed and up to date + text: The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + title: Pages and blogs feature16: - title: 'Értesítések' - subtitle: 'Personalized information on interesting contents' - text: >- - Decidim enables you to track any space or component to receive updates every time they happen. + subtitle: Personalized information on interesting contents + text: Decidim enables you to track any space or component to receive updates every time they happen. + title: Értesítések feature17: - title: 'Hírlevél' - subtitle: 'Simple but powerful' - text: >- - The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + subtitle: Simple but powerful + text: The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + title: Hírlevél + feature2: + subtitle: the power of collective self-organization + text: 'Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body).' + title: Gyűlések + feature3: + subtitle: the right to decide with all democratic guarantees + text: Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. + title: Konzultációk + feature4: + subtitle: setting everyone's agenda, within everyone's reach + text: Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. + title: Kezdeményezések + feature5: + subtitle: your ideas in detail + text: The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. + title: Javaslatok + feature6: + subtitle: decide your vote + text: 'The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc.' + title: Voting + feature7: + subtitle: no proposal without an answer + text: The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. + title: Eredmények + feature8: + subtitle: transparency from beginning to end + text: The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. + title: Elszámoltathatóság + feature9: + subtitle: to meet and not miss anything + text: The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + title: Találkozók + subtitle: For democratic organizations and collectives of any size and kind. + title: Funkciók type1: - title: 'Spaces for participation' - subtitle: 'For participants to make proposals and make decisions' + title: Spaces for participation type2: - title: 'Elemek' - subtitle: 'For participants and spaces to interact' - other: - subtitle: 'Dare to combine the components. Design and deploy a powerful democratic system in an easy way and adapt it to your organization’s needs' - cta: - title: 'Discover how Decidim works in depth' - button: 'Functions and features' - partners: - notice: The cooperating entities logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Név - type: - community: Community - auth: Authorization - official: Hivatalos - used_by: - explain: These cities, regions and organizations are already using Decidim - type: - city: Cities - region: Regions - organizations: Szervezetek - testimonials: - n1: - quote: >- - Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. - org: Barcelona City Hall (2015-2019) - n2: - quote: >- - With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. - org: Som Energia - n3: - quote: >- - The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. - org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico - n4: - quote: >- - What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. - org: City of Helsinki - n5: - quote: >- - Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. - org: Open Government of Mexico City - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Frequently asked questions - q01: - question: What is Decidim? - answer: >- - Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common's free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision. - q02: - question: Who is currently using Decidim? - answer: >- - It is currently used by cities and organizations. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). - q03: - question: What can a Decidim administrator do? - answer: >- - Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). - q04: - question: What can a participant (user) of Decidim do? - answer: >- - Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. - q05: - question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. - answer: 'Yes, we have an [online demo](/demo).' - q06: - question: How often is the platform updated? - answer: >- - We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). - q07: - question: What do I need to install Decidim? - answer: >- - Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). - q08: - question: Where can I find the project roadmap and the planned features? - answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'What does it mean that Decidim is for free, "libre" and open source?' - answer: >- - Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. - q10: - question: >- - I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: I have many doubts, of all kinds...where can I ask them or solve them? - answer: >- - The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). - q12: - question: Is there any tutorial to start setting it up? - answer: >- - You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). - q13: - question: What is the Social Contract? - answer: >- - That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). - q14: - question: What are the differences with Consul Project / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: What is the Metadecidim community? - answer: >- - [Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the [SOM (Metadecidim Operative Sessions)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) and the [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-) - q16: - question: Can I join the Metadecidim community even if I don't live in Barcelona? - answer: >- - Decidim is a project that was born in Barcelona and that is why there is a strong territorial bond with this city. But yes, you can collaborate online, through participatory processes, debates, etc .... that we provide in Metadecidim. Although you might want to come to Barcelona sometime :) - q17: - question: We want to make a formal collaboration agreement. Are there any templates we can use? - answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). - q18: - question: What kind of members you accept into the Metadecidim community? - answer: Anybody who has good faith and a correct attitude towards democratic collaboration. - q19: - question: Do you provide free installation to non-profit organizations? - answer: >- - Yes, only if you are a Barcelona based organization. Send us a message and you will be helped by the Directorate of Research, Development and Innovation of the Area of Citizenship Rights, Participation and Transparency of Barcelona City Council. - q20: - question: Do you support institutions? - answer: >- - Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. - q21: - question: What is the Decidim Association? - answer: >- - The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. - q22: - question: How can I get more information about the Decidim Association? - answer: >- - In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) - q23: - question: How can I become a member of the Decidim Association? - answer: >- - Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: When was the Decidim Association born? - answer: >- - The Associació [Decidim is founded on February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + title: Elemek + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim. + subheading: Decidim is a digital platform
for citizen participation + subhero: + cta: Explore all features + feature1: Strategic
planning + feature2: Participatory
budgeting + feature3: Initiatives and
citizen consultations + feature4: Participative
processes + feature5: Gyűlések + feature6: Networked
communication + intro: Decidim helps citizens, organizations and public institutions self-organize democratically at every scale. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: They are already using Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Kód + community: Community + contact: Kapcsolat + contract: Social Contract + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentation + faqs: FAQs + features: Funkciók + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Modules + partners: Cooperating entities + partnership-policy: Partnership policy + press: Press + privacy-policy: Privacy policy + text: Navigáció + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in use + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: '' + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Barcelona City Hall (2015-2019) + quote: Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. + n2: + org: Som Energia + quote: With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. + n3: + org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico + quote: The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. + n4: + org: City of Helsinki + quote: What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. + n5: + org: Open Government of Mexico City + quote: Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Thank you for contacting us, we will get back to you soon. + title: Thanks for your email + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/it.yml b/locales/it.yml index 28f78b31..b93d9323 100644 --- a/locales/it.yml +++ b/locales/it.yml @@ -1,448 +1,589 @@ +--- it: - path: '/it' - activeLang: 'Italiano' - nav: - text: 'Navigazione' - demo: 'Demo' - community: 'Community' - contract: 'Contratto Sociale' - code: 'Codice' - docs: - title: 'Documentazione' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Funzionalità (features)' - faqs: 'FAQ' - contact: 'Contatto' - used_by: 'Decidim in uso' - partners: 'Enti cooperanti' - modules: 'Moduli' - press: 'Stampa' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Unisciti alla nostra chiamata' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest è un intenso programma di attività di 3 giorni dedicate al progetto Decidim, democrazia partecipativa e strumenti open source per l''intelligenza collettiva nell''era della Democrazia Globale.' - index: - hero: - heading: 'Libera democrazia partecipativa Open-Source per città e organizzazioni' - subheading: 'Decidim è una piattaforma digitale
per la partecipazione dei cittadini' - intro: 'Tecnologia gratuita e sicura.
Con tutte le garanzie democratiche.
La riprogrammazione della democrazia è ora possibile con Decidim.' - video: - play: 'Riproduci video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Chiudi video' - subhero: - intro: 'Decidim aiuta i cittadini, le organizzazioni e le istituzioni pubbliche a organizzarsi democraticamente su ogni scala.' - feature1: 'Pianificazione strategica
' - feature2: 'Bilancio partecipativo
' - feature3: 'Iniziative e consultazioni dei cittadini
' - feature4: 'Processi partecipativi
' - feature5: 'assemblee' - feature6: 'Comunicazione in rete
' - used_by: - title: 'Stanno già usando Decidim' - cta: 'Vedi tutto' - cta: - title: 'inizia ad usare Decidim oggi' - button: - code: 'Codice su Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Demo Online - p1: Gioca in giro ed esplora liberamente la piattaforma Decidim con la nostra demo online. - p2: Decidim è in esecuzione su diverse istanze che puoi visitare ed esplorare, Decidim Barcelona a Barcelona City o puoi visitare i siti di Gava e L'Hospitalet. Ma questi sono casi reali in cui non si può davvero giocare liberamente, come si potrebbe non essere un cittadino di quei comuni, e non è possibile esplorare tali siti come un amministratore. - p3: Se volete andare oltre, siete invitati a testare Decidim sul nostro sito demo di Decidim (cortesia dei nostri sviluppatori presso aLabs). Entra nel sito demo e esplora liberamente il potenziale di Decidim e le sue caratteristiche. - p4: Puoi accedere come Admin (username "admin@example.org" e password "decidim123456"). - button: Demo online + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, la nostra comunità' - subtitle: 'Una comunità democratica che gestisce il progetto Decidim in tutte le sue dimensioni' - intro: 'Metadecidim è una comunità che collabora alla progettazione della piattaforma e alla costruzione del progetto. Insieme possiamo progettare e sviluppare nuove funzionalità e segnalare bug per il miglioramento continuo della piattaforma.' - cta: 'Per iniziare' - features: - title: 'Proponi nuove funzionalità' - subtitle: 'Progettare e sviluppare il Decidim tra tutti' - text: 'È possibile creare dibattiti sul futuro del Decidim o proporre nuove funzionalità o miglioramenti. Le proposte possono ricevere sostegni e commenti, per dimostrare, ad esempio, l''interesse che suscitano nella comunità e apprezzare il loro sviluppo. Proposte che hanno uno sponsor (come un consiglio comunale o qualsiasi altra entità), la ricerca e la messa a disposizione delle risorse necessarie per realizzare il loro sviluppo saranno utili per il progetto.' - cta: 'Entra e partecipa ora' - bug: - title: 'Segnala un bug' - subtitle: 'Collaborazione per il progressivo miglioramento' - text: 'Ogni nuovo rilascio di Decidim incorpora nuove funzionalità e miglioramenti di usabilità, ma non tutto funziona all''inizio e potrebbero apparire errori. Qui puoi segnalare i bug che trovi e aiutare gli sviluppatori a risolverli rapidamente.' - cta: 'Entra e partecipa ora' - img_alt: 'Decidim Community Photo al Metadecidim Meeting 2016' - timeline: - title: 'Progettazione collaborativa delle funzionalità' - step1: - title: 'Nuova proposta' - text: 'Descrizione funzionale' - step2: - title: 'Proposta convalidata' - text: 'Convalida tecnica e tecnopolitica' - step3: - title: 'Proposta pianificata' - text: 'Risorse per lo sviluppo (condivise o no)' - step4: - title: 'Problema' - text: 'Descrizione tecnica' - step5: - title: 'Pull request' - text: 'Codice sviluppato' - step6: - title: 'Funcionalità fatta' - text: 'Validabile alla prossima versione' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Per iniziare + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo al Metadecidim Meeting 2016 + intro: Metadecidim è una comunità che collabora alla progettazione della piattaforma e alla costruzione del progetto. Insieme possiamo progettare e sviluppare nuove funzionalità e segnalare bug per il miglioramento continuo della piattaforma. + subtitle: Una comunità democratica che gestisce il progetto Decidim in tutte le sue dimensioni + title: Metadecidim, la nostra comunità contact: - title: Contattaci - bot_field: "Non riempire questo se sei umano:" - name: Nome - entity: Entità + bot_field: 'Non riempire questo se sei umano:' email: Email - subject: Subject message: Messaggio + name: Nome privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Invia - thanks: - title: Grazie per la tua email - message: Grazie per averci contattato, torneremo presto a te. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contattaci + demo: + button: Demo online + p1: Gioca in giro ed esplora liberamente la piattaforma Decidim con la nostra demo online. + strong: Try Online + title: Demo Online + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Domande frequenti + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funzionalità (features)' - intro: '

È possibile utilizzare Decidim in un''organizzazione pubblica o privata, con centinaia o migliaia di potenziali partecipanti, come un consiglio comunale, un''associazione, un''università, una ONG, un sindacato, un collettivo di quartieri o una cooperativa...

Grazie a Decidim potrai configurare gli spazi per la partecipazione (iniziative, assemblee, processi o consultazioni) e arricchirli attraverso le molteplici componenti disponibili (riunioni dirette, indagini, proposte, votazioni, follow-up dei risultati, commenti e molti altri).

' - list: - n1: - title: 'Bilanci partecipativi
' - content: 'Essa analizza le proposte presentate e promuove un nuovo modo di distribuire le risorse comuni.' - n2: - title: 'Iniziative dei cittadini
e consultazioni' - content: 'Potenzia la tua comunità attraverso le iniziative dei cittadini. Promuovi il voto pertinente attraverso le consultazioni.' - n3: - title: 'Il potere
di una rete politica' - content: 'Ci vuole deliberazione, collaborazione e decisione ad una dimensione massiccia, con migliaia di persone che partecipano in tempo reale.' - n4: - title: 'Un sistema democratico
e flessibile' - content: 'Grazie alla sua architettura modulare e alla sua logica scalabile, è possibile configurare un potente sistema di governance democratica in tutti i tipi di organizzazioni.' - n5: - title: 'Prendiamo la democrazia
molto seriamente' - content: 'Il Decidim garantisce trasparenza, tracciabilità e integrità delle informazioni come mai prima d''ora, garantendo sicurezza, privacy e riservatezza a tutti i partecipanti.' - n6: - title: "È tuo.
Condividilo. Miglioralo." - content: 'Una piattaforma progettata interamente con software libero, aperta e collaborativa grazie alla community Metadecidim.' - cta: - features: 'Vedi tutte le funzionalità' - values: 'Vai al contratto sociale' + intro: "

È possibile utilizzare Decidim in un'organizzazione pubblica o privata, con centinaia o migliaia di potenziali partecipanti, come un consiglio comunale, un'associazione, un'università, una ONG, un sindacato, un collettivo di quartieri o una cooperativa...

Grazie a Decidim potrai configurare gli spazi per la partecipazione (iniziative, assemblee, processi o consultazioni) e arricchirli attraverso le molteplici componenti disponibili (riunioni dirette, indagini, proposte, votazioni, follow-up dei risultati, commenti e molti altri).

" page: feature1: - title: 'Processi partecipativi' - subtitle: 'democratizzare le questioni comuni, passo dopo passo' - text: >- - I processi sono uno spazio che permette di creare, attivare/disattivare e gestire vari processi partecipativi. Questi sono distinti dagli altri spazi essendo strutturati in diverse fasi all'interno delle quali tutti i componenti possono essere incorporati. Esempi di processi partecipativi sono: un processo elettorale per i membri di un comitato, un bilancio partecipativo, un processo di pianificazione strategica, la redazione collaborativa di un regolamento o di una norma, la progettazione di uno spazio urbano o la produzione di un piano di politica pubblica. - feature2: - title: 'assemblee' - subtitle: 'il potere di auto-organizzazione collettiva' - text: >- - È uno spazio che offre la possibilità di istituire organi o gruppi decisionali (consigli, gruppi di lavoro, comitati, ecc.). che si riuniscono periodicamente, dettagliando la loro composizione, elencando e geo-localizzando le loro riunioni, e consentire di parteciparvi (ad esempio: assistere se la capacità dei posti a sedere e la natura del complesso lo consentono, aggiungere punti all’ordine del giorno o commentare le proposte e le decisioni prese da tale organismo). - feature3: - title: 'consultazioni' - subtitle: 'il diritto di decidere con tutte le garanzie democratiche' - text: >- - Le consultazioni sono uno spazio che consente di coordinare i referendum, innescare discussioni e dibattiti, ottenere la pubblicazione dei risultati delle votazioni; può essere collegato a un sistema sicuro di voto elettronico. - feature4: - title: 'Iniziative' - subtitle: "stabilire l'agenda di tutti, a portata di tutti" - text: >- - Iniziative è uno spazio che permette ai partecipanti di creare in collaborazione iniziative, definire la loro traiettoria e i loro obiettivi, raccogliere approvazioni, discutere, discutere e diffondere iniziative e definire punti di incontro in cui le firme possono essere raccolte da partecipanti o dibattiti aperti ad altri membri dell'organizzazione. - feature5: - title: 'Proposte' - subtitle: 'le tue idee in dettaglio' - text: >- - La componente delle proposte consente all'utente di creare una proposta utilizzando una procedura guidata di creazione, di confrontarla con quelle esistenti, pubblicarlo sulla piattaforma e includere ulteriori informazioni come la geo-localizzazione o documenti e immagini allegati. Questo componente consente anche di navigare, filtrare e interagire con una serie di proposte. Inoltre, con il proposto-incubatore è possibile creare proposte collaborative. - feature6: - title: 'Votazione' - subtitle: 'decidi il tuo voto' - text: >- - La componente votante offre alle organizzazioni la possibilità di attivare diversi sistemi di voto o di sostegno intorno alle proposte: illimitato, limitato ad una determinata soglia, ponderato, basato sui costi, ecc. - feature7: - title: 'Risultati' - subtitle: 'nessuna proposta senza risposta' - text: >- - La componente dei risultati è utilizzata per trasformare le proposte in risultati e fornire risposte ufficiali in merito alla loro accettazione o rifiuto, fondere varie proposte in un unico risultato. - feature8: - title: 'Accountability' - subtitle: 'trasparenza dall''inizio alla fine' - text: >- - La componente di responsabilità offre la possibilità di suddividere i risultati in progetti, definire e applicare gli stati di avanzamento relativi alla loro attuazione, oltre a mostrare la portata dell’attuazione dei risultati raggruppata per categorie e ambiti. - feature9: - title: 'Riunioni' - subtitle: 'per incontrare e non perdere nulla' - text: >- - La componente meeting offre alle organizzazioni e ai partecipanti la possibilità di convocare incontri, determinare la loro posizione e il loro tempo, registrare e limitare i partecipanti, definire la struttura e il contenuto della riunione, nonché pubblicare i verbali e le proposte che ne risultano. + subtitle: democratizzare le questioni comuni, passo dopo passo + text: 'I processi sono uno spazio che permette di creare, attivare/disattivare e gestire vari processi partecipativi. Questi sono distinti dagli altri spazi essendo strutturati in diverse fasi all''interno delle quali tutti i componenti possono essere incorporati. Esempi di processi partecipativi sono: un processo elettorale per i membri di un comitato, un bilancio partecipativo, un processo di pianificazione strategica, la redazione collaborativa di un regolamento o di una norma, la progettazione di uno spazio urbano o la produzione di un piano di politica pubblica.' + title: Processi partecipativi feature10: - title: 'Testi partecipativi' - subtitle: 'per analizzare, sintetizzare e costruire in comune' - text: >- - La componente dei testi partecipativi può essere utilizzata per convertire documenti di testo lunghi in varie proposte o risultati e, viceversa, per comporre e visualizzare un testo unificato basato su una raccolta di proposte o risultati. + subtitle: per analizzare, sintetizzare e costruire in comune + text: La componente dei testi partecipativi può essere utilizzata per convertire documenti di testo lunghi in varie proposte o risultati e, viceversa, per comporre e visualizzare un testo unificato basato su una raccolta di proposte o risultati. + title: Testi partecipativi feature11: - title: 'Conferenza' - subtitle: 'Dove grandi eventi sono premiati' - text: >- - La componente della conferenza consente a un'organizzazione di creare un sito web per un grande evento unendo a una serie di riunioni predefinite (chat, workshop, ecc. , mettere insieme un programma unificato e gestire i partecipanti. + subtitle: Dove grandi eventi sono premiati + text: La componente della conferenza consente a un'organizzazione di creare un sito web per un grande evento unendo a una serie di riunioni predefinite (chat, workshop, ecc. , mettere insieme un programma unificato e gestire i partecipanti. + title: Conferenza feature12: - title: 'Sondaggi' - subtitle: 'Perché il parere della vostra comunità conta' - text: >- - La componente di sondaggi può essere utilizzata per progettare e pubblicare sondaggi e per visualizzare e scaricare i loro risultati. + subtitle: Perché il parere della vostra comunità conta + text: La componente di sondaggi può essere utilizzata per progettare e pubblicare sondaggi e per visualizzare e scaricare i loro risultati. + title: Sondaggi feature13: - title: 'sortition' - subtitle: 'Parità e giustizia di casualità' - text: >- - La componente di smistamento consente di selezionare un certo numero di proposte (ad es. candidati per una giuria) con procedure casuali, ma riproducibili, che garantiscono distribuzioni non parziali e uniformi. + subtitle: Parità e giustizia di casualità + text: La componente di smistamento consente di selezionare un certo numero di proposte (ad es. candidati per una giuria) con procedure casuali, ma riproducibili, che garantiscono distribuzioni non parziali e uniformi. + title: sortition feature14: - title: 'Commenti' - subtitle: 'Costruire un''intelligenza collettiva' - text: >- - Il componente commenti consente agli utenti di aggiungere commenti, per identificare il commento come a favore, contro o neutrale in relazione all'oggetto commentato, per votare commenti, rispondere a loro e per ricevere notifiche sulle risposte. + subtitle: Costruire un'intelligenza collettiva + text: Il componente commenti consente agli utenti di aggiungere commenti, per identificare il commento come a favore, contro o neutrale in relazione all'oggetto commentato, per votare commenti, rispondere a loro e per ricevere notifiche sulle risposte. + title: Commenti feature15: - title: 'Pagine e blog' - subtitle: 'La tua comunità, informata e aggiornata' - text: >- - Il componente delle pagine viene utilizzato per creare pagine informative con una ricca formattazione del testo, immagini e video incorporati. Il componente del blog rende possibile la creazione di post o notizie, e di navigare cronologicamente. + subtitle: La tua comunità, informata e aggiornata + text: Il componente delle pagine viene utilizzato per creare pagine informative con una ricca formattazione del testo, immagini e video incorporati. Il componente del blog rende possibile la creazione di post o notizie, e di navigare cronologicamente. + title: Pagine e blog feature16: - title: 'Notifiche' - subtitle: 'Informazioni personalizzate sui contenuti interessanti' - text: >- - Decidim consente di tenere traccia di qualsiasi spazio o componente per ricevere aggiornamenti ogni volta che accadono. + subtitle: Informazioni personalizzate sui contenuti interessanti + text: Decidim consente di tenere traccia di qualsiasi spazio o componente per ricevere aggiornamenti ogni volta che accadono. + title: Notifiche feature17: - title: 'Newsletter' - subtitle: 'Semplice ma potente' - text: >- - Il componente newsletter consente di inviare email a tutti coloro che sono iscritti alla piattaforma o, più selettivamente, a coloro che partecipano a uno spazio specifico. + subtitle: Semplice ma potente + text: Il componente newsletter consente di inviare email a tutti coloro che sono iscritti alla piattaforma o, più selettivamente, a coloro che partecipano a uno spazio specifico. + title: Newsletter + feature2: + subtitle: il potere di auto-organizzazione collettiva + text: 'È uno spazio che offre la possibilità di istituire organi o gruppi decisionali (consigli, gruppi di lavoro, comitati, ecc.). che si riuniscono periodicamente, dettagliando la loro composizione, elencando e geo-localizzando le loro riunioni, e consentire di parteciparvi (ad esempio: assistere se la capacità dei posti a sedere e la natura del complesso lo consentono, aggiungere punti all’ordine del giorno o commentare le proposte e le decisioni prese da tale organismo).' + title: assemblee + feature3: + subtitle: il diritto di decidere con tutte le garanzie democratiche + text: Le consultazioni sono uno spazio che consente di coordinare i referendum, innescare discussioni e dibattiti, ottenere la pubblicazione dei risultati delle votazioni; può essere collegato a un sistema sicuro di voto elettronico. + title: consultazioni + feature4: + subtitle: stabilire l'agenda di tutti, a portata di tutti + text: Iniziative è uno spazio che permette ai partecipanti di creare in collaborazione iniziative, definire la loro traiettoria e i loro obiettivi, raccogliere approvazioni, discutere, discutere e diffondere iniziative e definire punti di incontro in cui le firme possono essere raccolte da partecipanti o dibattiti aperti ad altri membri dell'organizzazione. + title: Iniziative + feature5: + subtitle: le tue idee in dettaglio + text: La componente delle proposte consente all'utente di creare una proposta utilizzando una procedura guidata di creazione, di confrontarla con quelle esistenti, pubblicarlo sulla piattaforma e includere ulteriori informazioni come la geo-localizzazione o documenti e immagini allegati. Questo componente consente anche di navigare, filtrare e interagire con una serie di proposte. Inoltre, con il proposto-incubatore è possibile creare proposte collaborative. + title: Proposte + feature6: + subtitle: decidi il tuo voto + text: 'La componente votante offre alle organizzazioni la possibilità di attivare diversi sistemi di voto o di sostegno intorno alle proposte: illimitato, limitato ad una determinata soglia, ponderato, basato sui costi, ecc.' + title: Votazione + feature7: + subtitle: nessuna proposta senza risposta + text: La componente dei risultati è utilizzata per trasformare le proposte in risultati e fornire risposte ufficiali in merito alla loro accettazione o rifiuto, fondere varie proposte in un unico risultato. + title: Risultati + feature8: + subtitle: trasparenza dall'inizio alla fine + text: La componente di responsabilità offre la possibilità di suddividere i risultati in progetti, definire e applicare gli stati di avanzamento relativi alla loro attuazione, oltre a mostrare la portata dell’attuazione dei risultati raggruppata per categorie e ambiti. + title: Accountability + feature9: + subtitle: per incontrare e non perdere nulla + text: La componente meeting offre alle organizzazioni e ai partecipanti la possibilità di convocare incontri, determinare la loro posizione e il loro tempo, registrare e limitare i partecipanti, definire la struttura e il contenuto della riunione, nonché pubblicare i verbali e le proposte che ne risultano. + title: Riunioni + subtitle: For democratic organizations and collectives of any size and kind. + title: Funzionalità (features) type1: - title: 'Spazi per la partecipazione' - subtitle: 'Per i partecipanti presentare proposte e prendere decisioni' + title: Spazi per la partecipazione type2: - title: 'Componenti' - subtitle: 'Per i partecipanti e gli spazi per interagire' - other: - subtitle: 'Progettare e distribuire un potente sistema democratico in modo semplice e adattarlo alle esigenze della vostra organizzazione' - cta: - title: 'Scopri come funziona il Decidim in profondità' - button: 'Funzioni e funzioni' - partners: - notice: I loghi delle entità che hanno collaborato sono proprietà intellettuale dei rispettivi titolari di copyright. Non rientrano sotto la licenza Creative Commons By-SA il resto dei contenuti del sito sono concessi in licenza. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Nome - type: - community: Community - auth: Autorizzazione - official: Ufficiale - used_by: - explain: Queste città, regioni e organizzazioni stanno già usando Decidim - type: - city: Città - region: Regioni - organizations: Organizzazioni - testimonials: - n1: - quote: >- - Grazie a Decidim, a Barcellona siamo riusciti a co-produrre un piano urbano strategico insieme ai cittadini. Nel 2016 abbiamo inaugurato il Piano d'azione comunale sotto forma di processo partecipativo attraverso Decidim Barcelona. Attualmente, questo piano comprende quasi 7 mila proposte dei cittadini. Uno dei vantaggi dell'utilizzo di questa piattaforma è che è possibile monitorare in ogni momento lo stato di attuazione delle proposte approvate. - org: Municipio Di Barcellona (2015-2019) - n2: - quote: >- - Con la realizzazione di Decidim in Som Energia abbiamo generato uno spazio più gentile per la partecipazione. Abbiamo rilasciato lo strumento nel 2018, ospitando l'Assemblea Generale della Cooperativa e mesi più tardi abbiamo discusso la Riedizione delle Immagini e lo sviluppo collaborativo della Scuola di Som Energia, tra gli altri processi partecipativi. In pochi mesi, più di 3.500 partecipanti hanno registrato, 5 processi partecipativi, 3 assemblee funzionanti e più di 1.300 voti nell'ultimo voto dell'Assemblea generale. - org: Som Energia - n3: - quote: >- - La Piattaforma digitale di Decide Medi rida è stata un’opportunità che si è aperta come mai prima dei meccanismi di partecipazione dei cittadini per l’elaborazione del Piano di Sviluppo Municipale di Medi rida 2018-2021. Abbiamo avuto più di 3.000 interazioni con i cittadini tra cui proposte, commenti, suggerimenti e sostegno per raggiungere il massimo consenso possibile su ciò che è meglio per la nostra città. Indubbiamente, la piattaforma Decide Meær rida continuerà ad essere il nostro alleato nel rendere Meær rida una società sempre più partecipativa. - org: Presidente comunale di Me rida Yucata n, Messico. Consiglio comunale di Me rida Yucata n, Messico - n4: - quote: >- - Quello che apprezziamo è che è costruito con la democrazia in mente e quindi la democrazia è un grande obiettivo. Principi democratici come la responsabilità, l'uguaglianza e la trasparenza sono al centro del progetto. - org: Città di Helsinki - n5: - quote: >- - Quasi ogni processo partecipativo che è venuto al nostro tavolo, siamo stati in grado di risolverlo utilizzando le regole commerciali di Decidim. Come strumento, è molto forte. Tuttavia, la parte che ci sembra più forte e più importante è la sua comunità, sia gli sviluppatori che quelli che la utilizzano per processi partecipativi. La coesistenza con loro ci ha fatto apprezzare le sfide legate all'attuazione della democrazia partecipativa nel mondo reale. - org: Governo aperto di Città del Messico - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Domande frequenti - q01: - question: Che cos’è Decidim? - answer: >- - Decidim è una piattaforma di democrazia partecipativa Open-Source gratuita per città e organizzazioni. Ma Decidim è più di una piattaforma digitale: è un progetto gratuito e aperto comune e un'infrastruttura che coinvolge codice, documentazione, progettazione, corsi di formazione, un quadro giuridico, interfacce collaborative, comunità di utenti e facilitazioni, e una visione comune. - q02: - question: Chi sta attualmente usando Decidim? - answer: >- - Attualmente è utilizzato da città e organizzazioni. Infatti, qualsiasi gruppo di persone può utilizzarlo, che si tratti di ONG, università, sindacato, cooperativa, associazione di vicinato, eccetera. Controlla la [lista completa delle istanze attualmente attive](/usedby/). - q03: - question: Cosa può fare un amministratore di Decidiam? - answer: >- - Configurare facilmente i processi partecipativi Vuoi fare un piano strategico? O discutere di nuovi regolamenti? O discutere di una nuova piazza o di un edificio pubblico per raggiungere il bene comune? Grazie a Decidim potrai configurare spazi di partecipazione (iniziative, assemblee, processi o consultazioni) e arricchirli attraverso le molteplici componenti disponibili (riunioni dirette, indagini, proposte, votazioni, follow-up dei risultati, commenti e molti altri). - q04: - question: Cosa può fare un partecipante (utente) di Decidim? - answer: >- - Decidim consente a migliaia di persone di organizzarsi democraticamente presentando proposte, partecipando a riunioni pubbliche, promuovere le discussioni decisionali, decidere attraverso diverse forme di voto e monitorare l'attuazione delle decisioni. - q05: - question: Hai una Demo? Voglio usare Decidim ora, senza installarla, per vedere come funziona. - answer: 'Sì, abbiamo una [demo online](/demo).' - q06: - question: Quanto spesso viene aggiornata la piattaforma? - answer: >- - Rilasciamo una nuova versione circa ogni mese. Vedi il [record di versioni](https://github.com/decidim/decidim/releases). - q07: - question: Di cosa ho bisogno per installare Decidim? - answer: >- - L'installazione di Decidim è facile, ma hai bisogno di conoscenze e requisiti tecnici. Vedi la [documentazione per l'installazione di Decidim](https://docs.decidim.org/en/install/). - q08: - question: Dove posso trovare la roadmap del progetto e le caratteristiche previste? - answer: Puoi trovare la [roadmap delle nuove funzionalità del progetto su GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Che cosa significa che Decidim è gratuito, "libre" e open source?' - answer: >- - Decidim è una piattaforma per la partecipazione dei cittadini fatta dai cittadini e per le persone. Il suo codice sorgente è aperto e può essere controllato, modificato e migliorato da chiunque. Il software Decidim è coperto dalla [licenza AGPL](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Ciò significa che è possibile utilizzarla, modificarla e ridistribuire le versioni derivate, purché si rispetti la licenza AGPL. - q10: - question: >- - Ho idee per nuove funzionalità di miglioramento. Voglio avere una migliore comprensione del progetto. Cosa posso fare? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Ho molti dubbi, di tutti i tipi... dove posso chiedere loro o risolverli? - answer: >- - Il modo migliore per risolvere rapidamente i tuoi dubbi è attraverso la comunità di Metadecidim. Entra ora nel processo [Forum di supporto](https://meta.decidim. rg/processes/supportforum?locale=it) e vedere se esiste la tua domanda o se è stato risposto e altrimenti inserisci per fare domande. Se non riesci a risolvere il tuo problema in questo spazio, forse è il momento di contattarci attraverso il [modulo di contatto](/contact). - q12: - question: C'è qualche tutorial per iniziare a configurarlo? - answer: >- - Puoi controllare l'ultima versione del nostro manuale di amministrazione nella [sezione Documentazione](https://docs.decidim.org). - q13: - question: Qual è il contratto sociale? - answer: >- - È così che chiamiamo il nostro Codice delle Garanzie Democratiche e della Collaborazione Democratica. Tutti i membri della comunità devono avallare il [Contratto Sociale](http://decidim.org/contract). - q14: - question: Quali sono le differenze con Consul Project / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Che cos'è la comunità di Metadecidim? - answer: >- - [Metadecidim](http://meta.decidim.org) è la comunità di Decidim che collabora alla progettazione della piattaforma e alla costruzione del progetto Decidim. Ci incontriamo regolarmente attraverso [SOM (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) e [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Vai a [meta.decidim.org](http://meta.decidim.org) per seguire da vicino le chiamate e se vuoi unirti alla community. Ci piacerebbe ;-) - q16: - question: Posso unirmi alla comunità Metadecidim anche se non vivo a Barcellona? - answer: >- - Decidim è un progetto nato a Barcellona ed è per questo che esiste un forte legame territoriale con questa città. Ma sì, puoi collaborare online, attraverso processi partecipativi, dibattiti, ecc.... che forniamo a Metadecidim. Anche se potresti voler venire a Barcellona qualche volta :) - q17: - question: Vogliamo concludere un accordo formale di collaborazione. Ci sono modelli che possiamo utilizzare? - answer: Sì, abbiamo modelli per formalizzare gli accordi di collaborazione. [Per favore contattaci](/contact). - q18: - question: Che tipo di membri accettate nella comunità Metadecidim? - answer: Chiunque abbia buona fede e un atteggiamento corretto nei confronti della collaborazione democratica. - q19: - question: Fornisci l'installazione gratuita alle organizzazioni senza fini di lucro? - answer: >- - Sì, solo se sei un'organizzazione con sede a Barcellona. Inviaci un messaggio e sarai aiutato dalla Direzione della Ricerca, Sviluppo e innovazione dello spazio dei diritti di cittadinanza, partecipazione e trasparenza del consiglio comunale di Barcellona. - q20: - question: Sostiene le istituzioni? - answer: >- - Sì, ma devi essere paziente. Ci sono molte istituzioni che vogliono utilizzare Decidim in questo momento e le stiamo aiutando passo dopo passo. [Contattaci](/contact) per qualsiasi domanda e ti risponderemo il prima possibile. - q21: - question: Che cos'è l'Associazione Decidiam? - answer: >- - L'"Asociacion de Software Libre Decidim" (Associazione per il Software Libero Decidim) è un'associazione democratica per la governance della comunità Decidim. - q22: - question: Come posso ottenere maggiori informazioni sull'Associazione Decidiam? - answer: >- - Nell'[assemblea generale dell'associazione Decidim](https://meta.decidim. rg/assemblies/general-assembly-association) potete trovare più informazioni abous noi, seguire l'attività delle riunioni e controllare le informazioni pertinenti (statuti, accordi legali, i regolamenti interni) - q23: - question: Come posso diventare membro dell'Associazione Decidiam? - answer: >- - Ora le persone coinvolte nel progetto possono essere partner. [Qui spieghiamo in dettaglio come devi farlo](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Quando è nata l'Associazione Decidiam? - answer: >- - L'Associacio [Decidim è fondata il 16 febbraio 2019 in un'assemblea straordinaria della comunità](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), con l'approvazione dello statuto dell'organizzazione. + title: Componenti + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Tecnologia gratuita e sicura.
Con tutte le garanzie democratiche.
La riprogrammazione della democrazia è ora possibile con Decidim. + subheading: Decidim è una piattaforma digitale
per la partecipazione dei cittadini + subhero: + cta: Explore all features + feature1: Pianificazione strategica
+ feature2: Bilancio partecipativo
+ feature3: Iniziative e consultazioni dei cittadini
+ feature4: Processi partecipativi
+ feature5: assemblee + feature6: Comunicazione in rete
+ intro: Decidim aiuta i cittadini, le organizzazioni e le istituzioni pubbliche a organizzarsi democraticamente su ogni scala. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Stanno già usando Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Codice + community: Community + contact: Contatto + contract: Contratto Sociale + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentazione + faqs: FAQ + features: Funzionalità (features) + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Moduli + partners: Enti cooperanti + partnership-policy: Partnership policy + press: Stampa + privacy-policy: Privacy policy + text: Navigazione + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in uso + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/it" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Municipio Di Barcellona (2015-2019) + quote: Grazie a Decidim, a Barcellona siamo riusciti a co-produrre un piano urbano strategico insieme ai cittadini. Nel 2016 abbiamo inaugurato il Piano d'azione comunale sotto forma di processo partecipativo attraverso Decidim Barcelona. Attualmente, questo piano comprende quasi 7 mila proposte dei cittadini. Uno dei vantaggi dell'utilizzo di questa piattaforma è che è possibile monitorare in ogni momento lo stato di attuazione delle proposte approvate. + n2: + org: Som Energia + quote: Con la realizzazione di Decidim in Som Energia abbiamo generato uno spazio più gentile per la partecipazione. Abbiamo rilasciato lo strumento nel 2018, ospitando l'Assemblea Generale della Cooperativa e mesi più tardi abbiamo discusso la Riedizione delle Immagini e lo sviluppo collaborativo della Scuola di Som Energia, tra gli altri processi partecipativi. In pochi mesi, più di 3.500 partecipanti hanno registrato, 5 processi partecipativi, 3 assemblee funzionanti e più di 1.300 voti nell'ultimo voto dell'Assemblea generale. + n3: + org: Presidente comunale di Me rida Yucata n, Messico. Consiglio comunale di Me rida Yucata n, Messico + quote: La Piattaforma digitale di Decide Medi rida è stata un’opportunità che si è aperta come mai prima dei meccanismi di partecipazione dei cittadini per l’elaborazione del Piano di Sviluppo Municipale di Medi rida 2018-2021. Abbiamo avuto più di 3.000 interazioni con i cittadini tra cui proposte, commenti, suggerimenti e sostegno per raggiungere il massimo consenso possibile su ciò che è meglio per la nostra città. Indubbiamente, la piattaforma Decide Meær rida continuerà ad essere il nostro alleato nel rendere Meær rida una società sempre più partecipativa. + n4: + org: Città di Helsinki + quote: Quello che apprezziamo è che è costruito con la democrazia in mente e quindi la democrazia è un grande obiettivo. Principi democratici come la responsabilità, l'uguaglianza e la trasparenza sono al centro del progetto. + n5: + org: Governo aperto di Città del Messico + quote: Quasi ogni processo partecipativo che è venuto al nostro tavolo, siamo stati in grado di risolverlo utilizzando le regole commerciali di Decidim. Come strumento, è molto forte. Tuttavia, la parte che ci sembra più forte e più importante è la sua comunità, sia gli sviluppatori che quelli che la utilizzano per processi partecipativi. La coesistenza con loro ci ha fatto apprezzare le sfide legate all'attuazione della democrazia partecipativa nel mondo reale. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Grazie per averci contattato, torneremo presto a te. + title: Grazie per la tua email + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/ja.yml b/locales/ja.yml index 8842e440..027321f0 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -1,451 +1,589 @@ +--- ja: - path: '/ja' - activeLang: '日本語' - nav: - text: 'Navigation' - demo: 'デモ' - community: 'コミュニティ' - contract: '社会契約' - code: 'コード' - docs: - title: 'ドキュメント' - path: 'https://docs.decidim.org/' - blog: 'ブログ' - features: '機能' - faqs: 'よくある質問' - contact: 'お問い合わせ' - used_by: '使用中のDecidim' - partners: '協力団体' - modules: 'モジュール' - press: 'プレス' - legal-notice: '法的情報開示' - privacy-policy: 'プライバシーポリシー' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: 民主主義、テクノロジー、グローバルな正義 | 10月20〜22日' - subtitle: '参加者募集中' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFestは、 ブローバルな民主主義の時代における集合知のための参加型民主主義とそのためのオープンソースのツールからなるDecidimプロジェクトに専念する3日間の強力な活動プログラムです。' - index: - hero: - heading: '都市や組織のための自由でオープンソースの直接参加型民主主義' - subheading: 'Decidimは市民参加のための
デジタルプラットフォームです' - intro: '自由で安全なテクノロジー。
民主的な意思決定の保証によって。
民主主義の再構築(Reprogramming)がDecidimで可能になります。' - video: - play: '動画を再生' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: '動画を閉じる' - subhero: - intro: 'Decidim は、市民、組織、公的機関が民主的に自律するのを、小さな単位から大きな単位まで支援します。' - feature1: '戦略的な計画立案' - feature2: '直接参加型の予算編成' - feature3: '市民の自発と相談' - feature4: '直接参加型のプロセス' - feature5: '直接参加型の機関' - feature6: 'コミュニケーションの
ネットワーク' - used_by: - title: 'Decidimは広く使われています' - cta: 'すべて表示' - cta: - title: 'Decidimをお試しください' - button: - code: 'GitHub上のコード' - footer: - supported_by: '後援:' - attribution: '- Creative Commons BY-SA' - demo: - title: オンラインデモ - p1: オンラインデモを利用して、Decidimプラットフォームを自由に触れてみてください - p2: Decidimが稼働しているいくつかのインスタンスには、あなたも訪問し、探索することができます。 バルセロナ市のDecidim Barcelonaや、 GavàL'Hospitaletのサイトを訪れることができます。 しかし、これらは実際に使われている本物のインスタンスであり、実際の自治体の市民でなければお使いいただけるものではありません。また、管理者としてそれらのサイトを探索することもできません。 - p3: さらに詳しく知りたい場合は、Decidimデモサイト( aLabsにて開発者の方々をお待ちしております)でDecidimをテストしていただけます。 デモサイトに入って、Decidimの可能性とその特徴を自由に探索してください。 - p4: Adminとしてログインできます (username "admin@example.org", password "decidim123456"). - button: オンラインデモ + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, our community' - subtitle: 'Decidimプロジェクトをあらゆる面で統括する民主的コミュニティ' - intro: 'Metadecidimはプラットフォームの設計とプロジェクトの構築に協力するコミュニティです。 プラットフォームを継続的に改善するために、新しい機能とレポートのバグを設計・開発できます。' - cta: '参加する' - features: - title: '新機能の提案' - subtitle: 'Decidimを設計し、開発するには' - text: 'Decidimの将来についての議論を作成したり、新機能や改善点を提案したりできます。 提案は、例えば、コミュニティの中で関心を喚起し、彼らの開発を重視するように、推薦やコメントを受け取ることができます。 スポンサーを持つ提案(市議会やその他の団体など) 開発を遂行するために必要なリソースを求め、提供する責任は、プロジェクトのために役立つでしょう。' - cta: '今すぐ参加する' - bug: - title: 'バグの報告' - subtitle: '漸進的改善のためのコラボレーション' - text: 'Decidim の新しいリリースには、新機能とユーザビリティの向上が組み込まれていますが、最初はすべてが機能するわけではなく、エラーが発生する可能性があります。 ここでは、見つけたバグを報告し、開発者が迅速に修正できるようにすることができます。' - cta: '今すぐ参加する' - img_alt: 'Metadecidim Meeting 2016 でのDecidimコミュニティの写真' - timeline: - title: '機能の共同設計' - step1: - title: '新しい提案' - text: '機能の説明' - step2: - title: '検証済みの提案' - text: '技術的・技術-政治的(technopolitical) 検証' - step3: - title: '計画された提案' - text: '開発のためのリソース (共有または非公開)' - step4: - title: '課題' - text: '技術的な説明' - step5: - title: 'Pull request' - text: '開発されたコード' - step6: - title: '機能の完成' - text: '次のバージョンで使用可能' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: 参加する + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Metadecidim Meeting 2016 でのDecidimコミュニティの写真 + intro: Metadecidimはプラットフォームの設計とプロジェクトの構築に協力するコミュニティです。 プラットフォームを継続的に改善するために、新しい機能とレポートのバグを設計・開発できます。 + subtitle: Decidimプロジェクトをあらゆる面で統括する民主的コミュニティ + title: Metadecidim, our community contact: - title: お問い合わせ - bot_field: "人間である場合はここを記入しないでください:" - name: 名前 - entity: 所属 + bot_field: 人間である場合はここを記入しないでください: email: Eメールアドレス - subject: 件名 message: 本文 + name: 名前 privacy_policy: - accept: プライバシーポリシーに同意します - message: >- -

お問い合わせフォーム、電子メール、または同様の通信手段でお問い合わせいただいた場合、コメント、要望、提案などに対応するため、名前、事業体、電子メールアドレス、ユーザーメッセージの内容を自動的に収集します。

加えて、利用者を個別に特定できないようにするため、仮名化、さらにはデータ集約などの匿名化技術を使用し、統計的な調査のためにこれらのデータを処理することがあります。

+ accept: I accept the Privacy Policy + message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: 送信 - thanks: - title: お問い合わせありがとうございます - message: ご連絡いただきありがとうございます。折返しご連絡いたします。 + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: お問い合わせ + demo: + button: オンラインデモ + p1: オンラインデモを利用して、Decidimプラットフォームを自由に触れてみてください + strong: Try Online + title: オンラインデモ + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: よくある質問 + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: '機能' - intro: '

Decidimは、市議会、協会、大学、NGO、労働組合、近隣の共同体や協同組合など、数百人から数千人以上の参加者を想定した公共または民間の組織で使用できます。

Decidimによって、参加のための空間 (イニシアチブ、集会、プロセス、協議) を構成し、利用可能な複数のコンポーネント (オフラインでのミーティング、アンケート、提案、投票、結果のフォローアップ、コメントなど) を通じて、それらを充実させることができます。

' - list: - n1: - title: '参加型予算' - content: '提出された提案を分析し、共有資源を分配する新しい方法を促進します。' - n2: - title: '市民のイニシアチブ
と相談' - content: '市民イニシアチブを通じてあなたのコミュニティをサポートします。協議を通じて関連する投票を促進します。' - n3: - title: '政治ネットワーク
の力' - content: '何千人もの人々がリアルタイムに参加することで、熟議、コラボレーション、決定を大規模な次元で行うことができます。' - n4: - title: '民主的で
柔軟なシステム' - content: 'モジュール化されたアーキテクチャとスケーラブルなロジックにより、あらゆる種類の組織における民主的ガバナンスの強力なシステムを構成することができます。' - n5: - title: '私たちは民主主義
を真摯に受け止めています' - content: 'Decidimは、これまでにないような情報の透明性、トレーサビリティと整合性を保証します。すべての参加者にセキュリティ、プライバシーと機密性を提供します。' - n6: - title: "あなたも参加できます。
シェアして改善しましょう。" - content: 'Metadecidimコミュニティによる、自由なソフトウェアとオープンでコラボレーティブなコンテンツで設計されたプラットフォーム。' - cta: - features: 'すべての機能を見る' - values: '社会契約に移動' + intro: "

Decidimは、市議会、協会、大学、NGO、労働組合、近隣の共同体や協同組合など、数百人から数千人以上の参加者を想定した公共または民間の組織で使用できます。

Decidimによって、参加のための空間 (イニシアチブ、集会、プロセス、協議) を構成し、利用可能な複数のコンポーネント (オフラインでのミーティング、アンケート、提案、投票、結果のフォローアップ、コメントなど) を通じて、それらを充実させることができます。

" page: feature1: - title: '参加型プロセス' - subtitle: '一歩ずつ共通の問題を民主化し' - text: >- - プロセスは、様々な参加プロセスを作成、アクティブ/非アクティブ化、および管理することができる空間です。 これらは、すべてのコンポーネントを組み込むことができる異なるフェーズで構成されていることによって、他の空間と区別されます。 参加プロセスの例としては、委員会のメンバーの選挙プロセス、参加予算、戦略計画プロセスなどが挙げられます。 規則や規範の共同執筆都市空間の設計 あるいは公共政策計画の作成 - feature2: - title: '直接参加型の機関' - subtitle: '集団的自己組織化の力は' - text: >- - 意思決定機関またはグループ(協議会、ワーキンググループ、委員会など)の設置の可能性を提供する空間である。 定期的に集まり構成を詳細に記録し 会合の位置を特定し 参加することができます(例えば:集合体の座席数と性格が許された場合に出席すること)。 議題に項目を追加したり、その体がとった提案や決定についてコメントしたり)。 - feature3: - title: '議案' - subtitle: '全ての民主的な保証で決める権利は' - text: >- - コンサルテーションは、投票者を調整したり、議論や討論を行ったり、投票結果を公開したりすることを可能にするスペースです。 安全な電子投票システムに接続できます。 - feature4: - title: 'イニシアチブ' - subtitle: "みんなの課題を整えることができるのです" - text: >- - イニシアチブは、参加者が共同でイニシアチブを作成し、その軌道と目標を定義し、推薦を集め、議論することを可能にする空間です。 議論し、イニシアチブを広め、参加者や組織の他のメンバーに開かれた討論から署名を集めることができるミーティングポイントを定義します。 - feature5: - title: '提案' - subtitle: 'あなたのアイデアを詳細に' - text: >- - プロポーザルコンポーネントを使用すると、作成ウィザードを使用してプロポーザルを作成し、既存のプロポーザルと比較できます。 プラットフォーム上で公開し、位置情報や添付資料や画像などの追加情報を含めてください。 このコンポーネントを使用すると、一連の提案をナビゲート、フィルタリング、および一連の提案とやり取りすることができます。さらに、proposal-incubator を使用すると、共同提案を作成できます。 - feature6: - title: '投票' - subtitle: '投票を決めろ' - text: >- - 投票コンポーネントは、提案に関するさまざまな投票システムやサポートシステムを活性化させる可能性を組織に提供します:特定のしきい値、加重、コストベースなどに制限されません。 - feature7: - title: '結果' - subtitle: '答えのない提案はありません' - text: >- - 結果コンポーネントは、提案を結果に変換し、それらの受け入れまたは拒否に関する公式の回答を与えるために使用されます. さまざまな提案を一つの結果にまとめています - feature8: - title: 'アカウンタビリティ' - subtitle: '最初から最後まで一貫した透明性' - text: >- - アカウンタビリティコンポーネントは、結果をプロジェクトに分割し、その実装に関する進捗状況を定義し、適用する可能性を提供します。 カテゴリとスコープごとにグループ化された結果の実装の範囲を表示することもできます。 - feature9: - title: '会議' - subtitle: '会って見逃さないように' - text: >- - ミーティングコンポーネントは、組織と参加者にミーティングを開催する機会を提供し、その場所と時間を決定します。 参加者の登録と制限、会議の構造と内容の定義、議事録の公開、結果の提案などを定義します。 + subtitle: 一歩ずつ共通の問題を民主化し + text: プロセスは、様々な参加プロセスを作成、アクティブ/非アクティブ化、および管理することができる空間です。 これらは、すべてのコンポーネントを組み込むことができる異なるフェーズで構成されていることによって、他の空間と区別されます。 参加プロセスの例としては、委員会のメンバーの選挙プロセス、参加予算、戦略計画プロセスなどが挙げられます。 規則や規範の共同執筆都市空間の設計 あるいは公共政策計画の作成 + title: 参加型プロセス feature10: - title: '参加型テキスト' - subtitle: '分析し合成し そして共通に構築するために' - text: >- - 参加型テキストコンポーネントは、長い文書ドキュメントを様々な提案や結果に変換するために使用することができます。 その逆もまた、提案や結果の集まりに基づいて統一されたテキストを作成し、表示することです。 + subtitle: 分析し合成し そして共通に構築するために + text: 参加型テキストコンポーネントは、長い文書ドキュメントを様々な提案や結果に変換するために使用することができます。 その逆もまた、提案や結果の集まりに基づいて統一されたテキストを作成し、表示することです。 + title: 参加型テキスト feature11: - title: 'カンファレンス' - subtitle: '大きなイベントが初演される場所' - text: >- - 会議コンポーネントにより、組織は一連の事前定義されたミーティング(チャット、ワークショップなど)に参加して、大きなイベントのためのウェブサイトを作成することができます。 を選択し、統合されたプログラムを作成し、参加者を管理します。 + subtitle: 大きなイベントが初演される場所 + text: 会議コンポーネントにより、組織は一連の事前定義されたミーティング(チャット、ワークショップなど)に参加して、大きなイベントのためのウェブサイトを作成することができます。 を選択し、統合されたプログラムを作成し、参加者を管理します。 + title: カンファレンス feature12: - title: '調査' - subtitle: 'なぜなら、あなたのコミュニティの意見は重要だからです' - text: >- - アンケートコンポーネントは、アンケートの設計と公開、結果の表示とダウンロードに使用できます。 + subtitle: なぜなら、あなたのコミュニティの意見は重要だからです + text: アンケートコンポーネントは、アンケートの設計と公開、結果の表示とダウンロードに使用できます。 + title: 調査 feature13: - title: '並べ替え' - subtitle: '平等とランダム性の正義です' - text: >- - ソートコンポーネントでは、多くの提案を選択することができます (例: 無作為でありながら再現可能であり、偏りのない均一な分布を保証する手続き。 + subtitle: 平等とランダム性の正義です + text: 'ソートコンポーネントでは、多くの提案を選択することができます (例: 無作為でありながら再現可能であり、偏りのない均一な分布を保証する手続き。' + title: 並べ替え feature14: - title: 'コメント' - subtitle: '集団的知能を構築する' - text: >- - コメントコンポーネントにより、ユーザーはコメントを追加でき、コメントが好意的であることを識別できます。 commented オブジェクトに関連して、コメントを投票したり、応答したり、応答についての通知を受け取ったりするために、コメントオブジェクトに関連して、中立かを指定します。 + subtitle: 集団的知能を構築する + text: コメントコンポーネントにより、ユーザーはコメントを追加でき、コメントが好意的であることを識別できます。 commented オブジェクトに関連して、コメントを投票したり、応答したり、応答についての通知を受け取ったりするために、コメントオブジェクトに関連して、中立かを指定します。 + title: コメント feature15: - title: 'ページとブログ' - subtitle: 'あなたのコミュニティ、情報に基づいて最新の情報' - text: >- - ページコンポーネントは、リッチテキスト書式、埋め込まれた画像や動画を含む有益なページを作成するために使用されます。 ブログコンポーネントは、投稿やニュースの作成を可能にし、それらを時系列にナビゲートします。 + subtitle: あなたのコミュニティ、情報に基づいて最新の情報 + text: ページコンポーネントは、リッチテキスト書式、埋め込まれた画像や動画を含む有益なページを作成するために使用されます。 ブログコンポーネントは、投稿やニュースの作成を可能にし、それらを時系列にナビゲートします。 + title: ページとブログ feature16: - title: '通知' - subtitle: '興味深い内容に関するパーソナライズされた情報' - text: >- - デシディムを使用すると、スペースやコンポーネントを追跡して、アップデートが発生するたびに更新を受け取ることができます。 + subtitle: 興味深い内容に関するパーソナライズされた情報 + text: デシディムを使用すると、スペースやコンポーネントを追跡して、アップデートが発生するたびに更新を受け取ることができます。 + title: 通知 feature17: - title: 'ニュースレター' - subtitle: 'シンプルだがパワフルだ。' - text: >- - ニュースレターコンポーネントは、プラットフォームに登録されているすべての人に、または特定のスペースに参加している人に、より選択的に電子メールを送信することができます。 + subtitle: シンプルだがパワフルだ。 + text: ニュースレターコンポーネントは、プラットフォームに登録されているすべての人に、または特定のスペースに参加している人に、より選択的に電子メールを送信することができます。 + title: ニュースレター + feature2: + subtitle: 集団的自己組織化の力は + text: 意思決定機関またはグループ(協議会、ワーキンググループ、委員会など)の設置の可能性を提供する空間である。 定期的に集まり構成を詳細に記録し 会合の位置を特定し 参加することができます(例えば:集合体の座席数と性格が許された場合に出席すること)。 議題に項目を追加したり、その体がとった提案や決定についてコメントしたり)。 + title: 直接参加型の機関 + feature3: + subtitle: 全ての民主的な保証で決める権利は + text: コンサルテーションは、投票者を調整したり、議論や討論を行ったり、投票結果を公開したりすることを可能にするスペースです。 安全な電子投票システムに接続できます。 + title: 議案 + feature4: + subtitle: みんなの課題を整えることができるのです + text: イニシアチブは、参加者が共同でイニシアチブを作成し、その軌道と目標を定義し、推薦を集め、議論することを可能にする空間です。 議論し、イニシアチブを広め、参加者や組織の他のメンバーに開かれた討論から署名を集めることができるミーティングポイントを定義します。 + title: イニシアチブ + feature5: + subtitle: あなたのアイデアを詳細に + text: プロポーザルコンポーネントを使用すると、作成ウィザードを使用してプロポーザルを作成し、既存のプロポーザルと比較できます。 プラットフォーム上で公開し、位置情報や添付資料や画像などの追加情報を含めてください。 このコンポーネントを使用すると、一連の提案をナビゲート、フィルタリング、および一連の提案とやり取りすることができます。さらに、proposal-incubator を使用すると、共同提案を作成できます。 + title: 提案 + feature6: + subtitle: 投票を決めろ + text: 投票コンポーネントは、提案に関するさまざまな投票システムやサポートシステムを活性化させる可能性を組織に提供します:特定のしきい値、加重、コストベースなどに制限されません。 + title: 投票 + feature7: + subtitle: 答えのない提案はありません + text: 結果コンポーネントは、提案を結果に変換し、それらの受け入れまたは拒否に関する公式の回答を与えるために使用されます. さまざまな提案を一つの結果にまとめています + title: 結果 + feature8: + subtitle: 最初から最後まで一貫した透明性 + text: アカウンタビリティコンポーネントは、結果をプロジェクトに分割し、その実装に関する進捗状況を定義し、適用する可能性を提供します。 カテゴリとスコープごとにグループ化された結果の実装の範囲を表示することもできます。 + title: アカウンタビリティ + feature9: + subtitle: 会って見逃さないように + text: ミーティングコンポーネントは、組織と参加者にミーティングを開催する機会を提供し、その場所と時間を決定します。 参加者の登録と制限、会議の構造と内容の定義、議事録の公開、結果の提案などを定義します。 + title: 会議 + subtitle: For democratic organizations and collectives of any size and kind. + title: 機能 type1: - title: '参加用スペース' - subtitle: '参加者が提案や意思決定を行うために' + title: 参加用スペース type2: - title: 'コンポーネント' - subtitle: '参加者とスペースが交流できるようにします' - other: - subtitle: 'コンポーネントを組み合わせることを恐れています。強力な民主的なシステムを簡単な方法で設計し、組織のニーズに適応させます。' - cta: - title: 'Decidimがどのように機能するか詳細を知る' - button: '機能と特徴' - partners: - notice: 協力団体のロゴは、それぞれの著作権者による知的財産権です。 これらは Creative Commons BY-SA ライセンス が適用されるものではありません。 - modules: - description: 説明 - explanation: モジュールを使用することで、Decidimの機能を拡張し、他の人と共有することができます。 将来的に簡単にアップグレードできるようになります。 独自のモジュール を作るためのドキュメントを参照してください。 - image: 画像 - name: 名前 - type: - community: コミュニティ - auth: 承認 - official: 事務局 - used_by: - explain: これらの都市、地域、組織はすでにDecidimを使用しています - type: - city: 都市 - region: 地域 - organizations: 組織 - testimonials: - n1: - quote: >- - Decidimのおかげで、バルセロナでは市民と一緒に戦略的な都市計画を共同制作することができました。2016年には、Decidim Barcelonaによる参加型プロセスの形で、市のアクションプランを発足させました。現在、この計画には約7,000件の市民提案が含まれています。このプラットフォームを利用するメリットのひとつは、承認された提案の実施状況をいつでもモニターできることです。 - org: バルセロナ シティホール (2015-2019) - n2: - quote: >- - Som Energia で Decidim の実装により、私たちは参加のためのより優しいスペースを生成しました。 2018年にこのツールをリリースしました。 協同組合総会を主催し、数ヶ月後には、Som Energiaのイメージ再設計と共同開発について議論しました。 他の参加者の過程の中で、 数ヶ月で3,500人以上の参加者が登録し、5つの参加プロセスができました。 前回の総会投票では、3つの会合が運営され、1,300以上の票が得られました。 - org: Som Energia - n3: - quote: >- - デジタルプラットフォーム「Decide Mérida」は、メリダ市開発計画2018-2021の策定において、市民参加の仕組みをかつてないほどに開放する機会となりました。提案、コメント、提案、支援など、3,000人以上の市民が参加し、私たちの街にとって何がベストなのか、可能な限り高いコンセンサスを得ることができました。Decide Méridaプラットフォームは、メリダをますます参加しやすい社会にするための味方であり続けることは間違いありません。 - org: メキシコ、ユカタン州メリダ市の市長。メキシコ・ユカタン州メリダ市議会 - n4: - quote: >- - 私たちが評価しているのは、民主主義を念頭に置いて作られているため、民主主義が大きな焦点となっていることです。説明責任、平等性、透明性といった民主主義の原則が、設計の中核をなしています。 - org: ヘルシンキ市 - n5: - quote: >- - 私たちのテーブルに来たほとんどすべての参加型プロセスは、Decidimのビジネスルールを使って解決することができました。ツールとしては非常に強力なものです。しかし、私たちにとって最も強力で重要な部分は、開発者と参加型プロセスに使用している人たちの両方のコミュニティです。彼らと共存することで、現実の世界で参加型民主主義を実現するための課題を理解することができました。 - org: メキシコシティでのオープンガバメント - n6: - quote: >- - 私たちは、パブリックスペースの不足に悩まされています。このようなパブリックスペースを自分たちのために取り戻すことは特に重要です。Decidimのようなオープンプラットフォームはまさにそれを可能にします。Decidimはオープンソースなので、他の人がフォークして再利用したり、プロセスを構築したりできるだけではありません。それに加えて、私たちが社会に反映させたいと考えている価値観がデザインされているのです。 - org: Mozilla Foundation - n7: - quote: >- - このプロセスは、2019年10月に欧州委員会の科学・知識サービスである共同研究センターのコミュニケーション総局とeDemocracyユニットで始まりました。会議のニーズを分析し、どのツールがそれに適合するかを検討した結果、技術的な成熟度、幅広いコミュニティ、適応性を考慮して、オープンソースのツールDecidimを選択しました。 - org: オープンフォーラム・ヨーロッパ リサーチ・ディレクター, 欧州連合(EU) - faqs: - title: よくある質問 - q01: - question: Decidimとは何ですか? - answer: >- - Decidimは、都市や組織のための自由でオープンソースの参加型民主主義プラットフォームです。しかし、Decidimは単なるデジタルプラットフォームではありません。コード、ドキュメント、デザイン、トレーニングコース、法的枠組み、コラボレーションインターフェース、ユーザーとファシリテーションコミュニティ、そして共通のビジョンを含む、共有のフリーでオープンなプロジェクトとインフラなのです。 - q02: - question: 現在Decidimはどのような人々に使われていますか? - answer: >- - 現在、都市や組織で使用されています。 実際、NGO、大学、労働組合、協同組合、近隣団体など、どのグループでも利用できます。 [現在稼働しているインスタンスの一覧](/usedby/) を確認してください。 - q03: - question: Decidimの管理者は何ができますか? - answer: >- - 参加型プロセスを簡単に構成することができます。戦略的な計画を立てたいですか?あるいは新しい規制について議論したいですか?あるいは、共通の利益を達成するために、新しい広場や公共の建物について話し合いたいですか?Decidimを使えば、参加スペース(イニシアチブ、アセンブリー、プロセス、協議)を構成し、利用可能な複数のコンポーネント(対面のミーティング、アンケート、提案、投票、結果のフォローアップ、コメントなど)を通じて、参加スペースを充実させることができます。 - q04: - question: Decidimの参加者(ユーザー)は何ができますか? - answer: >- - Decidimは、何千人もの人々が、提案をしたり、公聴会に出席したり、意思決定のための議論を促進したり、さまざまな形式の投票で決定したり、決定事項の実施を監視したりすることで、民主的に組織化することを可能にしています。 - q05: - question: デモサイトはありますか?インストールせずに Decidim を試用して、どのように動作するかを確認したいです。 - answer: 'はい、[オンラインデモサイト](/demo) があります。' - q06: - question: プラットフォームはどれくらいの頻度で更新されますか? - answer: >- - 私たちは毎月新しいバージョンをリリースしています。[更新履歴](https://github.com/decidim/decidim/releases) を参照してください。 - q07: - question: Decidim をインストールするには何が必要ですか? - answer: >- - Decidimのインストールは簡単ですが、多少の知識と技術的な要件が必要です。[Decidimをインストールするためのドキュメント](https://docs.decidim.org/en/install/)を参照してください。 - q08: - question: プロジェクトのロードマップと予定されている機能はどこで確認できますか? - answer: '[GitHubの新機能のロードマップ](https://github.com/decidim/decidim/projects/16)をご覧ください。' - q09: - question: 'Decidimが自由、「リブレ(libre)」、オープンソースであることは何を意味するのでしょうか?' - answer: >- - Decidimは、人々によって、人々のために作られた、市民参加型のプラットフォームです。ソースコードは公開されており、誰でも閲覧、修正、改良することができます。Decidimのソフトウェアには、[AGPLライセンス](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License)が適用されています。つまり、AGPLライセンスを尊重する限り、使用、変更、派生版の再配布が可能です。 - q10: - question: >- - 新しい機能改善のアイデアがあります。プロジェクトについてもっと理解したいです。どうしたらいいですか? - answer: >- - いろいろな方法でコラボレーションすることができます。その一つは [Metadecidim](http://meta.decidim.org) コミュニティを通じて行うことができます。新しい機能を提案したい場合は、[こちらをどうぞ](https://meta.decidim.org/processes/roadmap). エラーを検出し、通知したい場合は、[このプロセスにご参加ください](https://meta.decidim.org/processes/bug-report)。Metadecidimコミュニティに積極的に参加したい場合は、毎月[Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat)に参加できます。 コミュニティの参加者として登録し、私たちと一緒に参加してください。 もしあなたのものがコードの場合、[Githubにお越しください](https://github.com/decidim/decidim)。もしあなたが研究者なら、[LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab)に興味を持つかもしれません。 - q11: - question: 心配ごとがいろいろ、たくさんあります…。解消するには、どこで質問すればいいですか? - answer: >- - 疑問を素早く解決する最善の方法はMetadecidimコミュニティです。今すぐformat@@0(https://meta.decidim) に参加してください。 rg/processes/supportforum?locale=en) 質問が存在するかどうかを確認し、回答されているかどうかを確認し、それ以外の場合は質問を入力します。 このスペースで問題を解決できない場合は、format@@0(/contact) からお問い合わせください。 - q12: - question: セットアップを始めるにあたって、チュートリアルはありますか? - answer: >- - 最新版の管理者マニュアルを ["Documentation" (英語)](https://docs.decidim.org/en/) でご確認いただけます。 - q13: - question: 社会契約(social contract)とは何ですか? - answer: >- - 私たちが民主的な意思決定を保証し、民主的に協力するための行動規範(code)を、「社会契約」と呼んでいます。コミュニティのすべてのメンバーは、この[社会契約(Social Contract)](http://decidim.org/contract) を受け入れなければなりません。 - q14: - question: Consul プロジェクト(マドリードの "Decide Madrid" プロジェクト)との違いは何ですか? - answer: >- - 機能、柔軟性、アーキテクチャ、モジュール性など、さまざまな違いがあります。私たちが[公開したブログエントリ](/blog/2019-01-14-consult-comparison/) では、この質問に答えようとしています。 - q15: - question: '"Metadecidim" コミュニティとは何ですか?' - answer: >- - [Metadecidim](http://meta.decidim.org) は、プラットフォームの設計や Decidim プロジェクトの構築を協力しておこなう Decidim 自体のコミュニティです。メンバーは ["SOM" (コミュニティ・ミーティング、もとはスペイン語の "Sesiones Operativas Metadecidim")](https://meta.decidim.org/assemblies/eix-comunitat?locale=en) や ["LAB Research Seminars"(英語)](https://meta.decidim.org/assemblies/eix-lab?locale=en) を通じて、定期的に話し合いをしています。コミュニティに入ってみたい場合は [meta.decidim.org](https://meta.decidim.org/) に行って、話し合いを追ってみてください。歓迎します ;-) - q16: - question: バルセロナに住んでいなくても Metadecidim コミュニティに参加できますか? - answer: >- - Decidim はバルセロナで生まれたプロジェクトで、そのためバルセロナとは強い地理的な結びつきがあります。ですが、Metadecidim の参加プロセスやディベートなどを通じて、オンラインで協力できます。と言っても、あなたはバルセロナにいつか来たいと思うかもしれませんが :) - q17: - question: 正式なコラボレーション契約をしたいです。テンプレートはありますか? - answer: はい、コラボレーション契約を正式化するテンプレートがあります。[ご連絡ください](/contact)。 - q18: - question: Metadecidim のコミュニティには、どんなメンバーを受け入れていますか? - answer: 誠実で、民主的な共同作業に対する正しい姿勢を持つ方なら、どなたでも。 - q19: - question: 非営利団体への導入を無償で提供していますか? - answer: >- - はい、ただしバルセロナを拠点とする団体に限り、提供しています。 私たちにメッセージを送信していただければ、バルセロナ市議会の「市民の権利・参加・透明性」領域「研究・開発・イノベーション部門」がお手伝いします。 - q20: - question: 公共機関をサポートしていますか? - answer: >- - はい、ですが、しばらく我慢してください。 現在 Decidim を使用したいと考えている公共機関はたくさんあり、私たちは彼らを一歩一歩お手伝いしているところです。質問がありましたら、[ご連絡](/contact) いただければできるだけ早くお答えします。 - q21: - question: Decidim Associationとは何ですか? - answer: >- - "Asociacion de Software Libre Decidim" (Decidim Free Software Association; Decidim Association) は、Decidim コミュニティのガバナンスのための民主的な協会です。 - q22: - question: Decidim Association について、もっと詳細な情報はありますか? - answer: >- - さらに詳細な情報は Metadecidim の [General Assembly of the Decidim Association(英語)](https://meta.decidim.org/assemblies/general-assembly-association) にあります。ミーティングの活動状況や、関連情報 (定款、規約、手続規則など) もここにあります。 - q23: - question: Decidim Associationのメンバーになるにはどうしたらいいですか? - answer: >- - 現在では、プロジェクトに関わっている人はメンバーになれます。[参加するための詳細はこちら(英語)で説明しています](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=en)。 - q24: - question: Decidim Associationはいつ発足したのですか。 - answer: >- - Decidim Association は、定款の承認にあわせて [2019年 2月 16日にコミュニティの臨時集会で設立されました](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169)。 + title: コンポーネント + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: '後援:' + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: 自由で安全なテクノロジー。
民主的な意思決定の保証によって。
民主主義の再構築(Reprogramming)がDecidimで可能になります。 + subheading: Decidimは市民参加のための
デジタルプラットフォームです + subhero: + cta: Explore all features + feature1: 戦略的な計画立案 + feature2: 直接参加型の予算編成 + feature3: 市民の自発と相談 + feature4: 直接参加型のプロセス + feature5: 直接参加型の機関 + feature6: コミュニケーションの
ネットワーク + intro: Decidim は、市民、組織、公的機関が民主的に自律するのを、小さな単位から大きな単位まで支援します。 + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Decidimは広く使われています legal-notice: - title: 法的情報開示 section-1: + paragraph: '

このサイトはDecidim自由ソフトウェアアソシエーション ("Decidim", "Us" or "We")のWebサイトであり、Webドメインhttps://decidim.org/ (hereinafter, the "Website")を通じて提供され, 所在地は Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174になります.

連絡先は以下です: hola@decidim.org

' title: 私たちについて - paragraph: >- -

このサイトはDecidim自由ソフトウェアアソシエーション ("Decidim", "Us" or "We")のWebサイトであり、Webドメインhttps://decidim.org/ (hereinafter, the "Website")を通じて提供され, 所在地は Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174になります.

連絡先は以下です: hola@decidim.org

section-2: + paragraph: "

本ウェブサイトの目的は、Decidim、その活動、および都市や組織のための無料のオープンソース参加型民主主義プラットフォームで構成される技術に関する一般情報を提供し、より大きな社会参加による市民や団体プロジェクトの開発を可能にする我々の共同技術から世界中に生まれたDecidimコミュニティを管理することです。Decidimのプラットフォームは、オンラインデモで自由に試すことができます。

この法律上の通知の使用条件の目的は、情報社会サービスおよび電子商取引に関する法律34/2002およびその他の適用される法的規定に従って、このウェブサイトおよびサービス・コンテンツの使用を許可することを規定することです。

" title: 目的 - paragraph: >- -

本ウェブサイトの目的は、Decidim、その活動、および都市や組織のための無料のオープンソース参加型民主主義プラットフォームで構成される技術に関する一般情報を提供し、より大きな社会参加による市民や団体プロジェクトの開発を可能にする我々の共同技術から世界中に生まれたDecidimコミュニティを管理することです。Decidimのプラットフォームは、オンラインデモで自由に試すことができます。

この法律上の通知の使用条件の目的は、情報社会サービスおよび電子商取引に関する法律34/2002およびその他の適用される法的規定に従って、このウェブサイトおよびサービス・コンテンツの使用を許可することを規定することです。

section-3: + paragraph: '

本ウェブサイトへのアクセスは無料です。本ウェブサイトの情報・コンテンツを閲覧する場合、一般的に申込は不要です。それ以外の場合は、プライバシーポリシーをご参照ください。

本ウェブサイトにアクセスし、使用することにより、あなたは本法的通知に記載された使用条件を承諾し、本ウェブサイトを適切、真摯かつ合法的に使用し、特に以下のことを行うことを約束するものとします: (i) 本ウェブサイトを本来の目的のために利用すること、すなわち私たちのサービスの情報のため。違法な目的、または公序良俗に反する目的での当サイトおよびコンテンツの利用はご遠慮ください; (ii) 本ウェブサイトおよびそのコンテンツの知的財産権および工業所有権、ならびにDecidimに帰属するすべての権利を尊重すること; (iii) 本ウェブサイトまたはそのコンテンツまたはその変更について、複製、コピー、変換、修正、配布、公開、または一般に利用可能にしないこと; (iv) あなたによる本ウェブサイトの直接的または間接的な誤用、「法的文章」(総称して、この法的通知および プライバシーポリシー)の規定および適用される法律によりDecidimが被る損失または損害について、あなたが責任を負うものとします。

' title: ウェブサイトの使用 - paragraph: >- -

本ウェブサイトへのアクセスは無料です。本ウェブサイトの情報・コンテンツを閲覧する場合、一般的に申込は不要です。それ以外の場合は、プライバシーポリシーをご参照ください。

本ウェブサイトにアクセスし、使用することにより、あなたは本法的通知に記載された使用条件を承諾し、本ウェブサイトを適切、真摯かつ合法的に使用し、特に以下のことを行うことを約束するものとします: (i) 本ウェブサイトを本来の目的のために利用すること、すなわち私たちのサービスの情報のため。違法な目的、または公序良俗に反する目的での当サイトおよびコンテンツの利用はご遠慮ください; (ii) 本ウェブサイトおよびそのコンテンツの知的財産権および工業所有権、ならびにDecidimに帰属するすべての権利を尊重すること; (iii) 本ウェブサイトまたはそのコンテンツまたはその変更について、複製、コピー、変換、修正、配布、公開、または一般に利用可能にしないこと; (iv) あなたによる本ウェブサイトの直接的または間接的な誤用、「法的文章」(総称して、この法的通知および プライバシーポリシー)の規定および適用される法律によりDecidimが被る損失または損害について、あなたが責任を負うものとします。

section-4: + paragraph: "

画像、商標、ロゴ、特徴的な標識、音声つきアニメーション、テキスト、音声、映像または視聴覚記録およびデータベースを含むがこれに限定されない本ウェブサイトのコンテンツに関するすべての知的財産権はDecidimまたはそのライセンサーの財産であり、国内法および国際法により保護されています。このような権利は、Decidim および/またはそのライセンサーに有利になるように留保されます。本ウェブサイトまたはその内容の全部または一部について、複製、複写、公衆送信、配布、改変、変形、消去、操作、および営利・非営利、直接・間接、一時・永久を問わず、抽出・再利用を含むその他のあらゆる使用は、Decidimの書面による事前承認なしに明示的に禁止されています。私たちは、これらの権利の侵害の可能性がある場合、適切と思われるあらゆる法的および/または超法規的措置を講じることができます。

" title: 工業的・知的財産権 - paragraph: >- -

画像、商標、ロゴ、特徴的な標識、音声つきアニメーション、テキスト、音声、映像または視聴覚記録およびデータベースを含むがこれに限定されない本ウェブサイトのコンテンツに関するすべての知的財産権はDecidimまたはそのライセンサーの財産であり、国内法および国際法により保護されています。このような権利は、Decidim および/またはそのライセンサーに有利になるように留保されます。本ウェブサイトまたはその内容の全部または一部について、複製、複写、公衆送信、配布、改変、変形、消去、操作、および営利・非営利、直接・間接、一時・永久を問わず、抽出・再利用を含むその他のあらゆる使用は、Decidimの書面による事前承認なしに明示的に禁止されています。私たちは、これらの権利の侵害の可能性がある場合、適切と思われるあらゆる法的および/または超法規的措置を講じることができます。

section-5: + paragraph: "

Decidimは、本ウェブサイトからアクセスできる第三者のウェブページ、および本ウェブサイト上の情報の正確性、真実性、妥当性について、独自の推敲を経ていないものについては責任を負いません。しかしながら、法律34/2002の第17条に基づき、Decidimがそのようなコンテンツまたはリンクの違法性を認識した場合、前述の法律の第11条および16条に従い、それらを削除または無効にし、また必要に応じて、違法または第三者の権利を侵害する可能性のあるコンテンツをブロックすることを約束するものとします。

また、あなたが使用するブラウザの不具合や設定ミスにより生じた損害について、Decidimは一切の責任を負いません。Decidimは、ユーザーのインターネットへの接続に起因する事故や技術的な障害について、一切の責任を負わないものとします。

Decidimは、本ウェブサイトおよび/またはそのコンテンツへのアクセスおよび/または接続で発生したものを含むエラーや欠陥の更新および修正を最短時間で実施するために最善の努力をしますが、本ウェブサイトへの接続および/またはアクセスおよびそのコンテンツの更新に中断、エラーがないことを保証するものではありません。

あなたは、本ウェブサイトの使用およびアクセスについて責任を負うものとします。Decidimは、ウイルスの存在、セキュリティエラー、ウェブサイトへのアクセスおよび/または接続のためにお客様のデバイスまたはそのデバイスに保存されたファイルや文書に発生しうる損害、Decidimの管理外の違法侵入によって第三者に発生した損害について責任を負わないものとします。

Decidimは、本法的通知に含まれる本ウェブサイトにアクセスする際にあなたが負う義務の違反に対して責任を負わず、特に、第三者の商品および権利に関する知的財産権、著作権、広告および肖像権、またはその他の権利の侵害に対して責任を負わないものとします。

" title: 免責事項 - paragraph: >- -

Decidimは、本ウェブサイトからアクセスできる第三者のウェブページ、および本ウェブサイト上の情報の正確性、真実性、妥当性について、独自の推敲を経ていないものについては責任を負いません。しかしながら、法律34/2002の第17条に基づき、Decidimがそのようなコンテンツまたはリンクの違法性を認識した場合、前述の法律の第11条および16条に従い、それらを削除または無効にし、また必要に応じて、違法または第三者の権利を侵害する可能性のあるコンテンツをブロックすることを約束するものとします。

また、あなたが使用するブラウザの不具合や設定ミスにより生じた損害について、Decidimは一切の責任を負いません。Decidimは、ユーザーのインターネットへの接続に起因する事故や技術的な障害について、一切の責任を負わないものとします。

Decidimは、本ウェブサイトおよび/またはそのコンテンツへのアクセスおよび/または接続で発生したものを含むエラーや欠陥の更新および修正を最短時間で実施するために最善の努力をしますが、本ウェブサイトへの接続および/またはアクセスおよびそのコンテンツの更新に中断、エラーがないことを保証するものではありません。

あなたは、本ウェブサイトの使用およびアクセスについて責任を負うものとします。Decidimは、ウイルスの存在、セキュリティエラー、ウェブサイトへのアクセスおよび/または接続のためにお客様のデバイスまたはそのデバイスに保存されたファイルや文書に発生しうる損害、Decidimの管理外の違法侵入によって第三者に発生した損害について責任を負わないものとします。

Decidimは、本法的通知に含まれる本ウェブサイトにアクセスする際にあなたが負う義務の違反に対して責任を負わず、特に、第三者の商品および権利に関する知的財産権、著作権、広告および肖像権、またはその他の権利の侵害に対して責任を負わないものとします。

section-6: + paragraph:

Decidimは、この法律上の通知、プライバシーポリシーおよび/または本ウェブサイトに適用される契約上の性質の他の文章を事前の通知なしに変更することができます。そのような変更は、本ウェブサイトに掲載された時点で有効となるものとします。

また、Decidimはいつでも本ウェブサイトのサービスを終了または停止することができます。このような終了または停止については、可能な限り本ウェブサイトを通じて事前に通知します。

title: 改定 - paragraph: >- -

Decidimは、この法律上の通知、プライバシーポリシーおよび/または本ウェブサイトに適用される契約上の性質の他の文章を事前の通知なしに変更することができます。そのような変更は、本ウェブサイトに掲載された時点で有効となるものとします。

また、Decidimはいつでも本ウェブサイトのサービスを終了または停止することができます。このような終了または停止については、可能な限り本ウェブサイトを通じて事前に通知します。

section-7: + paragraph:

本ウェブサイトで収集したあなたの個人情報、またはあなたがお問い合わせフォームや電子メールを介して私たちに連絡した際の個人情報は、私たちのプライバシーポリシーに従って厳重に取り扱われます。

title: パーソナルデータ - paragraph: >- -

本ウェブサイトで収集したあなたの個人情報、またはあなたがお問い合わせフォームや電子メールを介して私たちに連絡した際の個人情報は、私たちのプライバシーポリシーに従って厳重に取り扱われます。

section-8: + paragraph:

本ウェブサイトではクッキーを使用していません。詳細は プライバシーポリシー

に記載されています。 title: クッキー - paragraph: >- -

本ウェブサイトではクッキーを使用していません。詳細は プライバシーポリシー

に記載されています。 section-9: + paragraph: '

この法律上の通知および プライバシーポリシーを含む私たちの法的文章は、スペイン法に準拠します。私たちのウェブサイトの使用から生じるいかなる紛争も、バルセロナ市の裁判所が決定権を有します。

最終更新: February 2022.

' title: 準拠法と管轄 - paragraph: >- -

この法律上の通知および プライバシーポリシーを含む私たちの法的文章は、スペイン法に準拠します。私たちのウェブサイトの使用から生じるいかなる紛争も、バルセロナ市の裁判所が決定権を有します。

最終更新: February 2022.

+ title: 法的情報開示 + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: ブログ + close_menu: Close menu + code: コード + community: コミュニティ + contact: お問い合わせ + contract: 社会契約 + demo: デモ + docs: + path: https://docs.decidim.org/ + title: ドキュメント + faqs: よくある質問 + features: 機能 + first-steps: First steps + home: Home + legal-notice: 法的情報開示 + menu: Menu + modules: モジュール + partners: 協力団体 + partnership-policy: Partnership policy + press: プレス + privacy-policy: プライバシーポリシー + text: Navigation + trademark: Trademark policy + use-cases: Use cases + used_by: 使用中のDecidim + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/ja" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: プライバシーポリシー section-1: + paragraph:

Decidim自由ソフトウェアアソシエーション ("Decidim" または “私たち”) は、ウェブドメイン https://decidim.org/ (以下、「本ウェブサイト」) を通じて利用できるこのウェブサイトの所有者で、ウェブサイトのすべてのユーザー ("あなた" または "ユーザー") の個人データの処理に関するデータ管理者として行動しています。

Decidimは、本ウェブサイトのすべてのユーザー、その準会員、およびDecidimコミュニティのメンバーのプライバシーを保護することに尽力しています。このプライバシーポリシーは、当社の自由・オープンソース参加型民主主義プラットフォームのデモを含むウェブサイトを通じて収集した個人データの使用、および本ウェブサイトまたはDecidimが管理する他のプラットフォームにおけるDecidimDecidimコミュニティ管理と関連する個人のデータの処理に関する当社の実務を説明するものです。

このプライバシーポリシーは、法律上の通知とともに、私たちの法律文書の一部となっています。

title: はじめに - paragraph: >- -

Decidim自由ソフトウェアアソシエーション ("Decidim" または “私たち”) は、ウェブドメイン https://decidim.org/ (以下、「本ウェブサイト」) を通じて利用できるこのウェブサイトの所有者で、ウェブサイトのすべてのユーザー ("あなた" または "ユーザー") の個人データの処理に関するデータ管理者として行動しています。

Decidimは、本ウェブサイトのすべてのユーザー、その準会員、およびDecidimコミュニティのメンバーのプライバシーを保護することに尽力しています。このプライバシーポリシーは、当社の自由・オープンソース参加型民主主義プラットフォームのデモを含むウェブサイトを通じて収集した個人データの使用、および本ウェブサイトまたはDecidimが管理する他のプラットフォームにおけるDecidimDecidimコミュニティ管理と関連する個人のデータの処理に関する当社の実務を説明するものです。

このプライバシーポリシーは、法律上の通知とともに、私たちの法律文書の一部となっています。

section-2: + paragraph:

a. 本ウェブサイトを閲覧した際に収集されたデータ

Decidimは、本ウェブサイトを利用するにあたり、解析ソフトウェア「Plausible」のサービスを利用しています。このソフトウェアは、ユーザーデータを追跡する際、このデータを完全かつ安全に暗号化して保持するものです。Plausible Analyticsの目的は、ウェブサイトの一般的なトラフィックの傾向を追跡することであり、個々の訪問者を追跡することではありません。各HTTPリクエストは、IPアドレスとユーザーエージェントをサーバーに送信するため、それを使用して、訪問者のIPアドレスとユーザーエージェントを使用して毎日変化する識別子を生成します。このデータを匿名化するために、ローテートするソルトを使用したハッシュ関数に渡されます。これにより、文字と数字のランダムな文字列が生成され、その日のユニークビジター数の計算に使用されます。生データのIPアドレスとユーザーエージェントは、ログ、データベース、Plausible analyticsのディスクのどこにも保存されません。古いソルトは24時間ごとに削除され、ある日の訪問者情報が次の日にリンクされる可能性を回避しています。このようにして、本ウェブサイトを閲覧している間、個人のユーザーデータは収集されません。Plausible Analyticsによるデータ処理の詳細については、同社のウェブサイト https://plausible.io/privacy-focused-web-analytics を参照してください。

b. デモから収集したデータ

本ウェブサイトの URL https://try.decidim.org/から利用できる Decidim プラットフォームのデモへのアクセスは、ユーザーが Decidim プラットフォームの操作、機能、能力をテストしたり、知識を得たりするための一般的な認証情報を使用するため、匿名で行われます。

セッションクッキー("Session_id")のみが有効で、その目的は、現在のセッションのセッションIDを取得または確立することです。このクッキーは、httpプロトコルによる接続を確保し、ユーザーのセッションとウェブサイトのサービスを利用可能な状態に保つために、ウェブサイトのセッションを検出する技術的機能として厳密に必要なものであり、欧州データ保護局が発行したクッキーの同意要件の免除に関する意見4/2012に基づき、ユーザーの同意は免除されています。

c. 問い合わせフォーム、電子メールまたはその他の通信手段から収集されたデータ

お問い合わせフォーム、電子メール、または同様の通信手段を用いて私たちにご連絡いただいた場合、私たちは、お客様のご意見、ご要望、ご提案などに対応するために、氏名、団体名、電子メールアドレス、ユーザーメッセージの内容などの情報を自動的に収集します。

さらに、当社は、データ集計などの仮名化、さらには匿名化の技術を用いて、統計的調査のためにこのデータを処理することがありますが、この後の処理でユーザーが個人的に特定されることはありません。

d. Decidim コミュニティから収集したデータ

Decidim は、私たちの技術を中心に形成されたDecidimコミュニティの管理、Decidimコミュニティの集合場所、ユーザーとDecidimの間の活動やコミュニケーションのほとんどが行われる場所として、本ウェブサイトにリンクされた他のプラットフォームを使用しています。https://meta.decidim.org/ や GitHub (https://github.com/decidim/decidim)などのこれらのプラットフォームには、それぞれの利用規約やプライバシーポリシーが適用されます。

ただし、 Decidimは、これらのプラットフォームで開発されたコミュニティ プロジェクトを管理するために、これらのプラットフォームから収集したユーザーの個人データを処理することがあります。特に、これらの個人データは、これらのプラットフォームへの接続データ、プラットフォーム上のユーザー プロファイル、およびユーザーが Decidim プロジェクトに適宜投稿するコメントや発言の内容で構成されます。これらの情報は公開され、他のユーザーがアクセスして見ることができる場合があります。

e. アソシエイトメンバーから収集したデータ

Decidimのコミュニティに自由に参加し、討論会への参加、イベント開催への協力、ワーキンググループやコミュニティデイの推進、さらにはオープンソースの参加型民主主義プラットフォームのコードやドキュメントへの貢献、インスタンスの管理などを希望する個人や団体は、上記の活動の実現を通じてコミュニティへの十分なコミットメントを示した場合に、Decidimのメンバーになることを選択できます。そのためには、所定のフォームに記入して申請書を提出していただき、Decidim 調整委員会で評価を受けます。

Decidimメンバーの個人データの処理は、Decidimの原則と価値、およびアソシエイトの義務と権利を確実に遵守するために、アソシエイトメンバーが参加する上述のプロジェクトと活動の管理、会費の会計管理、および一般的にDecidimのプロジェクトと活動のガバナンスを目的として行われます。

title: 収集する個人データおよびその扱いについて - paragraph: >- -

a. 本ウェブサイトを閲覧した際に収集されたデータ

Decidimは、本ウェブサイトを利用するにあたり、解析ソフトウェア「Plausible」のサービスを利用しています。このソフトウェアは、ユーザーデータを追跡する際、このデータを完全かつ安全に暗号化して保持するものです。Plausible Analyticsの目的は、ウェブサイトの一般的なトラフィックの傾向を追跡することであり、個々の訪問者を追跡することではありません。各HTTPリクエストは、IPアドレスとユーザーエージェントをサーバーに送信するため、それを使用して、訪問者のIPアドレスとユーザーエージェントを使用して毎日変化する識別子を生成します。このデータを匿名化するために、ローテートするソルトを使用したハッシュ関数に渡されます。これにより、文字と数字のランダムな文字列が生成され、その日のユニークビジター数の計算に使用されます。生データのIPアドレスとユーザーエージェントは、ログ、データベース、Plausible analyticsのディスクのどこにも保存されません。古いソルトは24時間ごとに削除され、ある日の訪問者情報が次の日にリンクされる可能性を回避しています。このようにして、本ウェブサイトを閲覧している間、個人のユーザーデータは収集されません。Plausible Analyticsによるデータ処理の詳細については、同社のウェブサイト https://plausible.io/privacy-focused-web-analytics を参照してください。

b. デモから収集したデータ

本ウェブサイトの URL https://try.decidim.org/から利用できる Decidim プラットフォームのデモへのアクセスは、ユーザーが Decidim プラットフォームの操作、機能、能力をテストしたり、知識を得たりするための一般的な認証情報を使用するため、匿名で行われます。

セッションクッキー("Session_id")のみが有効で、その目的は、現在のセッションのセッションIDを取得または確立することです。このクッキーは、httpプロトコルによる接続を確保し、ユーザーのセッションとウェブサイトのサービスを利用可能な状態に保つために、ウェブサイトのセッションを検出する技術的機能として厳密に必要なものであり、欧州データ保護局が発行したクッキーの同意要件の免除に関する意見4/2012に基づき、ユーザーの同意は免除されています。

c. 問い合わせフォーム、電子メールまたはその他の通信手段から収集されたデータ

お問い合わせフォーム、電子メール、または同様の通信手段を用いて私たちにご連絡いただいた場合、私たちは、お客様のご意見、ご要望、ご提案などに対応するために、氏名、団体名、電子メールアドレス、ユーザーメッセージの内容などの情報を自動的に収集します。

さらに、当社は、データ集計などの仮名化、さらには匿名化の技術を用いて、統計的調査のためにこのデータを処理することがありますが、この後の処理でユーザーが個人的に特定されることはありません。

d. Decidim コミュニティから収集したデータ

Decidim は、私たちの技術を中心に形成されたDecidimコミュニティの管理、Decidimコミュニティの集合場所、ユーザーとDecidimの間の活動やコミュニケーションのほとんどが行われる場所として、本ウェブサイトにリンクされた他のプラットフォームを使用しています。https://meta.decidim.org/ や GitHub (https://github.com/decidim/decidim)などのこれらのプラットフォームには、それぞれの利用規約やプライバシーポリシーが適用されます。

ただし、 Decidimは、これらのプラットフォームで開発されたコミュニティ プロジェクトを管理するために、これらのプラットフォームから収集したユーザーの個人データを処理することがあります。特に、これらの個人データは、これらのプラットフォームへの接続データ、プラットフォーム上のユーザー プロファイル、およびユーザーが Decidim プロジェクトに適宜投稿するコメントや発言の内容で構成されます。これらの情報は公開され、他のユーザーがアクセスして見ることができる場合があります。

e. アソシエイトメンバーから収集したデータ

Decidimのコミュニティに自由に参加し、討論会への参加、イベント開催への協力、ワーキンググループやコミュニティデイの推進、さらにはオープンソースの参加型民主主義プラットフォームのコードやドキュメントへの貢献、インスタンスの管理などを希望する個人や団体は、上記の活動の実現を通じてコミュニティへの十分なコミットメントを示した場合に、Decidimのメンバーになることを選択できます。そのためには、所定のフォームに記入して申請書を提出していただき、Decidim 調整委員会で評価を受けます。

Decidimメンバーの個人データの処理は、Decidimの原則と価値、およびアソシエイトの義務と権利を確実に遵守するために、アソシエイトメンバーが参加する上述のプロジェクトと活動の管理、会費の会計管理、および一般的にDecidimのプロジェクトと活動のガバナンスを目的として行われます。

section-3: + paragraph:

個人データの処理の法的根拠は以下の通りです:

  • 利用者および関係者のデータの処理は、利用者がウェブサイトの法的文章に同意することで構成される契約を履行するために必要であり、 Decidim およびその技術、プロジェクト、活動に関するあらゆる情報を提供し、 Decidim が実施するプロジェクトや活動に参加できるようにするためです。
  • また、あなたが参加したDecidimのプロジェクトや活動に関する出版物、プレスリリース、またはDecidimの活動に関するその他の通信・普及手段の作成、定期的な特定の情報の受け取り、および/またはウェブサイトのお問い合わせフォームや電子メールでのお問い合わせに、あなたが明示的に同意された場合にも、あなたの個人情報を処理することがあります。
  • 加えて、私たちは、私たちの正当な関心に基づき、利用者のプライバシーを保護するために、データ集計などの仮名化および可能であれば匿名化措置を実施して、統計調査またはその他の知識生成技術を実行するために、GDPR第89条により利用者のデータを処理することがあります。

特定の状況において、私たちは、私たちが従うべき法律上または規制上の義務を遵守するために、本ポリシーに基づいてユーザーのデータを処理することがあります。

title: 法的根拠 - paragraph: >- -

個人データの処理の法的根拠は以下の通りです:

  • 利用者および関係者のデータの処理は、利用者がウェブサイトの法的文章に同意することで構成される契約を履行するために必要であり、 Decidim およびその技術、プロジェクト、活動に関するあらゆる情報を提供し、 Decidim が実施するプロジェクトや活動に参加できるようにするためです。
  • - また、あなたが参加したDecidimのプロジェクトや活動に関する出版物、プレスリリース、またはDecidimの活動に関するその他の通信・普及手段の作成、定期的な特定の情報の受け取り、および/またはウェブサイトのお問い合わせフォームや電子メールでのお問い合わせに、あなたが明示的に同意された場合にも、あなたの個人情報を処理することがあります。
  • - 加えて、私たちは、私たちの正当な関心に基づき、利用者のプライバシーを保護するために、データ集計などの仮名化および可能であれば匿名化措置を実施して、統計調査またはその他の知識生成技術を実行するために、GDPR第89条により利用者のデータを処理することがあります。

特定の状況において、私たちは、私たちが従うべき法律上または規制上の義務を遵守するために、本ポリシーに基づいてユーザーのデータを処理することがあります。

section-4: + paragraph: '

私たちは、適用される法律に基づき、あなたの個人データを機密に処理します。別段の記載がない限り、あなたの個人データが第三者に提供されることはありません。

具体的には、以下のようにあなたのデータを開示します:

  • 私たちは、Decidimのためにサービスを提供する契約に基づき、私たちのITサービスプロバイダーにあなたの個人データへのアクセスを提供することができます。その中には、私たちにウェブホスティングサービスを提供している米国のNetlify, Inc.も含まれています。Decidim は、あなたの個人情報が適切に処理されることを保証するために、欧州委員会が現在承認している標準契約条項を含むデータ処理契約を Netlify 社と締結しています。Netlifyがあなたの個人データをどのように使用するかについての詳細は、ここで参照することができます: https://www.netlify.com/gdpr-ccpa
  • 私たちは、詐欺、ハラスメント、その他の法律、規則、規制、またはウェブサイトのポリシーに対する違反の疑いを調査するために、行政機関または当局にデータを提供することができます。

国際送金を行う当社のサービスプロバイダーに関する詳細は、privacy@decidim.org にお問い合わせください。

' title: データの開示 - paragraph: >- -

私たちは、適用される法律に基づき、あなたの個人データを機密に処理します。別段の記載がない限り、あなたの個人データが第三者に提供されることはありません。

具体的には、以下のようにあなたのデータを開示します:

  • 私たちは、Decidimのためにサービスを提供する契約に基づき、私たちのITサービスプロバイダーにあなたの個人データへのアクセスを提供することができます。その中には、私たちにウェブホスティングサービスを提供している米国のNetlify, Inc.も含まれています。Decidim は、あなたの個人情報が適切に処理されることを保証するために、欧州委員会が現在承認している標準契約条項を含むデータ処理契約を Netlify 社と締結しています。Netlifyがあなたの個人データをどのように使用するかについての詳細は、ここで参照することができます: https://www.netlify.com/gdpr-ccpa -
  • 私たちは、詐欺、ハラスメント、その他の法律、規則、規制、またはウェブサイトのポリシーに対する違反の疑いを調査するために、行政機関または当局にデータを提供することができます。

国際送金を行う当社のサービスプロバイダーに関する詳細は、privacy@decidim.org にお問い合わせください。

section-5: + paragraph: "

私たちは、個人データを収集した目的を果たすために必要な期間のみ、法的、会計的、または情報的な要件を満たすためにも、個人データを保持します。

個人データの適切な保存期間を決定するために、私たちは、個人データの量、性質および感度、個人データの不正使用または開示による潜在的な損害のリスク、個人データを処理する目的、他の手段で目的を達成できるかどうか、および適用される法的要件を考慮します。

" title: データの保持 - paragraph: >- -

私たちは、個人データを収集した目的を果たすために必要な期間のみ、法的、会計的、または情報的な要件を満たすためにも、個人データを保持します。

個人データの適切な保存期間を決定するために、私たちは、個人データの量、性質および感度、個人データの不正使用または開示による潜在的な損害のリスク、個人データを処理する目的、他の手段で目的を達成できるかどうか、および適用される法的要件を考慮します。

section-6: + paragraph: "

私たちは、あなたのデータの機密性および完全性を維持し、不正なアクセス、変更、または破壊から保護するために、法律で要求されるセキュリティ対策および個人データ保護スキームを実施しています。

" title: セキュリティ対策 - paragraph: >- -

私たちは、あなたのデータの機密性および完全性を維持し、不正なアクセス、変更、または破壊から保護するために、法律で要求されるセキュリティ対策および個人データ保護スキームを実施しています。

section-7: + paragraph: '

あなたは、自身の個人データに関連して、データ保護法に基づく権利を有しています。具体的には、以下のような権利があります:

  • アクセスの要求 自分の個人データへのアクセスを要求する (一般的に「データ主体アクセス要求」として知られています) 。これにより、あなたは、私たちが保有するあなたの個人データのコピーを受け取り、私たちがそのデータを合法的に処理しているかどうかを確認することができます。
  • 修正の要求 私たちが保有しているあなたに関する個人データの修正を依頼する。これにより、私たちが保有するあなたの不完全または不正確なデータを修正することができますが、あなたが私たちに提供する新しいデータの正確性を確認する必要がある場合があります。
  • 消去の要求 個人データの消去を要求する。これにより、あなたは、私たちが個人データの処理を継続する正当な理由がない場合に、私たちに対して個人データの削除または除去を求めることができます。また、あなたが処理に異議を唱える権利(下記参照)を行使した場合、私たちがあなたの情報を違法に処理した可能性がある場合、または現地の法律を遵守するためにあなたの個人データを消去する必要がある場合にも、あなたは私たちに個人データの削除または除去を求める権利があります。ただし、特定の法律上の理由がある場合には、あなたからの削除要請に応じられないことがありますのでご了承ください。
  • 処理に意義を唱える 私たちが正当な利益(または第三者の利益)に依拠している場合で、あなたの特定の状況において、あなたの基本的な権利および自由に影響を与えると思われるため、この根拠に基づく処理に異議を唱えることを希望する場合。また、私たちがダイレクトマーケティングを目的としてあなたの個人データを処理する場合、あなたは異議を唱える権利を有します。場合によっては、私たちは、あなたの権利および自由に優先する、あなたの情報を処理するためのやむを得ない正当な理由があることを証明することができます。
  • 処理の制限を要求 あなたの個人データの処理の制限を要求します。これにより、次のような場合に、あなたの個人データの処理を停止するよう私たちに求めることができます。(a) データの正確性を確認したい場合、(b) 私たちによるデータの使用が違法であるが、データの消去を望まない場合、(c) 法的請求を確立、行使、または弁護するために必要であるため、私たちがデータを必要としなくなっても、私たちがデータを保持する必要がある場合、または (d) 私たちによるデータの使用に異議を唱えたが、データを使用する正当な理由が他にあるかどうかを確認する必要がある場合。
  • 第三者への個人データの転送 あなたまたは第三者への個人データの転送を要求する(データポータビリティーの権利)。私たちは、あなたまたはあなたが選択された第三者に、あなたの個人データを構造化された一般的に使用される機械読み取り可能な形式で提供します。なお、この権利は、あなたが最初に私たちの使用に同意した自動化された情報、または私たちがあなたとの契約を履行するために情報を使用した場合にのみ適用されます。
  • 同意の撤回 あなたの個人データを処理するために同意に依存している場合は、いつでも同意を撤回することができます。ただし、あなたが同意を撤回する前に行われた処理の合法性には影響しません。あなたが同意を撤回された場合、私たちはあなたに特定の製品またはサービスを提供できなくなる可能性があります。あなたが同意を撤回した時点で、これが該当するかどうかをあなたにお知らせします。

前述の権利は、私たち privacy@decidim.org に連絡することで有効となります。

また、あなたには、管轄当局に苦情を申し立てる権利があります。この場合、スペインデータ保護局が該当します Agencia Española de Protección de Datos, C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: あなたの権利 - paragraph: >- -

あなたは、自身の個人データに関連して、データ保護法に基づく権利を有しています。具体的には、以下のような権利があります:

  • アクセスの要求 自分の個人データへのアクセスを要求する (一般的に「データ主体アクセス要求」として知られています) 。これにより、あなたは、私たちが保有するあなたの個人データのコピーを受け取り、私たちがそのデータを合法的に処理しているかどうかを確認することができます。
  • 修正の要求 私たちが保有しているあなたに関する個人データの修正を依頼する。これにより、私たちが保有するあなたの不完全または不正確なデータを修正することができますが、あなたが私たちに提供する新しいデータの正確性を確認する必要がある場合があります。
  • 消去の要求 個人データの消去を要求する。これにより、あなたは、私たちが個人データの処理を継続する正当な理由がない場合に、私たちに対して個人データの削除または除去を求めることができます。また、あなたが処理に異議を唱える権利(下記参照)を行使した場合、私たちがあなたの情報を違法に処理した可能性がある場合、または現地の法律を遵守するためにあなたの個人データを消去する必要がある場合にも、あなたは私たちに個人データの削除または除去を求める権利があります。ただし、特定の法律上の理由がある場合には、あなたからの削除要請に応じられないことがありますのでご了承ください。
  • 処理に意義を唱える 私たちが正当な利益(または第三者の利益)に依拠している場合で、あなたの特定の状況において、あなたの基本的な権利および自由に影響を与えると思われるため、この根拠に基づく処理に異議を唱えることを希望する場合。また、私たちがダイレクトマーケティングを目的としてあなたの個人データを処理する場合、あなたは異議を唱える権利を有します。場合によっては、私たちは、あなたの権利および自由に優先する、あなたの情報を処理するためのやむを得ない正当な理由があることを証明することができます。
  • 処理の制限を要求 あなたの個人データの処理の制限を要求します。これにより、次のような場合に、あなたの個人データの処理を停止するよう私たちに求めることができます。(a) データの正確性を確認したい場合、(b) 私たちによるデータの使用が違法であるが、データの消去を望まない場合、(c) 法的請求を確立、行使、または弁護するために必要であるため、私たちがデータを必要としなくなっても、私たちがデータを保持する必要がある場合、または (d) 私たちによるデータの使用に異議を唱えたが、データを使用する正当な理由が他にあるかどうかを確認する必要がある場合。
  • 第三者への個人データの転送 あなたまたは第三者への個人データの転送を要求する(データポータビリティーの権利)。私たちは、あなたまたはあなたが選択された第三者に、あなたの個人データを構造化された一般的に使用される機械読み取り可能な形式で提供します。なお、この権利は、あなたが最初に私たちの使用に同意した自動化された情報、または私たちがあなたとの契約を履行するために情報を使用した場合にのみ適用されます。
  • 同意の撤回 あなたの個人データを処理するために同意に依存している場合は、いつでも同意を撤回することができます。ただし、あなたが同意を撤回する前に行われた処理の合法性には影響しません。あなたが同意を撤回された場合、私たちはあなたに特定の製品またはサービスを提供できなくなる可能性があります。あなたが同意を撤回した時点で、これが該当するかどうかをあなたにお知らせします。

前述の権利は、私たち privacy@decidim.org に連絡することで有効となります。

また、あなたには、管轄当局に苦情を申し立てる権利があります。この場合、スペインデータ保護局が該当します Agencia Española de Protección de Datos, C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

私たちは、本プライバシーポリシーを変更する権利を留保し、変更後の内容を電子メールまたは当社ウェブサイト、本プライバシーポリシーで明確に通知します。このような更新の後、あなたが私たちのサービスの利用を継続される場合、あなたは新しいポリシーを受け入れたものとみなされます。あなたが更新を受け入れない場合、あなたのアカウントを終了させるか、または私たちに通知してください。私たちはあなたのアカウントを終了させ、あなたの個人データをすべて削除し (法的目的のために維持する必要がある場合を除きます)、あなたは私たちのサービスを継続して使用することができなくなります。

特定の地域の規則が反対のことを定めていない限り、プライバシーポリシーはスペインの法律が適用されます。

最終更新日: February 2022.

" title: 一般 - paragraph: >- -

私たちは、本プライバシーポリシーを変更する権利を留保し、変更後の内容を電子メールまたは当社ウェブサイト、本プライバシーポリシーで明確に通知します。このような更新の後、あなたが私たちのサービスの利用を継続される場合、あなたは新しいポリシーを受け入れたものとみなされます。あなたが更新を受け入れない場合、あなたのアカウントを終了させるか、または私たちに通知してください。私たちはあなたのアカウントを終了させ、あなたの個人データをすべて削除し (法的目的のために維持する必要がある場合を除きます)、あなたは私たちのサービスを継続して使用することができなくなります。

特定の地域の規則が反対のことを定めていない限り、プライバシーポリシーはスペインの法律が適用されます。

最終更新日: February 2022.

+ title: プライバシーポリシー + testimonials: + n1: + org: バルセロナ シティホール (2015-2019) + quote: Decidimのおかげで、バルセロナでは市民と一緒に戦略的な都市計画を共同制作することができました。2016年には、Decidim Barcelonaによる参加型プロセスの形で、市のアクションプランを発足させました。現在、この計画には約7,000件の市民提案が含まれています。このプラットフォームを利用するメリットのひとつは、承認された提案の実施状況をいつでもモニターできることです。 + n2: + org: Som Energia + quote: Som Energia で Decidim の実装により、私たちは参加のためのより優しいスペースを生成しました。 2018年にこのツールをリリースしました。 協同組合総会を主催し、数ヶ月後には、Som Energiaのイメージ再設計と共同開発について議論しました。 他の参加者の過程の中で、 数ヶ月で3,500人以上の参加者が登録し、5つの参加プロセスができました。 前回の総会投票では、3つの会合が運営され、1,300以上の票が得られました。 + n3: + org: メキシコ、ユカタン州メリダ市の市長。メキシコ・ユカタン州メリダ市議会 + quote: デジタルプラットフォーム「Decide Mérida」は、メリダ市開発計画2018-2021の策定において、市民参加の仕組みをかつてないほどに開放する機会となりました。提案、コメント、提案、支援など、3,000人以上の市民が参加し、私たちの街にとって何がベストなのか、可能な限り高いコンセンサスを得ることができました。Decide Méridaプラットフォームは、メリダをますます参加しやすい社会にするための味方であり続けることは間違いありません。 + n4: + org: ヘルシンキ市 + quote: 私たちが評価しているのは、民主主義を念頭に置いて作られているため、民主主義が大きな焦点となっていることです。説明責任、平等性、透明性といった民主主義の原則が、設計の中核をなしています。 + n5: + org: メキシコシティでのオープンガバメント + quote: 私たちのテーブルに来たほとんどすべての参加型プロセスは、Decidimのビジネスルールを使って解決することができました。ツールとしては非常に強力なものです。しかし、私たちにとって最も強力で重要な部分は、開発者と参加型プロセスに使用している人たちの両方のコミュニティです。彼らと共存することで、現実の世界で参加型民主主義を実現するための課題を理解することができました。 + n6: + org: Mozilla Foundation + quote: 私たちは、パブリックスペースの不足に悩まされています。このようなパブリックスペースを自分たちのために取り戻すことは特に重要です。Decidimのようなオープンプラットフォームはまさにそれを可能にします。Decidimはオープンソースなので、他の人がフォークして再利用したり、プロセスを構築したりできるだけではありません。それに加えて、私たちが社会に反映させたいと考えている価値観がデザインされているのです。 + n7: + org: オープンフォーラム・ヨーロッパ リサーチ・ディレクター, 欧州連合(EU) + quote: このプロセスは、2019年10月に欧州委員会の科学・知識サービスである共同研究センターのコミュニケーション総局とeDemocracyユニットで始まりました。会議のニーズを分析し、どのツールがそれに適合するかを検討した結果、技術的な成熟度、幅広いコミュニティ、適応性を考慮して、オープンソースのツールDecidimを選択しました。 + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: ご連絡いただきありがとうございます。折返しご連絡いたします。 + title: お問い合わせありがとうございます + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/lv.yml b/locales/lv.yml index 712f4c8d..f4184d09 100644 --- a/locales/lv.yml +++ b/locales/lv.yml @@ -1,448 +1,589 @@ +--- lv: - path: '/lv' - activeLang: 'Angliski' - nav: - text: 'Navigācija' - demo: 'Demo' - community: 'Community' - contract: 'Social Contract' - code: 'Kods' - docs: - title: 'Documentation' - path: 'https://docs.decidim.org/' - blog: 'Emuārs' - features: 'Funkcijas' - faqs: 'FAQs' - contact: 'Kontaktinformācija' - used_by: 'Decidim in use' - partners: 'Cooperating entities' - modules: 'Modules' - press: 'Press' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Join our call' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest is an intense 3-day program of activities devoted to the Decidim project, participatory democracy and open source tools for collective intelligence in the era of Global Democracy.' - index: - hero: - heading: 'Free Open-Source participatory democracy for cities and organizations' - subheading: 'Decidim is a digital platform
for citizen participation' - intro: 'Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim.' - video: - play: 'Play video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Close video' - subhero: - intro: 'Decidim helps citizens, organizations and public institutions self-organize democratically at every scale.' - feature1: 'Strategic
planning' - feature2: 'Participatory
budgeting' - feature3: 'Initiatives and
citizen consultations' - feature4: 'Participative
processes' - feature5: 'Asambleja' - feature6: 'Networked
communication' - used_by: - title: 'They are already using Decidim' - cta: 'See all' - cta: - title: 'start using Decidim today' - button: - code: 'Code on Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Online Demo - p1: Play around and explore freely the Decidim platform with our online demo. - p2: Decidim is up and running on several instances that you can visit and explore, Decidim Barcelona at Barcelona City or you can visit the sites of Gavà and L'Hospitalet. But these are real instances where you can't really play around freely, as you might not be a citizen of those municipalities, and you can't explore those sites as an admin. - p3: If you want to go further you are welcome to test Decidim on our Decidim Demo Site (courtesy of our developers at aLabs). Enter the demo site and freely explore the potential of Decidim and its features. - p4: You can log in as Admin (username "admin@example.org" and password "decidim123456"). - button: Online demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, our community' - subtitle: 'A democratic community that manages the Decidim project in all its dimensions' - intro: 'Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform.' - cta: 'Get started' - features: - title: 'Propose new features' - subtitle: 'To design and develop Decidim among all' - text: 'You can create debates about the future of Decidim or propose new features or improvements. Proposals can receive endorsements and comments, to show, for example, the interest they arouse in the community and value their development. Proposals that have a sponsor (such as a city council or any other entity), responsible for seeking and providing the necessary resources to carry out their development, will be useful for the project.' - cta: 'Enter and participate now' - bug: - title: 'Report a bug' - subtitle: 'Collaboration for progressive improvement' - text: 'Each new release of Decidim incorporates new features and usability improvements, but not everything works at first and errors may appear. Here you can report bugs you find and help the developers to fix them quickly.' - cta: 'Enter and participate now' - img_alt: 'Decidim Community Photo at Metadecidim Meeting 2016' - timeline: - title: 'Collaborative design of functionalities' - step1: - title: 'Jauns priekšlikums' - text: 'Functional description' - step2: - title: 'Validated proposal' - text: 'Technical and technopolitical validation' - step3: - title: 'Planned proposal' - text: 'Resources for development (shared or not)' - step4: - title: 'Issue' - text: 'Technical description' - step5: - title: 'Pull request' - text: 'Developed code' - step6: - title: 'Funcionality done' - text: 'Avaliable on the next version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Get started + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform. + subtitle: A democratic community that manages the Decidim project in all its dimensions + title: Metadecidim, our community contact: - title: Contact us - bot_field: "Don’t fill this out if you're human:" - name: Nosaukums - entity: Entity + bot_field: 'Don’t fill this out if you''re human:' email: E-pasts - subject: Subject message: Message + name: Nosaukums privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Sūtīt - thanks: - title: Thanks for your email - message: Thank you for contacting us, we will get back to you soon. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contact us + demo: + button: Online demo + p1: Play around and explore freely the Decidim platform with our online demo. + strong: Try Online + title: Online Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Frequently asked questions + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funkcijas' - intro: '

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

' - list: - n1: - title: 'Participatory
budgets' - content: 'It analyses the submitted proposals and promotes a new way of distributing common resources.' - n2: - title: 'Citizen’s initiatives
and consultations' - content: 'Empower your community through citizen initiatives. Promote relevant voting through consultations.' - n3: - title: 'The power
of a political network' - content: 'It takes deliberation, collaboration and decision to a massive dimension, with thousands of people participating in real time.' - n4: - title: 'A democratic
and flexible system' - content: 'Thanks to its modular architecture and scalable logic, you can configure a powerful system of democratic governance in all kinds of organizations.' - n5: - title: 'We take democracy
very seriously' - content: 'Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants.' - n6: - title: "It's yours.
Share it. Improve it." - content: 'A platform designed entirely with free software, open and collaborative content thanks to the community Metadecidim.' - cta: - features: 'See all features' - values: 'Go to social contract' + intro: "

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

" page: feature1: - title: 'Līdzdalības procesi' - subtitle: 'to democratize common issues, step by step' - text: >- - Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan. - feature2: - title: 'Asambleja' - subtitle: 'the power of collective self-organization' - text: >- - Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body). - feature3: - title: 'Konsultācijas' - subtitle: 'the right to decide with all democratic guarantees' - text: >- - Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. - feature4: - title: 'Iniciatīvas' - subtitle: "setting everyone's agenda, within everyone's reach" - text: >- - Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. - feature5: - title: 'Priekšlikumi' - subtitle: 'your ideas in detail' - text: >- - The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. - feature6: - title: 'Voting' - subtitle: 'decide your vote' - text: >- - The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc. - feature7: - title: 'Rezultāti' - subtitle: 'no proposal without an answer' - text: >- - The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. - feature8: - title: 'Atbildība' - subtitle: 'transparency from beginning to end' - text: >- - The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. - feature9: - title: 'Sanāksmes' - subtitle: 'to meet and not miss anything' - text: >- - The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + subtitle: to democratize common issues, step by step + text: 'Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan.' + title: Līdzdalības procesi feature10: - title: 'Līdzdalības teksti' - subtitle: 'to analyze, synthesize, and build in common' - text: >- - The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + subtitle: to analyze, synthesize, and build in common + text: The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + title: Līdzdalības teksti feature11: - title: 'Konference' - subtitle: 'Where big events are premiered' - text: >- - The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + subtitle: Where big events are premiered + text: The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + title: Konference feature12: - title: 'Aptaujas' - subtitle: 'Because the opinion of your community matters' - text: >- - The surveys component can be used to design and publish surveys and to display and download their results. + subtitle: Because the opinion of your community matters + text: The surveys component can be used to design and publish surveys and to display and download their results. + title: Aptaujas feature13: - title: 'Izloze' - subtitle: 'Equality and the justice of randomness' - text: >- - The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + subtitle: Equality and the justice of randomness + text: The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + title: Izloze feature14: - title: 'Komentāri' - subtitle: 'Building a collective intelligence' - text: >- - The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + subtitle: Building a collective intelligence + text: The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + title: Komentāri feature15: - title: 'Pages and blogs' - subtitle: 'Your community, informed and up to date' - text: >- - The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + subtitle: Your community, informed and up to date + text: The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + title: Pages and blogs feature16: - title: 'Paziņojumi' - subtitle: 'Personalized information on interesting contents' - text: >- - Decidim enables you to track any space or component to receive updates every time they happen. + subtitle: Personalized information on interesting contents + text: Decidim enables you to track any space or component to receive updates every time they happen. + title: Paziņojumi feature17: - title: 'Informatīvais biļetens' - subtitle: 'Simple but powerful' - text: >- - The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + subtitle: Simple but powerful + text: The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + title: Informatīvais biļetens + feature2: + subtitle: the power of collective self-organization + text: 'Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body).' + title: Asambleja + feature3: + subtitle: the right to decide with all democratic guarantees + text: Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. + title: Konsultācijas + feature4: + subtitle: setting everyone's agenda, within everyone's reach + text: Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. + title: Iniciatīvas + feature5: + subtitle: your ideas in detail + text: The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. + title: Priekšlikumi + feature6: + subtitle: decide your vote + text: 'The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc.' + title: Voting + feature7: + subtitle: no proposal without an answer + text: The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. + title: Rezultāti + feature8: + subtitle: transparency from beginning to end + text: The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. + title: Atbildība + feature9: + subtitle: to meet and not miss anything + text: The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + title: Sanāksmes + subtitle: For democratic organizations and collectives of any size and kind. + title: Funkcijas type1: - title: 'Spaces for participation' - subtitle: 'For participants to make proposals and make decisions' + title: Spaces for participation type2: - title: 'Komponenti' - subtitle: 'For participants and spaces to interact' - other: - subtitle: 'Dare to combine the components. Design and deploy a powerful democratic system in an easy way and adapt it to your organization’s needs' - cta: - title: 'Discover how Decidim works in depth' - button: 'Functions and features' - partners: - notice: The cooperating entities logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Nosaukums - type: - community: Community - auth: Authorization - official: Oficiālā - used_by: - explain: These cities, regions and organizations are already using Decidim - type: - city: Cities - region: Regions - organizations: Organizācijas - testimonials: - n1: - quote: >- - Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. - org: Barcelona City Hall (2015-2019) - n2: - quote: >- - With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. - org: Som Energia - n3: - quote: >- - The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. - org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico - n4: - quote: >- - What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. - org: City of Helsinki - n5: - quote: >- - Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. - org: Open Government of Mexico City - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Frequently asked questions - q01: - question: What is Decidim? - answer: >- - Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common's free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision. - q02: - question: Who is currently using Decidim? - answer: >- - It is currently used by cities and organizations. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). - q03: - question: What can a Decidim administrator do? - answer: >- - Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). - q04: - question: What can a participant (user) of Decidim do? - answer: >- - Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. - q05: - question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. - answer: 'Yes, we have an [online demo](/demo).' - q06: - question: How often is the platform updated? - answer: >- - We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). - q07: - question: What do I need to install Decidim? - answer: >- - Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). - q08: - question: Where can I find the project roadmap and the planned features? - answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'What does it mean that Decidim is for free, "libre" and open source?' - answer: >- - Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. - q10: - question: >- - I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: I have many doubts, of all kinds...where can I ask them or solve them? - answer: >- - The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). - q12: - question: Is there any tutorial to start setting it up? - answer: >- - You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). - q13: - question: What is the Social Contract? - answer: >- - That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). - q14: - question: What are the differences with Consul Project / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: What is the Metadecidim community? - answer: >- - [Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the [SOM (Metadecidim Operative Sessions)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) and the [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-) - q16: - question: Can I join the Metadecidim community even if I don't live in Barcelona? - answer: >- - Decidim is a project that was born in Barcelona and that is why there is a strong territorial bond with this city. But yes, you can collaborate online, through participatory processes, debates, etc .... that we provide in Metadecidim. Although you might want to come to Barcelona sometime :) - q17: - question: We want to make a formal collaboration agreement. Are there any templates we can use? - answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). - q18: - question: What kind of members you accept into the Metadecidim community? - answer: Anybody who has good faith and a correct attitude towards democratic collaboration. - q19: - question: Do you provide free installation to non-profit organizations? - answer: >- - Yes, only if you are a Barcelona based organization. Send us a message and you will be helped by the Directorate of Research, Development and Innovation of the Area of Citizenship Rights, Participation and Transparency of Barcelona City Council. - q20: - question: Do you support institutions? - answer: >- - Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. - q21: - question: What is the Decidim Association? - answer: >- - The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. - q22: - question: How can I get more information about the Decidim Association? - answer: >- - In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) - q23: - question: How can I become a member of the Decidim Association? - answer: >- - Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: When was the Decidim Association born? - answer: >- - The Associació [Decidim is founded on February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + title: Komponenti + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim. + subheading: Decidim is a digital platform
for citizen participation + subhero: + cta: Explore all features + feature1: Strategic
planning + feature2: Participatory
budgeting + feature3: Initiatives and
citizen consultations + feature4: Participative
processes + feature5: Asambleja + feature6: Networked
communication + intro: Decidim helps citizens, organizations and public institutions self-organize democratically at every scale. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: They are already using Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Emuārs + close_menu: Close menu + code: Kods + community: Community + contact: Kontaktinformācija + contract: Social Contract + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentation + faqs: FAQs + features: Funkcijas + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Modules + partners: Cooperating entities + partnership-policy: Partnership policy + press: Press + privacy-policy: Privacy policy + text: Navigācija + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in use + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/lv" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Barcelona City Hall (2015-2019) + quote: Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. + n2: + org: Som Energia + quote: With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. + n3: + org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico + quote: The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. + n4: + org: City of Helsinki + quote: What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. + n5: + org: Open Government of Mexico City + quote: Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Thank you for contacting us, we will get back to you soon. + title: Thanks for your email + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/nl.yml b/locales/nl.yml index f600cde3..7fd332ba 100644 --- a/locales/nl.yml +++ b/locales/nl.yml @@ -1,448 +1,589 @@ +--- nl: - path: '/nl' - activeLang: 'Nederlands' - nav: - text: 'Navigatie' - demo: 'Demo' - community: 'Gemeenschap' - contract: 'Sociale Contract' - code: 'Code' - docs: - title: 'Documentatie' - path: 'https://docs.decidim.org/' - blog: 'blog' - features: 'Faciliteiten' - faqs: 'FAQs' - contact: 'Contact' - used_by: 'Decidim in gebruik' - partners: 'Cooperating entiteiten' - modules: 'modules' - press: 'Indrukken' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Deelnemen aan onze oproep' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest is een intens 3-daags activiteitenprogramma gewijd aan het Decidim project participerende democratie en open source instrumenten voor collectieve intelligentie in het tijdperk van de Global Democracy.' - index: - hero: - heading: 'Gratis Open-Source participatieve democratie voor steden en organisaties' - subheading: 'Decidim is een digitaal platform
voor deelname van burgers' - intro: 'Gratis en veilige technologie.
Met alle democratische garanties.
Herprogrammeren van democratie is nu mogelijk met Decidim.' - video: - play: 'Video afspelen' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Video sluiten' - subhero: - intro: 'Decidim helpt burgers, organisaties en publieke instellingen zich op elke schaal democratisch te organiseren.' - feature1: 'Strategische
planning' - feature2: 'Participatief
budgetteren' - feature3: 'Initiatieven en
burgeroverleg' - feature4: 'Participatieve
processen' - feature5: 'Groepen' - feature6: 'Netwerk
communicatie' - used_by: - title: 'Ze gebruiken al Decidim' - cta: 'Alles bekijken' - cta: - title: 'Begin vandaag met Decidim' - button: - code: 'Code op Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Online demo - p1: Speel rond en verken vrij het Decidim platform met onze online demo. - p2: Decidim is klaar en actief op meerdere instanties die je kunt bezoeken en verkennen, Decidim Barcelona in Barcelona of u kunt de locaties van Gavaive en L'Hospitaletbezoeken. Maar dit zijn echte instanties waar je niet echt vrij kunt spelen, omdat je misschien geen burger bent van die gemeenten, en je kunt die sites niet als beheerder verkennen. - p3: Als u verder wilt gaan, bent u welkom om Decidim te testen op onze Decidim Demo Site (afkomstig van onze ontwikkelaars bij aLabs). Voer de demo site in en verken vrij de mogelijkheden van Decidim en bijbehorende functies. - p4: U kunt inloggen als Admin (gebruikersnaam "admin@example.org" en wachtwoord "decidim123456"). - button: Online demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, onze gemeenschap' - subtitle: 'Een democratische gemeenschap die het Decidim project in al zijn dimensies beheert' - intro: 'Metadecidim is een gemeenschap die samenwerkt met het ontwerp van het platform en de constructie van het project. Samen kunnen we nieuwe functies ontwerpen en bugs melden voor voortdurende verbetering van het platform.' - cta: 'Aan de slag' - features: - title: 'Nieuwe functies voorstellen' - subtitle: 'Ontwerp en ontwikkeling van Decidim onder alle' - text: 'Je kunt debatten over de toekomst van Decidim maken of nieuwe functies of verbeteringen voorstellen. Voorstellen kunnen bevestigingen en opmerkingen ontvangen, bijvoorbeeld om te laten zien welke interesse ze wekken in de gemeenschap en om hun ontwikkeling te waarderen. Voorstellen met sponsor (zoals een gemeenteraad of een andere entiteit), het project zal van nut zijn voor het zoeken naar en het beschikbaar stellen van de middelen die nodig zijn om hun ontwikkeling uit te voeren.' - cta: 'Voer nu in en neem deel' - bug: - title: 'Meld een bug' - subtitle: 'Samenwerking voor progressieve verbetering' - text: 'Elke nieuwe uitgave van Decidim bevat nieuwe functies en bruikbaarheid verbeteringen, maar niet alles werkt eerst en er kunnen fouten verschijnen. Hier kun je bugs rapporteren die je vindt en de ontwikkelaars helpen om ze snel op te lossen.' - cta: 'Voer nu in en neem deel' - img_alt: 'Decidim Gemeenschapsfoto tijdens de vergadering van Metadecidim 2016' - timeline: - title: 'Gezamenlijk ontwerp van functionaliteiten' - step1: - title: 'Nieuw voorstel' - text: 'Functionele beschrijving' - step2: - title: 'Gevalideerd voorstel' - text: 'Technische en technopolitische validatie' - step3: - title: 'Geplande voorstel' - text: 'Hulpmiddelen voor ontwikkeling (gedeeld of niet)' - step4: - title: 'Probleem' - text: 'Technische beschrijving' - step5: - title: 'Pull request' - text: 'Code ontwikkeld' - step6: - title: 'Funcionaliteit gedaan' - text: 'Onverdedigbaar op de volgende versie' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Aan de slag + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Gemeenschapsfoto tijdens de vergadering van Metadecidim 2016 + intro: Metadecidim is een gemeenschap die samenwerkt met het ontwerp van het platform en de constructie van het project. Samen kunnen we nieuwe functies ontwerpen en bugs melden voor voortdurende verbetering van het platform. + subtitle: Een democratische gemeenschap die het Decidim project in al zijn dimensies beheert + title: Metadecidim, onze gemeenschap contact: - title: Contacteer ons - bot_field: "Vul dit niet in als je een mens bent:" - name: Naam - entity: Entiteit + bot_field: 'Vul dit niet in als je een mens bent:' email: E-mail - subject: Subject message: bericht + name: Naam privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Verzenden - thanks: - title: Bedankt voor uw e-mail - message: Bedankt dat je contact met ons hebt opgenomen, we nemen snel contact met je op. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contacteer ons + demo: + button: Online demo + p1: Speel rond en verken vrij het Decidim platform met onze online demo. + strong: Try Online + title: Online demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Veel gestelde vragen + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Faciliteiten' - intro: '

Je kunt Decidim gebruiken in een openbare of private organisatie, met honderden of duizenden potentiële deelnemers, zoals een stadsraad, een vereniging, een universiteit, een NGO, een vakbond, een collectieve of coöperatieve gemeenschap...

Dankzij Decidim kan je ruimtes configureren voor deelname (initiatieven, assemblies, processen of raadplegingen) en ze verrijken via de meerdere beschikbare componenten (individuele vergaderingen, enquêtes, voorstellen, stemmen, follow-up van resultaten, commentaren en nog veel meer).

' - list: - n1: - title: 'Participatieve
budgetten' - content: 'Het analyseert de ingediende voorstellen en bevordert een nieuwe manier om gemeenschappelijke middelen te verdelen.' - n2: - title: 'Initiatieven van de burgers
en raadplegingen' - content: 'Geef je gemeenschap inhoud door burgerinitiatieven. Promoot relevante stemming door raadplegingen.' - n3: - title: 'De macht
van een politiek netwerk' - content: 'Er is overleg, samenwerking en een besluit van een enorme omvang nodig, met duizenden mensen die in realtime aan de slag gaan.' - n4: - title: 'Een democratisch
en flexibel systeem' - content: 'Dankzij de modulaire architectuur en de schaalbare logica kunt u een krachtig systeem van democratisch bestuur configureren in alle soorten organisaties.' - n5: - title: 'Wij nemen democratie
zeer serieus' - content: 'Decidim waarborgt transparantie, traceerbaarheid en integriteit van informatie zoals nooit tevoren. Het biedt veiligheid, privacy en vertrouwelijkheid voor alle deelnemers.' - n6: - title: "Het is van jou.
Deel het. Verbeter het." - content: 'Dankzij de gemeenschap Metadecidim is een platform ontworpen met gratis software, open en samenwerkende inhoud.' - cta: - features: 'Bekijk alle functies' - values: 'Ga naar sociaal contract' + intro: "

Je kunt Decidim gebruiken in een openbare of private organisatie, met honderden of duizenden potentiële deelnemers, zoals een stadsraad, een vereniging, een universiteit, een NGO, een vakbond, een collectieve of coöperatieve gemeenschap...

Dankzij Decidim kan je ruimtes configureren voor deelname (initiatieven, assemblies, processen of raadplegingen) en ze verrijken via de meerdere beschikbare componenten (individuele vergaderingen, enquêtes, voorstellen, stemmen, follow-up van resultaten, commentaren en nog veel meer).

" page: feature1: - title: 'Inspraakproces' - subtitle: 'om gemeenschappelijke kwesties stap voor stap te democratiseren' - text: >- - Processen is een ruimte die het mogelijk maakt verschillende participatieve processen te maken, te activeren/deactiveren, en te beheren. Dit onderscheidt zich van andere ruimten door in verschillende fasen een structuur op te zetten waarin alle onderdelen kunnen worden opgenomen. Voorbeelden van participatieprocessen zijn: een verkiezingsproces voor leden van een comité, participerende budgettering, een strategisch planningsproces. het gezamenlijk opstellen van een verordening of norm, het ontwerpen van een stedelijke ruimte of het opstellen van een plan voor overheidsbeleid. - feature2: - title: 'Groepen' - subtitle: 'de macht van de collectieve zelforganisatie' - text: >- - Is een ruimte die de mogelijkheid biedt besluitvormingsorganen of groepen op te richten (raden, werkgroepen, comités, enzovoorts? die regelmatig samenkomen, hun samenstelling, plaatsen en geoloceren van hun vergaderingen, en de mogelijkheid om deel te nemen aan ze (bijvoorbeeld het bijwonen als het zittingsvermogen en de aard van de vergadering dit toestaan, punten aan de agenda toe te voegen of commentaar te leveren op de voorstellen en besluiten die door dat orgaan zijn genomen). - feature3: - title: 'Burgerinspraaken' - subtitle: 'het recht om met alle democratische waarborgen te beslissen' - text: >- - Consultatie is een ruimte die het mogelijk maakt om referenda, discussies en debatten te coördineren, stemresultaten openbaar te maken; het kan worden gekoppeld aan een veilig e-Stimuleringssysteem. - feature4: - title: 'Initiatieven' - subtitle: "ieders agenda bepalen, binnen ieders bereik" - text: >- - Initiatieven zijn een ruimte die deelnemers in staat stelt samen initiatieven te ontwikkelen, hun trajecten en doelen te definiëren, ondersteuningen, discussies, initiatieven bespreken en verspreiden en vergaderpunten definiëren waar handtekeningen kunnen worden verzameld uit deelnemers of debatten die zijn geopend voor andere leden van de organisatie. - feature5: - title: 'Voorstellen' - subtitle: 'je ideeën in detail' - text: >- - De voorstellen component stelt de gebruiker in staat een voorstel te maken met behulp van een aanmaakmagiër, vergelijk het met de bestaande, publiceer het op het platform en voeg aanvullende informatie toe zoals geolocatie of bijgevoegde documenten en afbeeldingen. Dit onderdeel stelt u in staat om te navigeren, filteren en interactie met een reeks voorstellen. Daarnaast kunt u met de voorgestelde incubator samenwerkingsvoorstellen maken. - feature6: - title: 'Stemmen' - subtitle: 'beslis je stem' - text: >- - Het stemcomponent biedt organisaties de mogelijkheid om verschillende stem- of ondersteuningssystemen rond voorstellen te activeren: ongelimiteerd, beperkt tot een bepaalde drempel, gewogen kosten, enz. - feature7: - title: 'Resultaten' - subtitle: 'geen voorstel zonder antwoord' - text: >- - Het resultaatcomponent wordt gebruikt om voorstellen in resultaten om te zetten en officiële antwoorden te geven over de acceptatie of afwijzing, Het samenvoegen van verschillende voorstellen tot één enkel resultaat. - feature8: - title: 'Verantwoording' - subtitle: 'transparantie van begin tot einde' - text: >- - Het accountability component biedt de mogelijkheid om resultaten te verdelen in projecten, voortgangsstatussen te definiëren en toe te passen rond de uitvoering ervan. evenals de omvang van de uitvoering van de resultaten, gegroepeerd op categorieën en reikwijdte. - feature9: - title: 'Vergaderingen' - subtitle: 'elkaar ontmoeten en niets missen' - text: >- - Het vergadercomponent biedt organisaties en deelnemers de mogelijkheid om vergaderingen bijeen te roepen, hun locatie en tijd te bepalen. de deelnemers registreren en beperken, definieer de structuur en de inhoud van de vergadering en publiceer de notulen en de daaruit voortvloeiende voorstellen. + subtitle: om gemeenschappelijke kwesties stap voor stap te democratiseren + text: 'Processen is een ruimte die het mogelijk maakt verschillende participatieve processen te maken, te activeren/deactiveren, en te beheren. Dit onderscheidt zich van andere ruimten door in verschillende fasen een structuur op te zetten waarin alle onderdelen kunnen worden opgenomen. Voorbeelden van participatieprocessen zijn: een verkiezingsproces voor leden van een comité, participerende budgettering, een strategisch planningsproces. het gezamenlijk opstellen van een verordening of norm, het ontwerpen van een stedelijke ruimte of het opstellen van een plan voor overheidsbeleid.' + title: Inspraakproces feature10: - title: 'Participatieve teksten' - subtitle: 'om te analyseren, samen te voegen en gemeenschappelijk te bouwen' - text: >- - Het participerende tekstcomponent kan worden gebruikt om lange tekstdocumenten om te zetten in verschillende voorstellen of resultaten en, vice versa, om een uniforme tekst op te stellen en weer te geven op basis van een verzameling voorstellen of resultaten. + subtitle: om te analyseren, samen te voegen en gemeenschappelijk te bouwen + text: Het participerende tekstcomponent kan worden gebruikt om lange tekstdocumenten om te zetten in verschillende voorstellen of resultaten en, vice versa, om een uniforme tekst op te stellen en weer te geven op basis van een verzameling voorstellen of resultaten. + title: Participatieve teksten feature11: - title: 'Conferentie' - subtitle: 'Waar grote evenementen worden opgewaardeerd' - text: >- - Het conferentiecomponent staat een organisatie toe om een website voor een groot evenement te maken door deel te nemen aan vooraf gedefinieerde vergaderingen (chats, workshops etc. , het samenstellen van een eengemaakt programma en het beheren van deelnemers. + subtitle: Waar grote evenementen worden opgewaardeerd + text: Het conferentiecomponent staat een organisatie toe om een website voor een groot evenement te maken door deel te nemen aan vooraf gedefinieerde vergaderingen (chats, workshops etc. , het samenstellen van een eengemaakt programma en het beheren van deelnemers. + title: Conferentie feature12: - title: 'Enquêtes' - subtitle: 'Omdat de mening van uw gemeenschap belangrijk is' - text: >- - De enquête-component kan worden gebruikt om enquêtes te ontwerpen en te publiceren en de resultaten ervan weer te geven. + subtitle: Omdat de mening van uw gemeenschap belangrijk is + text: De enquête-component kan worden gebruikt om enquêtes te ontwerpen en te publiceren en de resultaten ervan weer te geven. + title: Enquêtes feature13: - title: 'Loting' - subtitle: 'Gelijkheid en rechtvaardigheid van willekeurigheid' - text: >- - De loting component maakt het mogelijk om een aantal voorstellen te selecteren (bijv. kandidaten voor een jury) met willekeurige, maar reproduceerbare procedures die niet-bevooroordeelde en uniforme verdelingen garanderen. + subtitle: Gelijkheid en rechtvaardigheid van willekeurigheid + text: De loting component maakt het mogelijk om een aantal voorstellen te selecteren (bijv. kandidaten voor een jury) met willekeurige, maar reproduceerbare procedures die niet-bevooroordeelde en uniforme verdelingen garanderen. + title: Loting feature14: - title: 'Reacties' - subtitle: 'Gezamenlijke intelligentie opbouwen' - text: >- - Het commentaarcomponent stelt gebruikers in staat om opmerkingen toe te voegen, om de reactie te identificeren als favoriet, tegen of neutraal met betrekking tot het becommentarieerde object, om opmerkingen te stemmen, erop te reageren en om meldingen over reacties te ontvangen. + subtitle: Gezamenlijke intelligentie opbouwen + text: Het commentaarcomponent stelt gebruikers in staat om opmerkingen toe te voegen, om de reactie te identificeren als favoriet, tegen of neutraal met betrekking tot het becommentarieerde object, om opmerkingen te stemmen, erop te reageren en om meldingen over reacties te ontvangen. + title: Reacties feature15: - title: 'Pagina''s en blogs' - subtitle: 'Uw gemeenschap, op de hoogte en up-to-date' - text: >- - Het pagina-component wordt gebruikt om informatieve pagina's te maken met rich text-opmaak, ingebedde foto's en video's. De blog component maakt het mogelijk om posten of nieuws aan te maken en deze chronologisch te navigeren. + subtitle: Uw gemeenschap, op de hoogte en up-to-date + text: Het pagina-component wordt gebruikt om informatieve pagina's te maken met rich text-opmaak, ingebedde foto's en video's. De blog component maakt het mogelijk om posten of nieuws aan te maken en deze chronologisch te navigeren. + title: Pagina's en blogs feature16: - title: 'Meldingen' - subtitle: 'Gepersonaliseerde informatie over interessante inhoud' - text: >- - Decidim stelt u in staat om elke ruimte of component bij te houden om updates te ontvangen telkens wanneer ze gebeuren. + subtitle: Gepersonaliseerde informatie over interessante inhoud + text: Decidim stelt u in staat om elke ruimte of component bij te houden om updates te ontvangen telkens wanneer ze gebeuren. + title: Meldingen feature17: - title: 'Nieuwsbrief' - subtitle: 'Eenvoudig maar krachtig' - text: >- - Het nieuwsbriefcomponent maakt het mogelijk om e-mails te sturen naar iedereen die is geregistreerd in het platform of selectiever naar degenen die deelnemen aan een specifieke ruimte. + subtitle: Eenvoudig maar krachtig + text: Het nieuwsbriefcomponent maakt het mogelijk om e-mails te sturen naar iedereen die is geregistreerd in het platform of selectiever naar degenen die deelnemen aan een specifieke ruimte. + title: Nieuwsbrief + feature2: + subtitle: de macht van de collectieve zelforganisatie + text: Is een ruimte die de mogelijkheid biedt besluitvormingsorganen of groepen op te richten (raden, werkgroepen, comités, enzovoorts? die regelmatig samenkomen, hun samenstelling, plaatsen en geoloceren van hun vergaderingen, en de mogelijkheid om deel te nemen aan ze (bijvoorbeeld het bijwonen als het zittingsvermogen en de aard van de vergadering dit toestaan, punten aan de agenda toe te voegen of commentaar te leveren op de voorstellen en besluiten die door dat orgaan zijn genomen). + title: Groepen + feature3: + subtitle: het recht om met alle democratische waarborgen te beslissen + text: Consultatie is een ruimte die het mogelijk maakt om referenda, discussies en debatten te coördineren, stemresultaten openbaar te maken; het kan worden gekoppeld aan een veilig e-Stimuleringssysteem. + title: Burgerinspraaken + feature4: + subtitle: ieders agenda bepalen, binnen ieders bereik + text: Initiatieven zijn een ruimte die deelnemers in staat stelt samen initiatieven te ontwikkelen, hun trajecten en doelen te definiëren, ondersteuningen, discussies, initiatieven bespreken en verspreiden en vergaderpunten definiëren waar handtekeningen kunnen worden verzameld uit deelnemers of debatten die zijn geopend voor andere leden van de organisatie. + title: Initiatieven + feature5: + subtitle: je ideeën in detail + text: De voorstellen component stelt de gebruiker in staat een voorstel te maken met behulp van een aanmaakmagiër, vergelijk het met de bestaande, publiceer het op het platform en voeg aanvullende informatie toe zoals geolocatie of bijgevoegde documenten en afbeeldingen. Dit onderdeel stelt u in staat om te navigeren, filteren en interactie met een reeks voorstellen. Daarnaast kunt u met de voorgestelde incubator samenwerkingsvoorstellen maken. + title: Voorstellen + feature6: + subtitle: beslis je stem + text: 'Het stemcomponent biedt organisaties de mogelijkheid om verschillende stem- of ondersteuningssystemen rond voorstellen te activeren: ongelimiteerd, beperkt tot een bepaalde drempel, gewogen kosten, enz.' + title: Stemmen + feature7: + subtitle: geen voorstel zonder antwoord + text: Het resultaatcomponent wordt gebruikt om voorstellen in resultaten om te zetten en officiële antwoorden te geven over de acceptatie of afwijzing, Het samenvoegen van verschillende voorstellen tot één enkel resultaat. + title: Resultaten + feature8: + subtitle: transparantie van begin tot einde + text: Het accountability component biedt de mogelijkheid om resultaten te verdelen in projecten, voortgangsstatussen te definiëren en toe te passen rond de uitvoering ervan. evenals de omvang van de uitvoering van de resultaten, gegroepeerd op categorieën en reikwijdte. + title: Verantwoording + feature9: + subtitle: elkaar ontmoeten en niets missen + text: Het vergadercomponent biedt organisaties en deelnemers de mogelijkheid om vergaderingen bijeen te roepen, hun locatie en tijd te bepalen. de deelnemers registreren en beperken, definieer de structuur en de inhoud van de vergadering en publiceer de notulen en de daaruit voortvloeiende voorstellen. + title: Vergaderingen + subtitle: For democratic organizations and collectives of any size and kind. + title: Faciliteiten type1: - title: 'Ruimtes voor deelname' - subtitle: 'Deelnemers kunnen voorstellen doen en besluiten nemen' + title: Ruimtes voor deelname type2: - title: 'Onderdelen' - subtitle: 'Voor interactie tussen deelnemers en ruimtes' - other: - subtitle: 'Durf om de componenten te combineren. Ontwerp en implementeer een krachtig democratisch systeem op een eenvoudige manier en pas het aan de behoeften van uw organisatie aan.' - cta: - title: 'Ontdek hoe Decidim werkt op diepte' - button: 'Functies en functies' - partners: - notice: De samenwerkende entiteiten zijn de intellectuele eigendom van hun respectieve houders van auteursrechten. Ze vallen niet onder de Creative Commons By-SA licentie van de rest van de inhoud van de site zijn gelicenseerd. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Naam - type: - community: Gemeenschap - auth: Autorisatie - official: Officieel - used_by: - explain: Deze steden, regio's en organisaties gebruiken al Decidim - type: - city: Steden - region: Regio's - organizations: Organisaties - testimonials: - n1: - quote: >- - Dankzij Decidim zijn we er in Barcelona in geslaagd samen met de burgers een strategisch stadsplan op te stellen. In 2016 hebben we het gezamenlijk actieplan in gang gezet in de vorm van een participerend proces door middel van Decidim Barcelona. Op dit moment bevat dit plan bijna zevenduizend burgervoorstellen. Een van de voordelen van het gebruik van dit platform is dat je te allen tijde de stand van zaken bij de tenuitvoerlegging van de goedgekeurde voorstellen kunt controleren. - org: Stadhuis van Barcelona (2015-2019) - n2: - quote: >- - Met de implementatie van Decidim in Som Energia hebben we een kinder ruimte voor deelname gecreëerd. We hebben het gereedschap in 2018 vrijgegeven Het organiseren van de Algemene Vergadering van de coöperatieve en maanden later hebben we gedebatteerd over de herontwerp van afbeeldingen en de gezamenlijke ontwikkeling van de School van Som Energia, naast andere participatieve processen. In een paar maanden hebben meer dan 3.500 deelnemers zich geregistreerd, 5 participatieprocessen, Bij de laatste stemming in de Algemene Vergadering zijn er drie vergaderingen actief en hebben meer dan 1300 stemmen gekregen. - org: Som Energie - n3: - quote: >- - Het digitaal platform voor Decide Meľrida was een kans die als nooit tevoren openstond voor de medezeggenschapsmechanismen van de burgers voor de uitwerking van het gezamenlijk ontwikkelingsplan van Megharida 2018-2021. We hadden meer dan 3.000 interacties voor burgers, waaronder voorstellen, opmerkingen, suggesties en steun om een zo groot mogelijke consensus te bereiken over wat het beste is voor onze stad. Ongetwijfeld zal het Beslissende Me+unnamed@@0 rida platform onze bondgenoot blijven bij het tot een steeds meer participatieve samenleving maken van Mespeak, rida. - org: Gemeentelijke president van Meł rida YucataStrafn, Mexico. Staatraad van MeCherrida Yucata000000n, Mexico - n4: - quote: >- - Wat we waarderen is dat het is gebouwd met democratie in het achterhoofd, en daarom is democratie een grote focus. Democratische beginselen als aansprakelijkheid, gelijkheid en transparantie vormen de kern van het ontwerp. - org: Stad van Helsinki - n5: - quote: >- - Bijna elk participatief proces dat aan tafel is gekomen, hebben we het kunnen oplossen met Decidim's zakelijke regels. Als instrument is het een zeer sterk instrument. Het deel dat voor ons echter het sterkste en belangrijkste lijkt, is de gemeenschap, zowel ontwikkelaars als degenen die het gebruiken voor participatieprocessen. Door samen met hen te leven hebben we waardering voor de uitdagingen die gepaard gaan met de invoering van participerende democratie in de echte wereld. - org: Open regering van Mexico City - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Veel gestelde vragen - q01: - question: Wat is Decidim? - answer: >- - Decidim is een gratis open source participatief democratisch platform voor steden en organisaties. Maar Decidim is meer dan een digitaal platform: het is een gratis en open project en infrastructuur met code, documentatie, ontwerp, trainingen, een juridisch kader, gezamenlijke interfaces, gebruikers- en faciliteringsgemeenschappen, en een gemeenschappelijke visie. - q02: - question: Wie gebruikt momenteel Decidim? - answer: >- - Het wordt momenteel gebruikt door steden en organisaties. Sterker nog, elke groep mensen kan er gebruik van maken, of het nu gaat om een NGO, universiteit, vakbond, coöperatieve verenigingen, enzovoorts. Bekijk de [complete lijst van actieve instanties](/usedby/). - q03: - question: Wat kan een Decidim administrator doen? - answer: >- - Gemakkelijk participatieve processen configureren. Wilt u een strategisch plan maken? Of over nieuwe regelingen, of over een nieuw plein of een openbaar gebouw om het algemeen welzijn te bereiken? Dankzij Decidim kun je deelnameruimtes configureren (initiatieven, assemblies, processen of raadplegingen) en ze verrijken via de meerdere beschikbare componenten (individuele vergaderingen, enquêtes, voorstellen, stemmen, follow-up van resultaten, commentaren en nog veel meer). - q04: - question: Wat kan een deelnemer (gebruiker) van Decidim doen? - answer: >- - Decidim maakt het voor duizenden mensen mogelijk om zich democratisch te organiseren door voorstellen te doen, bij openbare vergaderingen aanwezig te zijn het stimuleren van besluitvormingsbesprekingen, het door middel van verschillende vormen van stemmen besluiten en het toezicht op de tenuitvoerlegging ervan. - q05: - question: Heb je een Demo? Ik wil Decidim nu gebruiken, zonder het te installeren, om te zien hoe het werkt. - answer: 'Ja, we hebben een [online demo](/demo).' - q06: - question: Hoe vaak wordt het platform bijgewerkt? - answer: >- - We brengen ongeveer elke maand een nieuwe versie uit. Bekijk de [versie van versies](https://github.com/decidim/decidim/releases). - q07: - question: Wat moet ik Decidim installeren? - answer: >- - Het installeren van Decidim is gemakkelijk, maar je hebt wat kennis en technische vereisten nodig. Zie de [documentatie voor het installeren van Decidim](https://docs.decidim.org/en/install/). - q08: - question: Waar kan ik de routekaart van het project en de geplande functies vinden? - answer: Je kunt de [roadmap van nieuwe functies van het project vinden op GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Wat betekent Decidim voor gratis, "libre" en open source?' - answer: >- - Decidim is een platform voor burgerparticipatie door de mensen en voor mensen. De broncode is open en kan door iedereen worden geïnspecteerd, aangepast en verbeterd. De Decidim-software wordt gedekt door de [AGPL-licentie](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Dat betekent dat u het kunt gebruiken, wijzigen en herdistribueren van afgeleide versies ervan zolang u de AGPL-licentie respecteert. - q10: - question: >- - Ik heb ideeën voor nieuwe verbeteringsfuncties. Ik wil een beter begrip van het project. Wat kan ik doen? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Ik heb veel twijfels, van welke aard dan ook... waar kan ik ze vragen of ze oplossen? - answer: >- - De beste manier om je twijfels snel op te lossen is via de Metadecidim community. Voer nu deel uit van het [Support Forum](https://meta.decidim. rg/processen/supportforum?locale=en) en kijk of uw vraag bestaat of dat deze is beantwoord en voer het vervolgens in om vragen te stellen. Als je jouw probleem in deze ruimte niet kunt oplossen, is het misschien tijd om contact met ons op te nemen via het [contactformulier](/contact). - q12: - question: Is er een tutorial om te beginnen met het instellen? - answer: >- - Je kunt de nieuwste versie van onze admin handleiding bekijken in de [Documentatie sectie](https://docs.decidim.org). - q13: - question: Wat is het sociale contract? - answer: >- - Zo noemen we onze Code van Democratische Garantie en Democratische Samenwerking. Alle leden van de gemeenschap moeten de [Social Contract](http://decidim.org/contract). - q14: - question: Wat zijn de verschillen met het Consul Project / Besluit Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Wat is de Metadecidim gemeenschap? - answer: >- - [Metadecidim](http://meta.decidim.org) is de gemeenschap van Decidim die samenwerkt in het ontwerp van het platform en de constructie van het Decidim project. We komen regelmatig bijeen via de [SOM (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) en de [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Ga naar [meta.decidim.org](http://meta.decidim.org) om de gesprekken van dichtbij te volgen en als je lid wilt worden van de gemeenschap. We zouden graag ;-) - q16: - question: Kan ik mij aansluiten bij de Metadecidim gemeenschap, zelfs als ik niet in Barcelona woont? - answer: >- - Decidim is een project dat geboren is in Barcelona en daarom is er een sterke territoriale band met deze stad. Maar ja, je kunt online samenwerken, door middel van participatieve processen, debatten, enzovoort.... dat we Metadecidim aanbieden. Je zou wel eens naar Barcelona kunnen komen :) - q17: - question: We willen een formele samenwerkingsakkoord sluiten. Zijn er sjablonen die we kunnen gebruiken? - answer: Ja, we hebben sjablonen voor het formaliseren van samenwerkingsakkoorden. [Neem contact met ons op](/contact). - q18: - question: Welke leden accepteer je in de Metadecidim gemeenschap? - answer: Iedereen die te goeder trouw is en zich correct opstelt ten aanzien van de democratische samenwerking. - q19: - question: Verbiedt u gratis installatie aan organisaties zonder winstoogmerk? - answer: >- - Ja, alleen als je een op Barcelona gebaseerde organisatie bent. Stuur ons een bericht en u zult geholpen worden door het Directoraat Onderzoek. Ontwikkeling en innovatie van de ruimte van burgerschapsrechten, participatie en transparantie van de gemeenteraad van Barcelona. - q20: - question: Steunt u instellingen? - answer: >- - Ja, maar u moet geduldig zijn. Er zijn veel instellingen die nu Decidim willen gebruiken en wij helpen hen stap voor stap. [Neem contact met ons op](/contact) voor elke vraag en we zullen je zo snel mogelijk antwoorden. - q21: - question: Wat is Decidim Associatie? - answer: >- - De "Asociacion de Software Libre Decidim" (Het Decidim Free Software Association) is een democratische associatie voor het bestuur van de Decidimgemeenschap. - q22: - question: Hoe krijg ik meer informatie over de Decidim Associatie? - answer: >- - In de [algemene assemblage van de Decidim Associatie](https://meta.decidim. rg/assemblies/generaal-assembly-associatie) kunt u meer info vinden bij ons, de activiteiten van de vergaderingen volgen en relevante informatie controleren (statuten, juridische overeenkomsten, de interne regelgevingen) - q23: - question: Hoe kan ik lid worden van de Decidim Association? - answer: >- - Nu kunnen de deelnemers aan het project partners zijn. [Hier leggen we gedetailleerd uit hoe je het moet doen](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Wanneer is de Decidim Association geboren? - answer: >- - De Associacio## [Decidim is gebaseerd op 16, 2019 in een buitengewone vergadering van de gemeenschap](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), met de goedkeuring van de organisatie statuten. + title: Onderdelen + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Gratis en veilige technologie.
Met alle democratische garanties.
Herprogrammeren van democratie is nu mogelijk met Decidim. + subheading: Decidim is een digitaal platform
voor deelname van burgers + subhero: + cta: Explore all features + feature1: Strategische
planning + feature2: Participatief
budgetteren + feature3: Initiatieven en
burgeroverleg + feature4: Participatieve
processen + feature5: Groepen + feature6: Netwerk
communicatie + intro: Decidim helpt burgers, organisaties en publieke instellingen zich op elke schaal democratisch te organiseren. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Ze gebruiken al Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: blog + close_menu: Close menu + code: Code + community: Gemeenschap + contact: Contact + contract: Sociale Contract + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentatie + faqs: FAQs + features: Faciliteiten + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: modules + partners: Cooperating entiteiten + partnership-policy: Partnership policy + press: Indrukken + privacy-policy: Privacy policy + text: Navigatie + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in gebruik + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/nl" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Stadhuis van Barcelona (2015-2019) + quote: Dankzij Decidim zijn we er in Barcelona in geslaagd samen met de burgers een strategisch stadsplan op te stellen. In 2016 hebben we het gezamenlijk actieplan in gang gezet in de vorm van een participerend proces door middel van Decidim Barcelona. Op dit moment bevat dit plan bijna zevenduizend burgervoorstellen. Een van de voordelen van het gebruik van dit platform is dat je te allen tijde de stand van zaken bij de tenuitvoerlegging van de goedgekeurde voorstellen kunt controleren. + n2: + org: Som Energie + quote: Met de implementatie van Decidim in Som Energia hebben we een kinder ruimte voor deelname gecreëerd. We hebben het gereedschap in 2018 vrijgegeven Het organiseren van de Algemene Vergadering van de coöperatieve en maanden later hebben we gedebatteerd over de herontwerp van afbeeldingen en de gezamenlijke ontwikkeling van de School van Som Energia, naast andere participatieve processen. In een paar maanden hebben meer dan 3.500 deelnemers zich geregistreerd, 5 participatieprocessen, Bij de laatste stemming in de Algemene Vergadering zijn er drie vergaderingen actief en hebben meer dan 1300 stemmen gekregen. + n3: + org: Gemeentelijke president van Meł rida YucataStrafn, Mexico. Staatraad van MeCherrida Yucata000000n, Mexico + quote: Het digitaal platform voor Decide Meľrida was een kans die als nooit tevoren openstond voor de medezeggenschapsmechanismen van de burgers voor de uitwerking van het gezamenlijk ontwikkelingsplan van Megharida 2018-2021. We hadden meer dan 3.000 interacties voor burgers, waaronder voorstellen, opmerkingen, suggesties en steun om een zo groot mogelijke consensus te bereiken over wat het beste is voor onze stad. Ongetwijfeld zal het Beslissende Me+unnamed@@0 rida platform onze bondgenoot blijven bij het tot een steeds meer participatieve samenleving maken van Mespeak, rida. + n4: + org: Stad van Helsinki + quote: Wat we waarderen is dat het is gebouwd met democratie in het achterhoofd, en daarom is democratie een grote focus. Democratische beginselen als aansprakelijkheid, gelijkheid en transparantie vormen de kern van het ontwerp. + n5: + org: Open regering van Mexico City + quote: Bijna elk participatief proces dat aan tafel is gekomen, hebben we het kunnen oplossen met Decidim's zakelijke regels. Als instrument is het een zeer sterk instrument. Het deel dat voor ons echter het sterkste en belangrijkste lijkt, is de gemeenschap, zowel ontwikkelaars als degenen die het gebruiken voor participatieprocessen. Door samen met hen te leven hebben we waardering voor de uitdagingen die gepaard gaan met de invoering van participerende democratie in de echte wereld. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Bedankt dat je contact met ons hebt opgenomen, we nemen snel contact met je op. + title: Bedankt voor uw e-mail + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/no.yml b/locales/no.yml index fb0db3cb..bc76d992 100644 --- a/locales/no.yml +++ b/locales/no.yml @@ -1,448 +1,589 @@ -"no": - path: '/no' - activeLang: 'Engelsk' - nav: - text: 'Navigasjon' - demo: 'Demonstrasjon' - community: 'Fellesskap' - contract: 'Sosial Kontrakt' - code: 'Kode' - docs: - title: 'Dokumentasjon' - path: 'https://docs.decidim.org/' - blog: 'Blogg' - features: 'Funksjoner' - faqs: 'OSS''er' - contact: 'Kontakt' - used_by: 'Dekidim i bruk' - partners: 'Samarbeidsenheter' - modules: 'Moduler' - press: 'Presse' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' +--- +'no': + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Bli med i vår samtale' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest er et intenst 3-dagers program av aktiviteter som er viet Decidim prosjektet. deltakerdemokrati og åpen kildekode verktøy for kollektiv etterretning i tid av Global Democracy.' - index: - hero: - heading: 'Fri åpen kildekode som deltar demokrati for byer og organisasjoner' - subheading: 'Dekidim er en digital plattform
for medborgernes deltakelse' - intro: 'Gratis og sikker teknologi.
Med alle demokratiske garantier.
Reprogrammering demokrati er nå mulig med Decidim.' - video: - play: 'Spill av video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Lukk video' - subhero: - intro: 'Dekidim hjelper borgere, organisasjoner og offentlige institusjoner selv å organisere demokratisk i alle skala.' - feature1: 'Strategisk
planlegger' - feature2: 'Deltagende
budsjettering' - feature3: 'Initiativer og
borgerkonsultasjoner' - feature4: 'Participative
prosesser' - feature5: 'Forsamlinger' - feature6: 'Nettverk
kommunikasjon' - used_by: - title: 'They are already using Decidim' - cta: 'Se alle' - cta: - title: 'begynn å bruke Decidim i dag' - button: - code: 'Kode for Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Demo på nett - p1: Spill rundt og utforsk fritt Decidim-plattformen med vår nettbaserte demo. - p2: Dekidim er opp og kjører på flere forekomster som du kan besøke og utforske Decidim Barcelona ved Barcelona byen eller du kan besøke Gavaephal og L'Sykehuset. Men dette er virkelige forekomster hvor du virkelig ikke kan spille fritt rundt omkring, som du kanskje ikke er statsborger av disse kommunene, og du kan ikke utforske disse områdene som en admin. - p3: Hvis du vil gå videre, er du velkommen til å teste Decidim på vår Decidim Demo Site (courtesy of our developers at aLabs). Angi demo området og fritt utforske potensialet av dekidim og dens egenskaper. - p4: Du kan logge inn som Admin (brukernavn "admin@example.org" og passord "decidim123456"). - button: Elektronisk demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadesidim, vårt samfunn' - subtitle: 'Et demokratisk samfunn som leder prosjektet Decidim i alle sine dimensjoner' - intro: 'Metadesidim er et fellesskap som samarbeider om utforming av plattformen og byggingen av prosjektet. Sammen kan vi utforme og utvikle nye funksjoner og rapportere problemer for kontinuerlig forbedring av plattformen.' - cta: 'Kom i gang' - features: - title: 'Foreslå nye funksjoner' - subtitle: 'Å utforme og utvikle desidim hos alle' - text: 'Du kan skape debatter om dekidiums fremtid eller foreslå nye funksjoner eller forbedringer. Forslag kan få påtegninger og kommentarer, for eksempel den interessen de vekker for samfunnet og deres utvikling. forslag som har en sponsor (for eksempel byråd eller andre enheter), Ansvaret for å søke og framskaffe nødvendige ressurser for å gjennomføre utviklingen av disse, vil være nyttig i prosjektet.' - cta: 'Angi og delta nå' - bug: - title: 'Rapporter feil' - subtitle: 'Samarbeid for progressiv forbedring' - text: 'Hver nye utgivelse av desidim inneholder nye funksjoner og brukervennlighetsforbedringer, men ikke alt fungerer ved første og feilene kan komme til syne. Her kan du rapportere feil du finner og hjelpe utviklerne med å fikse dem raskt.' - cta: 'Angi og delta nå' - img_alt: 'Decidim Community Photo at Metadecidim Meeting 2016' - timeline: - title: 'Samarbeidende utforming av funksjoner' - step1: - title: 'Nytt forslag' - text: 'Funksjonell beskrivelse' - step2: - title: 'Validert forslag' - text: 'Teknisk og teknisk validering' - step3: - title: 'Planlagte forslag' - text: 'Ressurser for utvikling (delt eller ikke)' - step4: - title: 'Problem' - text: 'Teknisk beskrivelse' - step5: - title: 'Trekk forespørsel' - text: 'Utviklet kode' - step6: - title: 'Funksjonalitet utført' - text: 'Førlig på neste versjon' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Kom i gang + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadesidim er et fellesskap som samarbeider om utforming av plattformen og byggingen av prosjektet. Sammen kan vi utforme og utvikle nye funksjoner og rapportere problemer for kontinuerlig forbedring av plattformen. + subtitle: Et demokratisk samfunn som leder prosjektet Decidim i alle sine dimensjoner + title: Metadesidim, vårt samfunn contact: - title: Kontakt oss - bot_field: "Fyll ikke ut dette hvis du er mennesket:" - name: Navn - entity: Enhet + bot_field: 'Fyll ikke ut dette hvis du er mennesket:' email: Epost - subject: Subject message: Melding + name: Navn privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Send - thanks: - title: Takk for din e-post - message: Takk for at du kontakter oss, vi kommer snart tilbake til deg. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Kontakt oss + demo: + button: Elektronisk demo + p1: Spill rundt og utforsk fritt Decidim-plattformen med vår nettbaserte demo. + strong: Try Online + title: Demo på nett + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Ofte stilte spørsmål + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funksjoner' - intro: '

Du kan bruke Decidim i en offentlig eller privat organisasjon, med hundrevis eller tusenvis av potensielle deltakere, slikt som byråd, en forening, et universitet, en NGO, en fagforening, et nabolag, kollektivt eller samarbeidet...

Takket være å forkaste deg vil du kunne konfigurere lokaler for deltakelse (initiativ, forsamlinger, prosesser eller konsultasjoner) og rike dem gjennom flere tilgjengelige komponenter (møter møter i ansiktet, spørreundersøkelser, forslag, stemme, oppfølging av resultater, kommentarer og mange flere).

' - list: - n1: - title: 'Deltaker
budsjett' - content: 'Kommisjonen analyserer forslaget og fremmer en ny måte å fordele felles ressurser på.' - n2: - title: 'Borgernes initiativer
og konsultasjoner' - content: 'Gi samfunnet ditt makt ved hjelp av borgerinitiativ. Gi lokalbefolkningen relevant stemmegivning gjennom konsultasjoner.' - n3: - title: 'Kraften
i et politisk nettverk' - content: 'It takes deliberation, cooperation and decision to a massive dimension, with thousands of people participating in real time.' - n4: - title: 'Et demokratisk
og fleksibelt system' - content: 'Takket være dens modulære arkitektur og skalerbare logikk, kan du konfigurere et kraftig system med demokratisk styring i alle typer organisasjoner.' - n5: - title: 'Vi tar demokrati
veldig alvorlig' - content: 'Avtale sikrer innsyn, sporbarhet og integritet til informasjon som aldri før. Den gir sikkerhet, personvern og konfidensialitet for alle deltakerne.' - n6: - title: "Det er ditt.
Del det. Forbedre det." - content: 'En plattform designet helt med gratis programvare, åpent og samarbeidende innhold takket være fellesskapets Metadesidim.' - cta: - features: 'Se alle funksjoner' - values: 'Gå til sosial kontrakt' + intro: "

Du kan bruke Decidim i en offentlig eller privat organisasjon, med hundrevis eller tusenvis av potensielle deltakere, slikt som byråd, en forening, et universitet, en NGO, en fagforening, et nabolag, kollektivt eller samarbeidet...

Takket være å forkaste deg vil du kunne konfigurere lokaler for deltakelse (initiativ, forsamlinger, prosesser eller konsultasjoner) og rike dem gjennom flere tilgjengelige komponenter (møter møter i ansiktet, spørreundersøkelser, forslag, stemme, oppfølging av resultater, kommentarer og mange flere).

" page: feature1: - title: 'Deltakende prosesser' - subtitle: 'å degradere felles utfordringer, steg for steg' - text: >- - Prosesser er et område som gjør det mulig å opprette, aktivere/deaktivere og administrere ulike deltakende prosesser. Det skilles fra andre rom ved at de er bygd opp i forskjellige faser der alle komponentene kan innlemmes. Eksempler på deltakerprosesser er en valgprosess for medlemmer av en komité, deltaker budsjettering, en strategisk planleggingsprosess, samarbeidsskriving av en forskrift eller en norm, utforming av en bydel eller produksjon av en plan for offentlig politikk. - feature2: - title: 'Forsamlinger' - subtitle: 'kraften til kollektiv egenorganisasjon' - text: >- - Er det plass som gir mulighet til å sette beslutningsorganer eller grupper (råd, arbeidsgrupper, utvalg o.l. som møter opp periodisk, beskriver komposisjonen, oppføring og geolokalisering av møtene, det tas hensyn til å ta del i dem (for eksempel ved at det skal være mulig å delta i konstruksjonens plasseringsevne, og dermed delta i dem Å legge frem saker på dagsordenen eller kommentere forslagene og beslutningene som treffes av instansen). - feature3: - title: 'Konsultasjoner' - subtitle: 'retten til å beslutte med alle demokratiske garantier' - text: >- - Konsultasjoner er et rom som gjør det mulig å samordne referanser, utløse diskusjoner og debatter, få framlagt stemmeresultater; den kan knyttes til et sikkert e-valgsystem. - feature4: - title: 'Initiativer' - subtitle: "hvordan alle setter sin agenda, for alles rekkevidde" - text: >- - Initiativer er et rom som gjør det mulig for deltakerne å skape initiativ, definere sine baner og mål, samle påtegninger, samtaler, debatter og formidle initiativer og definere møtepunkter der det kan hentes inn signaturer fra deltakere eller debatter åpnet for andre medlemmer av organisasjonen. - feature5: - title: 'Forslag' - subtitle: 'dine ideer i detalj' - text: >- - Med komponenten forslag kan brukeren opprette et forslag ved hjelp av opprettelsesveiviseren, sammenlign det med de eksisterende, offentliggjøre den på plattformen og omfatte tilleggsopplysninger, for eksempel posisjonering eller vedlagte dokumenter og bilder. Denne komponenten lar deg også navigere, filtrere og samhandle med et sett med forslag. I tillegg kan du lage felles forslag. - feature6: - title: 'Stemming' - subtitle: 'bestemme stemmen din' - text: >- - Stemmegivningen tilbyr organisasjoner muligheten til å aktivere ulike stemme- eller støttesystemer rundt forslag: ubegrenset, begrenset til en gitt terskelverdi, vektet, kostnadsbasert osv. - feature7: - title: 'Resultater' - subtitle: 'ingen forslag uten svar' - text: >- - Resultatkomponenten brukes til å gjøre om forslag til resultater og gi offisielle svar på aksept eller avvisning, sammenslåing av ulike forslag til ett felles resultat. - feature8: - title: 'Ansvarlighet' - subtitle: 'gjennomsiktighet fra begynnelsen til slutten' - text: >- - Den ansvarlige komponenten gir mulighet for å dele resultater i prosjekter, definere og anvende fremdriftsstatus rundt implementeringen, i tillegg til å vise omfanget av resultatenes iverksettelse gruppert etter kategorier og omfang. - feature9: - title: 'Møter' - subtitle: 'Å møte og ikke gå glipp av noe' - text: >- - Møtekomponenten tilbyr organisasjoner og deltakere muligheten til å samle møter, finne sted og tid, registeret og begrense deltakerne, definerer strukturen til og innholdet i møtet og publiserer også protokollen og forslaget som følger. + subtitle: å degradere felles utfordringer, steg for steg + text: Prosesser er et område som gjør det mulig å opprette, aktivere/deaktivere og administrere ulike deltakende prosesser. Det skilles fra andre rom ved at de er bygd opp i forskjellige faser der alle komponentene kan innlemmes. Eksempler på deltakerprosesser er en valgprosess for medlemmer av en komité, deltaker budsjettering, en strategisk planleggingsprosess, samarbeidsskriving av en forskrift eller en norm, utforming av en bydel eller produksjon av en plan for offentlig politikk. + title: Deltakende prosesser feature10: - title: 'Deltakende tekster' - subtitle: 'å analysere, syntetiser og bygge på felles' - text: >- - Deltakertekstkomponenten kan brukes til å konvertere tekstdokumenter over til ulike forslag eller resultater og vice versa, to compose and display a unified text based on a collection of proposals or results. + subtitle: å analysere, syntetiser og bygge på felles + text: Deltakertekstkomponenten kan brukes til å konvertere tekstdokumenter over til ulike forslag eller resultater og vice versa, to compose and display a unified text based on a collection of proposals or results. + title: Deltakende tekster feature11: - title: 'Konferanse' - subtitle: 'Der store arrangementer blir premiert' - text: >- - Konferansekomponenten gjør det mulig for en organisasjon å opprette et nettsted for et stort arrangement ved å delta på en rekke forhåndsdefinerte møter (chat, workshops etc. , sette sammen et felles program og administrere deltakere. + subtitle: Der store arrangementer blir premiert + text: Konferansekomponenten gjør det mulig for en organisasjon å opprette et nettsted for et stort arrangement ved å delta på en rekke forhåndsdefinerte møter (chat, workshops etc. , sette sammen et felles program og administrere deltakere. + title: Konferanse feature12: - title: 'Undersøkelser' - subtitle: 'Fordi fellesskapets oppfatning av saken din' - text: >- - Undersøkelseskomponenten kan brukes til å utforme og publisere undersøkelser og til å vise og laste ned sine resultater. + subtitle: Fordi fellesskapets oppfatning av saken din + text: Undersøkelseskomponenten kan brukes til å utforme og publisere undersøkelser og til å vise og laste ned sine resultater. + title: Undersøkelser feature13: - title: 'Sortering' - subtitle: 'Likestilling og rettferdighet for tilfeldighet' - text: >- - Sorteringskomponenten tillater å velge en rekke forslag (f.eks. kandidater til jury) med tilfeldig, men likevel reproduserbar, prosedyrer som garanterer for ikke-partisk og ensartet fordeling. + subtitle: Likestilling og rettferdighet for tilfeldighet + text: Sorteringskomponenten tillater å velge en rekke forslag (f.eks. kandidater til jury) med tilfeldig, men likevel reproduserbar, prosedyrer som garanterer for ikke-partisk og ensartet fordeling. + title: Sortering feature14: - title: 'Kommentarer' - subtitle: 'Bygge en kollektiv informasjon' - text: >- - Kommentarkomponenten gjør det mulig for brukerne å legge til kommentarer, identifisere kommentaren som er til favoritt. mot eller nøytral i forhold til det kommenterte objektet og stemmekommentarene, svare på dem og motta varsel om svar. + subtitle: Bygge en kollektiv informasjon + text: Kommentarkomponenten gjør det mulig for brukerne å legge til kommentarer, identifisere kommentaren som er til favoritt. mot eller nøytral i forhold til det kommenterte objektet og stemmekommentarene, svare på dem og motta varsel om svar. + title: Kommentarer feature15: - title: 'Sider og blogger' - subtitle: 'Ditt samfunn, informert og oppdatert' - text: >- - Sidens komponent brukes til å opprette informative sider med rik tekstformatering, innebygde bilder og videoer. Bloggkomponenten gjør det mulig å opprette innlegg eller nyheter, og å orientere dem kronologisk. + subtitle: Ditt samfunn, informert og oppdatert + text: Sidens komponent brukes til å opprette informative sider med rik tekstformatering, innebygde bilder og videoer. Bloggkomponenten gjør det mulig å opprette innlegg eller nyheter, og å orientere dem kronologisk. + title: Sider og blogger feature16: - title: 'Varsler' - subtitle: 'Personlig informasjon om interessante innhold' - text: >- - Dekidim lar deg spore hvilken som helst plass eller komponent til å motta oppdateringer hver gang de skjer. + subtitle: Personlig informasjon om interessante innhold + text: Dekidim lar deg spore hvilken som helst plass eller komponent til å motta oppdateringer hver gang de skjer. + title: Varsler feature17: - title: 'Nyhetsbrev' - subtitle: 'Enkel, men kraftig' - text: >- - Nyhetsbrevkomponenten gjør det mulig å sende e-post til alle som er registrert på plattformen, eller i større grad selektivt, til de som deltar i et bestemt område. + subtitle: Enkel, men kraftig + text: Nyhetsbrevkomponenten gjør det mulig å sende e-post til alle som er registrert på plattformen, eller i større grad selektivt, til de som deltar i et bestemt område. + title: Nyhetsbrev + feature2: + subtitle: kraften til kollektiv egenorganisasjon + text: Er det plass som gir mulighet til å sette beslutningsorganer eller grupper (råd, arbeidsgrupper, utvalg o.l. som møter opp periodisk, beskriver komposisjonen, oppføring og geolokalisering av møtene, det tas hensyn til å ta del i dem (for eksempel ved at det skal være mulig å delta i konstruksjonens plasseringsevne, og dermed delta i dem Å legge frem saker på dagsordenen eller kommentere forslagene og beslutningene som treffes av instansen). + title: Forsamlinger + feature3: + subtitle: retten til å beslutte med alle demokratiske garantier + text: Konsultasjoner er et rom som gjør det mulig å samordne referanser, utløse diskusjoner og debatter, få framlagt stemmeresultater; den kan knyttes til et sikkert e-valgsystem. + title: Konsultasjoner + feature4: + subtitle: hvordan alle setter sin agenda, for alles rekkevidde + text: Initiativer er et rom som gjør det mulig for deltakerne å skape initiativ, definere sine baner og mål, samle påtegninger, samtaler, debatter og formidle initiativer og definere møtepunkter der det kan hentes inn signaturer fra deltakere eller debatter åpnet for andre medlemmer av organisasjonen. + title: Initiativer + feature5: + subtitle: dine ideer i detalj + text: Med komponenten forslag kan brukeren opprette et forslag ved hjelp av opprettelsesveiviseren, sammenlign det med de eksisterende, offentliggjøre den på plattformen og omfatte tilleggsopplysninger, for eksempel posisjonering eller vedlagte dokumenter og bilder. Denne komponenten lar deg også navigere, filtrere og samhandle med et sett med forslag. I tillegg kan du lage felles forslag. + title: Forslag + feature6: + subtitle: bestemme stemmen din + text: 'Stemmegivningen tilbyr organisasjoner muligheten til å aktivere ulike stemme- eller støttesystemer rundt forslag: ubegrenset, begrenset til en gitt terskelverdi, vektet, kostnadsbasert osv.' + title: Stemming + feature7: + subtitle: ingen forslag uten svar + text: Resultatkomponenten brukes til å gjøre om forslag til resultater og gi offisielle svar på aksept eller avvisning, sammenslåing av ulike forslag til ett felles resultat. + title: Resultater + feature8: + subtitle: gjennomsiktighet fra begynnelsen til slutten + text: Den ansvarlige komponenten gir mulighet for å dele resultater i prosjekter, definere og anvende fremdriftsstatus rundt implementeringen, i tillegg til å vise omfanget av resultatenes iverksettelse gruppert etter kategorier og omfang. + title: Ansvarlighet + feature9: + subtitle: Å møte og ikke gå glipp av noe + text: Møtekomponenten tilbyr organisasjoner og deltakere muligheten til å samle møter, finne sted og tid, registeret og begrense deltakerne, definerer strukturen til og innholdet i møtet og publiserer også protokollen og forslaget som følger. + title: Møter + subtitle: For democratic organizations and collectives of any size and kind. + title: Funksjoner type1: - title: 'Fellesskap for deltakelse' - subtitle: 'For deltakerne å komme med forslag og treffe beslutninger' + title: Fellesskap for deltakelse type2: - title: 'Komponenter' - subtitle: 'For deltakere og rom å samhandle' - other: - subtitle: 'Tror å kombinere komponentene. Design og distribuere et sterkt demokratisk system på en enkel måte og tilpasse det til organisasjonens behov' - cta: - title: 'Oppdag hvordan desidim virker dybdevis' - button: 'Funksjoner og funksjoner' - partners: - notice: Samarbeidsorganenes logoer er er immaterielle rettigheter for sine respektive rettighetshavere. De faller ikke under Creative Commons By-SA lisensen resten av nettstedets innhold er lisensiert med. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Navn - type: - community: Fellesskap - auth: Autorisasjon - official: Offentlig - used_by: - explain: Disse byene, regionene og organisasjonene bruker allerede desidim - type: - city: Byer - region: Regioner - organizations: Organisasjoner - testimonials: - n1: - quote: >- - Takket være Decidim, i Barcelona har vi klart å medutarbeide en strategisk byplan sammen med borgerne. I 2016 innførte vi den kommunale handlingsplanen i form av en deltakende prosess gjennom Decidim Barcelona. Denne planen omfatter i dag nærmere 7 tusen forslag. En av fordelene ved å bruke denne plattformen er at du til enhver tid kan overvåke tilstanden til de godkjente forslagene. - org: Barcelona City Hall (2015-2019) - n2: - quote: >- - Med implementeringen av dekidim i Som Energia har vi skapt et barnehagerom for deltakelse. Vi la ut verktøyet i 2018, vertskap for generalforsamlingen i samarbeidet, og månedene senere debatterte vi Image Redesign and collaborative development of the School of Som Energia, blant andre deltakende prosesser. I løpet av noen måneder har mer enn 3500 deltakere registrert seg, 5 deltakerprosesser, 3 avtaler som opererer med mer enn 1300 stemmer i forrige generalforsamling. - org: Som Energia - n3: - quote: >- - Bestemmelsesmetoden for digital plattform var en mulighet som aldri ble åpnet før borgernes deltakelsesmekanismer for utarbeidelse av den kommunale utviklingsplanen for Me∙rida 2018-2021. Vi hadde mer enn 3000 borgerinteraksjoner med forslag, kommentarer. forslag og støtte som oppnår høyest mulig enighet om hva som er best for vår by. Beslutningsplattformen «skjev» vil uansett fortsette å være vårt forhold til å gjøre Meephalrida til et stadig appativ samfunn. - org: Kommunepresident i Me∙rida Yucatañn, Mexico. Kommunestyret Meephalrida Yucataεn, Mexico - n4: - quote: >- - Det vi setter pris på, er at det er med demokrati i tankene, og derfor er demokratiet et et stort fokus. Demokratiske prinsipper som ansvarlighet, likestilling og åpenhet står i kjernen av designet. - org: Byen Helsinki - n5: - quote: >- - Nesten hver deltakerprosess som er kommet til vårt bord, har vi vært i stand til å løse den ved hjelp av Decidims forretningsregler. Som et verktøy er det et veldig sterkt virkemiddel. Den delen som fremstår som sterkest og viktigst for oss, er imidlertid fellesskapet, både de som utvikler og de som bruker det på deltakende prosesser. Samspillet med dem har gjort at vi setter pris på utfordringene med å gjennomføre deltakende demokrati i den virkelige verden. - org: Åpne myndigheter i Mexico by - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Ofte stilte spørsmål - q01: - question: Hva er Decidim? - answer: >- - Dekidim er en gratis åpen kilde som deltaker demokratiplattform for byer og organisasjoner. Dekidim er mer enn en digital plattform, men det er et felles fritt og åpent prosjekt og infrastruktur som involverer kode, dokumentasjon, prosjektering, opplæringskurs, en juridisk rammeverk, samarbeidsvinduer, bruker- og tilretteleggingssamfunn og en felles visjon. - q02: - question: Hvem bruker Decidim? - answer: >- - Den brukes for tiden av byer og organisasjoner. Faktisk kan alle grupper av mennesker benytte seg av den, enten dette er NGO, universitet, fagforening, samarbeidsledelse eller naboforening. Sjekk [komplett liste over aktive instanser](/usedby/). - q03: - question: Hva kan en Decidim administrator gjøre? - answer: >- - Enkelt konfigurere deltakende prosesser Vil du lage en strategisk plan? Eller diskutere nye reguleringer? Eller diskutere et nytt kvadrat, eller et offentlig bygg for å oppnå det felles godset? Takket være å dekidiere vil du kunne konfigurere deltagerområder (initiativ, forsamlinger, prosesser eller konsultasjoner) og rike dem gjennom flere tilgjengelige komponenter (møter møter i ansiktet, spørreundersøkelser, forslag, stemme, oppfølging av resultater, kommentarer og mange flere). - q04: - question: Hva kan en deltaker (bruker) av dekidim gjøre? - answer: >- - Desidim gjør det mulig for tusenvis av mennesker å organisere seg demokratisk ved å lage forslag, delta på offentlige møter, fremme beslutningsdiskusjoner, beslutte gjennom ulike stemmeformer og overvåking av iverksettingen av beslutninger. - q05: - question: Har du en demobel? Jeg vil bruke Dekidim nå, uten å installere den for å se hvordan den virker. - answer: 'Ja, vi har en [online demo](/demo).' - q06: - question: Hvor ofte blir plattformen oppdatert? - answer: >- - Vi lanserer en ny versjon ca. hver måned. Se [record of versions](https://github.com/decidim/decidim/releases). - q07: - question: Hva må jeg installere Decidim? - answer: >- - Installering av Decim er enkel, men du trenger litt kunnskap og tekniske krav. Se [dokumentasjon for installasjon av Decidim](https://docs.decidim.org/en/install/). - q08: - question: Hvor finner jeg prosjektveikartet og de planlagte funksjonene? - answer: Du kan finne [roadmap for nye funksjoner til prosjektet på GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Hva betyr det at desidim er gratis og "libre" og åpen kildekode?' - answer: >- - Dekidim er en plattform for medborgernes deltakelse fra menneskene og befolkningen. Kildekoden er åpen og kan inspiseres, endres, og forbedres av hvem som helst. Dekidim programvare er dekket av [AGPL lisens](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Det betyr at du kan bruke den, endre den og redistribuere avledede versjoner av den så lenge du respekterer AGPL-lisensen. - q10: - question: >- - Jeg har ideer til nye forbedringsfunksjoner. Jeg vil få en bedre forståelse av prosjektet. Hva kan jeg gjøre? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Jeg har mange tviler, av alle sorter...hvor kan jeg spørre dem eller løse dem? - answer: >- - Den beste måten å løse tvilen din på er raskt gjennom Metadecidimsamfunnet. Enter now in the process [Support Forum](https://meta.decidim. rg/prosesser/supportforum?locale=en) og se om ditt spørsmål finnes, eller om det er besvart og oppgi ellers spørsmål for å stille spørsmål. Hvis du ikke kan løse problemet ditt i dette grupperommet, kanskje er det på tide å kontakte oss gjennom [kontakt skjema](/contact). - q12: - question: Finnes det noen veiledning for å starte å sette det opp? - answer: >- - Du kan sjekke den nyeste versjonen av vår admin manual i format@@0(https://docs.decidim.org). - q13: - question: Hva er den sosiale kontrakten? - answer: >- - Slik kaller vi vårt Code of Democratic Guarantees og Democratic Collaboration. Alle medlemmer av samfunnet må støtte seg i [Social Contract](http://decidim.org/contract). - q14: - question: Hva er forskjellene i Consul Project / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Hva er Metadesidimmiljøet? - answer: >- - [Metadecidim](http://meta.decidim.org) er det Decidim fellesskapet som samarbeider om design av plattformen og byggingen av Decidim-prosjektet. Vi møtes regelmessig gjennom [SOM (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) og [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Gå til [meta.decidim.org](http://meta.decidim.org) for å følge anropene tett og hvis du vil bli med i samfunnet. Vi har lyst til ;-) - q16: - question: Kan jeg bli med i Metadesidimsamfunnet selv om jeg ikke lever i Barcelona? - answer: >- - Dekidim er et prosjekt som er født i Barcelona, og derfor er det et sterkt territorielt bånd til denne byen. Men ja, gjennom deltakende prosesser, debatter osv., osv. som vi tilbyr i Metadecidim. Selv om du kanskje ønsker å komme til Barcelona en stund :) - q17: - question: Vi ønsker å lage en formell samarbeidsavtale. Er det noen maler vi kan bruke? - answer: Ja, vi har maler for å formalisere samarbeidsavtaler. [Vennligst kontakt oss](/contact). - q18: - question: Hva slags medlemmer aksepterer i Metadesidimsamfunnet? - answer: Den som har god tro og en riktig holdning til demokratisk samarbeid. - q19: - question: Gir du gratis installasjon til ikke-kommersielle organisasjoner? - answer: >- - Ja, bare hvis du er en Barcelona-basert organisasjon. Send oss et budskap og du vil bli hjulpet av forskningsdirektoratet, Utvikling og innovasjon av området for borgerskap, deltakelse og Transparency of Barcelona byråd. - q20: - question: Støtter dere institusjoner? - answer: >- - Ja, men du må være tålmodig. Det er mange institusjoner som ønsker å bruke Dekidim akkurat nå og vi bidrar til at de kan ta skritt. [Kontakt oss](/contact) for et hvilket som helst spørsmål og vi vil svare deg så snart som mulig. - q21: - question: Hva er Decidim tilknytningen? - answer: >- - The "Asociacion de Software Libre Decidim" er en demokratisk sammenslutning for styringen av Decidim community. - q22: - question: Hvordan får jeg mer informasjon om Decidim Associationen? - answer: >- - I [generell samling av Decidim Association](https://meta.decidim. rg/menigheter/generalforsamlingsforening) du finner mer informasjon om oss, følge møtenes aktivitet og sjekke relevant informasjon (vedtekter, lovavtaler, indre bestemmelser) - q23: - question: Hvordan kan jeg bli medlem av Decidim Associationen? - answer: >- - Nå kan menneskene involvert i prosjektet være partnere. [Her forklarer vi i detalj hvordan du må gjøre det](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Når ble Decidim Association født? - answer: >- - Assosiasyl [Decidim er grunnlagt 16. februar 2019 i en ekstraordinær sammenstilling av samfunnet](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), med godkjenning av organisasjonens vedtekter. + title: Komponenter + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Gratis og sikker teknologi.
Med alle demokratiske garantier.
Reprogrammering demokrati er nå mulig med Decidim. + subheading: Dekidim er en digital plattform
for medborgernes deltakelse + subhero: + cta: Explore all features + feature1: Strategisk
planlegger + feature2: Deltagende
budsjettering + feature3: Initiativer og
borgerkonsultasjoner + feature4: Participative
prosesser + feature5: Forsamlinger + feature6: Nettverk
kommunikasjon + intro: Dekidim hjelper borgere, organisasjoner og offentlige institusjoner selv å organisere demokratisk i alle skala. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: They are already using Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blogg + close_menu: Close menu + code: Kode + community: Fellesskap + contact: Kontakt + contract: Sosial Kontrakt + demo: Demonstrasjon + docs: + path: https://docs.decidim.org/ + title: Dokumentasjon + faqs: OSS'er + features: Funksjoner + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Moduler + partners: Samarbeidsenheter + partnership-policy: Partnership policy + press: Presse + privacy-policy: Privacy policy + text: Navigasjon + trademark: Trademark policy + use-cases: Use cases + used_by: Dekidim i bruk + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/no" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Barcelona City Hall (2015-2019) + quote: Takket være Decidim, i Barcelona har vi klart å medutarbeide en strategisk byplan sammen med borgerne. I 2016 innførte vi den kommunale handlingsplanen i form av en deltakende prosess gjennom Decidim Barcelona. Denne planen omfatter i dag nærmere 7 tusen forslag. En av fordelene ved å bruke denne plattformen er at du til enhver tid kan overvåke tilstanden til de godkjente forslagene. + n2: + org: Som Energia + quote: Med implementeringen av dekidim i Som Energia har vi skapt et barnehagerom for deltakelse. Vi la ut verktøyet i 2018, vertskap for generalforsamlingen i samarbeidet, og månedene senere debatterte vi Image Redesign and collaborative development of the School of Som Energia, blant andre deltakende prosesser. I løpet av noen måneder har mer enn 3500 deltakere registrert seg, 5 deltakerprosesser, 3 avtaler som opererer med mer enn 1300 stemmer i forrige generalforsamling. + n3: + org: Kommunepresident i Me∙rida Yucatañn, Mexico. Kommunestyret Meephalrida Yucataεn, Mexico + quote: Bestemmelsesmetoden for digital plattform var en mulighet som aldri ble åpnet før borgernes deltakelsesmekanismer for utarbeidelse av den kommunale utviklingsplanen for Me∙rida 2018-2021. Vi hadde mer enn 3000 borgerinteraksjoner med forslag, kommentarer. forslag og støtte som oppnår høyest mulig enighet om hva som er best for vår by. Beslutningsplattformen «skjev» vil uansett fortsette å være vårt forhold til å gjøre Meephalrida til et stadig appativ samfunn. + n4: + org: Byen Helsinki + quote: Det vi setter pris på, er at det er med demokrati i tankene, og derfor er demokratiet et et stort fokus. Demokratiske prinsipper som ansvarlighet, likestilling og åpenhet står i kjernen av designet. + n5: + org: Åpne myndigheter i Mexico by + quote: Nesten hver deltakerprosess som er kommet til vårt bord, har vi vært i stand til å løse den ved hjelp av Decidims forretningsregler. Som et verktøy er det et veldig sterkt virkemiddel. Den delen som fremstår som sterkest og viktigst for oss, er imidlertid fellesskapet, både de som utvikler og de som bruker det på deltakende prosesser. Samspillet med dem har gjort at vi setter pris på utfordringene med å gjennomføre deltakende demokrati i den virkelige verden. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Takk for at du kontakter oss, vi kommer snart tilbake til deg. + title: Takk for din e-post + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/pl.yml b/locales/pl.yml index f3b97fdf..83d40526 100644 --- a/locales/pl.yml +++ b/locales/pl.yml @@ -1,448 +1,589 @@ +--- pl: - path: '/pl' - activeLang: 'Polski' - nav: - text: 'Nawigacja' - demo: 'Demo' - community: 'Społeczność' - contract: 'Umowa społeczna' - code: 'Kod' - docs: - title: 'Dokumentacja' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'cechy' - faqs: 'Często zadawane pytania' - contact: 'Kontakt' - used_by: 'Decydim w użyciu' - partners: 'Podmioty współpracujące' - modules: 'Moduły' - press: 'Naciśnij' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Dołącz do naszego połączenia' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest to intensywny trzydniowy program działań poświęcony projektowi Decidim, demokracja uczestnicząca i otwarte narzędzia dla zbiorowej inteligencji w erze globalnej demokracji.' - index: - hero: - heading: 'Wolna demokracja partycypacyjna Open-Source dla miast i organizacji' - subheading: 'Decydim jest cyfrową platformą
służącą udziałowi obywateli' - intro: 'Bezpłatna i bezpieczna technologia
Z wszystkimi demokratycznymi gwarancjami.
Przeprogramowanie demokracji jest teraz możliwe po podjęciu decyzji.' - video: - play: 'Odtwórz wideo' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Zamknij film' - subhero: - intro: 'Decydim pomaga obywatelom, organizacjom i instytucjom publicznym w samodzielnej organizacji demokratycznej na każdą skalę.' - feature1: 'Strategiczne planowanie
' - feature2: 'Uczestniczące
budżetowanie' - feature3: 'Inicjatywy i
konsultacje społeczne' - feature4: 'Procesy uczestnictwa
' - feature5: 'Zespoły' - feature6: 'Komunikacja
w sieci' - used_by: - title: 'Już używają Decidim' - cta: 'Zobacz wszystko' - cta: - title: 'zacznij używać Decidim dzisiaj' - button: - code: 'Koduj na Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Demo online - p1: Odtwarzaj i swobodnie przeglądaj platformę Decidim za pomocą naszego demo. - p2: Decidim jest aktywny i działa w kilku instancjach, które możesz odwiedzić i odkryć, Decidim Barcelona w Barcelonie lub możesz odwiedzić strony Gava i L'Hospitalet. Ale są to prawdziwe przypadki, w których naprawdę nie możesz grać swobodnie, ponieważ nie jesteś obywatelem tych gmin i nie możesz szukać tych stron jako administratora. - p3: Jeśli chcesz pójść dalej, możesz przetestować Decidim na naszej witrynie Demo (dzięki uprzejmości naszych deweloperów w aLabs). Wejdź na stronę demo i swobodnie odkrywaj potencjał Decidim i jego funkcje. - p4: Możesz zalogować się jako Administrator (nazwa użytkownika "admin@example.org" i hasło "decidim123456"). - button: Demo online + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, nasza społeczność' - subtitle: 'Demokratyczna społeczność zarządzająca projektem Decydim we wszystkich jego wymiarach' - intro: 'Metadecidim jest społecznością, która współpracuje przy projektowaniu platformy i budowie projektu. Razem możemy projektować i rozwijać nowe funkcje i zgłaszać błędy w celu ciągłego doskonalenia platformy.' - cta: 'Zacznij' - features: - title: 'Zaproponuj nowe funkcje' - subtitle: 'Projektowanie i rozwijanie decydizmu wśród wszystkich' - text: 'Możesz tworzyć debaty na temat przyszłości Decidim lub proponować nowe funkcje lub ulepszenia. Propozycje mogą być zatwierdzane i komentarze, aby pokazać na przykład zainteresowanie społecznością i docenić ich rozwój. wnioski, które mają sponsora (takie jak rada miasta lub jakikolwiek inny podmiot), przydatny dla projektu będzie odpowiedzialny za poszukiwanie i zapewnienie zasobów niezbędnych do przeprowadzenia ich rozwoju.' - cta: 'Wejdź i weź udział' - bug: - title: 'Zgłoś błąd' - subtitle: 'Współpraca na rzecz stopniowej poprawy' - text: 'Każda nowa wersja Decidim zawiera nowe funkcje i ulepszenia użyteczności, ale nie wszystko działa na początku i mogą pojawić się błędy. Tutaj możesz zgłaszać błędy, które znajdziesz i pomóc programistom szybko je naprawić.' - cta: 'Wejdź i weź udział' - img_alt: 'Zdjęcie społeczności decydim na spotkaniu w Metadecidim 2016' - timeline: - title: 'Wspólne projektowanie funkcjonalności' - step1: - title: 'Nowa propozycja' - text: 'Opis funkcjonalny' - step2: - title: 'Zatwierdzony wniosek' - text: 'Zatwierdzenie techniczne i technopolityczne' - step3: - title: 'Planowany wniosek' - text: 'Zasoby dla rozwoju (współdzielone lub nie)' - step4: - title: 'Zagadnienie' - text: 'Opis techniczny' - step5: - title: 'Żądanie ściągnięcia' - text: 'Kod rozwinięty' - step6: - title: 'Funkcjonalność wykonana' - text: 'Dopuszczalne w następnej wersji' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Zacznij + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Zdjęcie społeczności decydim na spotkaniu w Metadecidim 2016 + intro: Metadecidim jest społecznością, która współpracuje przy projektowaniu platformy i budowie projektu. Razem możemy projektować i rozwijać nowe funkcje i zgłaszać błędy w celu ciągłego doskonalenia platformy. + subtitle: Demokratyczna społeczność zarządzająca projektem Decydim we wszystkich jego wymiarach + title: Metadecidim, nasza społeczność contact: - title: Skontaktuj się z nami - bot_field: "Nie wypełnij tego, jeśli jesteś człowiekiem:" - name: Nazwa - entity: Jednostka + bot_field: 'Nie wypełnij tego, jeśli jesteś człowiekiem:' email: Adres e-mail - subject: Temat message: Wiadomość + name: Nazwa privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Wyślij - thanks: - title: Dziękujemy za Twój e-mail - message: Dziękujemy za skontaktowanie się z nami, wkrótce wrócimy do Ciebie. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Skontaktuj się z nami + demo: + button: Demo online + p1: Odtwarzaj i swobodnie przeglądaj platformę Decidim za pomocą naszego demo. + strong: Try Online + title: Demo online + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Często zadawane pytania + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'cechy' - intro: '

Użycie Decidim w organizacji publicznej lub prywatnej z setkami lub tysiącami potencjalnych uczestników, takie jak rada miasta, stowarzyszenie, uniwersytet, organizacja pozarządowa, związek zawodowy, spółdzielnia lub spółdzielnia...

Dzięki Decidim będziesz mógł skonfigurować miejsca dla uczestnictwa (inicjatywy, zgromadzenia, procesy lub konsultacje) i wzbogacają je poprzez wiele dostępnych elementów (spotkania osobiste, ankiety, propozycje, głosowanie, monitorowanie wyników, komentarze i wiele innych).

' - list: - n1: - title: '
budżety partycypacyjne' - content: 'Przeanalizowano w nim przedstawione propozycje i propagowano nowy sposób podziału wspólnych zasobów.' - n2: - title: 'Inicjatywy obywatelskie
i konsultacje' - content: 'Umocnij swoją społeczność poprzez inicjatywy obywatelskie. Promuj odpowiednie głosowanie w drodze konsultacji.' - n3: - title: 'Siła
sieci politycznej' - content: 'Podejmuje ona refleksje, współpracę i decyzję na masowy wymiar, w którym tysiące osób uczestniczy w czasie rzeczywistym.' - n4: - title: 'Demokratyczny
i elastyczny system' - content: 'Dzięki modułowej architekturze i skalowalnej logice można skonfigurować potężny system demokratycznego zarządzania we wszystkich rodzajach organizacji.' - n5: - title: 'Traktujemy demokrację
poważnie' - content: 'Decydując zapewnia przejrzystość, identyfikowalność i integralność informacji, jak nigdy przedtem. Zapewnia ona bezpieczeństwo, prywatność i poufność wszystkim uczestnikom.' - n6: - title: "To twoje.
Udostępnij to. Ulepsz to." - content: 'Platforma zaprojektowana w całości z darmowym oprogramowaniem, otwartymi i wspólnymi treściami dzięki Metadecydimowi społecznościowemu.' - cta: - features: 'Zobacz wszystkie funkcje' - values: 'Przejdź do umowy społecznej' + intro: "

Użycie Decidim w organizacji publicznej lub prywatnej z setkami lub tysiącami potencjalnych uczestników, takie jak rada miasta, stowarzyszenie, uniwersytet, organizacja pozarządowa, związek zawodowy, spółdzielnia lub spółdzielnia...

Dzięki Decidim będziesz mógł skonfigurować miejsca dla uczestnictwa (inicjatywy, zgromadzenia, procesy lub konsultacje) i wzbogacają je poprzez wiele dostępnych elementów (spotkania osobiste, ankiety, propozycje, głosowanie, monitorowanie wyników, komentarze i wiele innych).

" page: feature1: - title: 'Procesy partycypacyjne' - subtitle: 'do demokratyzacji wspólnych zagadnień krok po kroku' - text: >- - Procesy to przestrzeń, która pozwala tworzyć, aktywować/dezaktywować i zarządzać różnymi procesami partycypacyjnymi. Odróżnia się je od innych pomieszczeń, ponieważ są one skonstruowane w różnych fazach, w których wszystkie części mogą być zamontowane. Przykładami procesów partycypacyjnych są: proces wyborczy członków komisji, budżet partycypacyjny, proces planowania strategicznego, wspólne pisanie rozporządzenia lub normy, projektowanie przestrzeni miejskiej lub opracowanie planu porządku publicznego. - feature2: - title: 'Zespoły' - subtitle: 'uprawnienia zbiorowej samoorganizacji' - text: >- - Jest przestrzenią umożliwiającą ustanowienie organów lub grup decyzyjnych (rady, grupy robocze, komitety itp.). które spotykają się okresowo, wyszczególniając ich skład, listę i geolokalizację posiedzeń, i umożliwienie udziału w nich (na przykład: udział w posiedzeniu, jeżeli pozwala na to pojemność miejsc i charakter zespołu, dodanie punktów do porządku obrad lub skomentowanie propozycji i decyzji podjętych przez ten organ). - feature3: - title: 'Konsultacje' - subtitle: 'prawo do podejmowania decyzji z wszelkimi demokratycznymi gwarancjami' - text: >- - Konsultacje są przestrzenią umożliwiającą koordynowanie referendów, inicjowanie dyskusji i debat oraz publikowanie wyników głosowania; może być podłączone do bezpiecznego systemu elektronicznego głosowania. - feature4: - title: 'Inicjatywy' - subtitle: "wyznaczanie porządku obrad każdego z nich w zasięgu każdego" - text: >- - Inicjatywy są przestrzenią umożliwiającą uczestnikom wspólne tworzenie inicjatyw, określenie ich trajektorii i celów, gromadzenie zatwierdzeń, dyskusje, omówienie i rozpowszechnianie inicjatyw oraz określenie punktów spotkań, w których można zebrać podpisy od uczestników lub debat otwartych dla innych członków organizacji. - feature5: - title: 'Propozycje' - subtitle: 'Twoje pomysły' - text: >- - Komponent propozycji pozwala użytkownikowi na stworzenie propozycji za pomocą kreatora utworzenia, porównując ją z istniejącymi, publikuje je na platformie i zawiera dodatkowe informacje, takie jak geolokacja lub załączone dokumenty i obrazy. Ten komponent umożliwia również nawigację, filtrowanie i interakcję z zestawem propozycji. Ponadto z inkubatorem propozycji możesz tworzyć wspólne propozycje. - feature6: - title: 'Głosowanie' - subtitle: 'zdecyduj swój głos' - text: >- - Komponent do głosowania oferuje organizacjom możliwość aktywacji różnych systemów głosowania lub wsparcia wokół wniosków: nieograniczony, ograniczony do określonego progu, ważony, oparty na kosztach itp. - feature7: - title: 'wyniki' - subtitle: 'brak propozycji bez odpowiedzi' - text: >- - Komponent dotyczący wyników wykorzystuje się do przekształcenia wniosków w wyniki i udzielenia oficjalnych odpowiedzi dotyczących ich przyjęcia lub odrzucenia, połączenie różnych propozycji w jeden wynik. - feature8: - title: 'Rozliczenie' - subtitle: 'przezroczystość od początku do końca' - text: >- - Komponent dotyczący odpowiedzialności oferuje możliwość podziału wyników na projekty, definiowania i stosowania statusów postępów w zakresie ich wdrażania, oraz wykazanie zakresu realizacji wyników pogrupowanych według kategorii i zakresu. - feature9: - title: 'Spotkania' - subtitle: 'spotkać się i nie przegapić niczego' - text: >- - Komponent spotkania oferuje organizacjom i uczestnikom możliwość zwołania spotkań, określenia ich lokalizacji i czasu, rejestruje i ogranicza liczbę uczestników, określa strukturę i treść posiedzenia, jak również publikuje protokół i wynikające z niego propozycje. + subtitle: do demokratyzacji wspólnych zagadnień krok po kroku + text: 'Procesy to przestrzeń, która pozwala tworzyć, aktywować/dezaktywować i zarządzać różnymi procesami partycypacyjnymi. Odróżnia się je od innych pomieszczeń, ponieważ są one skonstruowane w różnych fazach, w których wszystkie części mogą być zamontowane. Przykładami procesów partycypacyjnych są: proces wyborczy członków komisji, budżet partycypacyjny, proces planowania strategicznego, wspólne pisanie rozporządzenia lub normy, projektowanie przestrzeni miejskiej lub opracowanie planu porządku publicznego.' + title: Procesy partycypacyjne feature10: - title: 'Kolektywna legislacja' - subtitle: 'analizowanie, syntetyzowanie i budowanie wspólnych' - text: >- - Komponent dotyczący tekstu uczestniczącego może zostać wykorzystany do przekształcenia długich dokumentów tekstowych w różne wnioski lub wyniki, oraz vice versa, aby sporządzić i wyświetlić jednolity tekst w oparciu o zbiór propozycji lub wyników. + subtitle: analizowanie, syntetyzowanie i budowanie wspólnych + text: Komponent dotyczący tekstu uczestniczącego może zostać wykorzystany do przekształcenia długich dokumentów tekstowych w różne wnioski lub wyniki, oraz vice versa, aby sporządzić i wyświetlić jednolity tekst w oparciu o zbiór propozycji lub wyników. + title: Kolektywna legislacja feature11: - title: 'Konferencja' - subtitle: 'Gdzie wielkie wydarzenia są pierwszorzędne' - text: >- - Komponent konferencji pozwala organizacji na utworzenie strony internetowej dla dużego wydarzenia, dołączając do serii wstępnie określonych spotkań (czaty, warsztaty itp.). , opracowanie jednolitego programu i zarządzanie uczestnikami. + subtitle: Gdzie wielkie wydarzenia są pierwszorzędne + text: Komponent konferencji pozwala organizacji na utworzenie strony internetowej dla dużego wydarzenia, dołączając do serii wstępnie określonych spotkań (czaty, warsztaty itp.). , opracowanie jednolitego programu i zarządzanie uczestnikami. + title: Konferencja feature12: - title: 'Ankiety' - subtitle: 'Ponieważ opinia Państwa społeczności ma znaczenie' - text: >- - Komponent ankiet może być wykorzystywany do projektowania i publikowania ankiet oraz do wyświetlania i pobierania ich wyników. + subtitle: Ponieważ opinia Państwa społeczności ma znaczenie + text: Komponent ankiet może być wykorzystywany do projektowania i publikowania ankiet oraz do wyświetlania i pobierania ich wyników. + title: Ankiety feature13: - title: 'Wybór losowy' - subtitle: 'Równość i sprawiedliwość losowości' - text: >- - Składnik sortowania pozwala wybrać pewną liczbę wniosków (np. kandydatów do sądu konkursowego) z losowymi, ale powtarzalnymi procedurami gwarantującymi bezstronne i jednolite dystrybucje. + subtitle: Równość i sprawiedliwość losowości + text: Składnik sortowania pozwala wybrać pewną liczbę wniosków (np. kandydatów do sądu konkursowego) z losowymi, ale powtarzalnymi procedurami gwarantującymi bezstronne i jednolite dystrybucje. + title: Wybór losowy feature14: - title: 'Komentarze' - subtitle: 'Budowanie wspólnej inteligencji' - text: >- - Komponent komentarzy umożliwia użytkownikom dodawanie komentarzy, aby zidentyfikować komentarz jako ulubiony, przeciw lub neutralne w odniesieniu do skomentowanego obiektu, głosując komentarze, odpowiadając na nie i otrzymując powiadomienia o odpowiedziach. + subtitle: Budowanie wspólnej inteligencji + text: Komponent komentarzy umożliwia użytkownikom dodawanie komentarzy, aby zidentyfikować komentarz jako ulubiony, przeciw lub neutralne w odniesieniu do skomentowanego obiektu, głosując komentarze, odpowiadając na nie i otrzymując powiadomienia o odpowiedziach. + title: Komentarze feature15: - title: 'Strony i blogi' - subtitle: 'Twoja społeczność, poinformowana i aktualna' - text: >- - Komponent stron jest używany do tworzenia stron informacyjnych z bogatym formatowaniem tekstu, osadzonych zdjęć i filmów. Komponent bloga umożliwia tworzenie postów lub wiadomości oraz nawigowanie nimi chronologicznie. + subtitle: Twoja społeczność, poinformowana i aktualna + text: Komponent stron jest używany do tworzenia stron informacyjnych z bogatym formatowaniem tekstu, osadzonych zdjęć i filmów. Komponent bloga umożliwia tworzenie postów lub wiadomości oraz nawigowanie nimi chronologicznie. + title: Strony i blogi feature16: - title: 'Powiadomienia' - subtitle: 'Spersonalizowane informacje na temat interesujących treści' - text: >- - Decidim pozwala śledzić dowolną przestrzeń lub komponent do otrzymywania aktualizacji za każdym razem, gdy się wydarzy. + subtitle: Spersonalizowane informacje na temat interesujących treści + text: Decidim pozwala śledzić dowolną przestrzeń lub komponent do otrzymywania aktualizacji za każdym razem, gdy się wydarzy. + title: Powiadomienia feature17: - title: 'Newsletter' - subtitle: 'Prosty, ale potężny' - text: >- - Komponent biuletynu umożliwia wysyłanie wiadomości e-mail do wszystkich zarejestrowanych na platformie lub, bardziej selektywnie, do tych, którzy uczestniczą w danej przestrzeni. + subtitle: Prosty, ale potężny + text: Komponent biuletynu umożliwia wysyłanie wiadomości e-mail do wszystkich zarejestrowanych na platformie lub, bardziej selektywnie, do tych, którzy uczestniczą w danej przestrzeni. + title: Newsletter + feature2: + subtitle: uprawnienia zbiorowej samoorganizacji + text: 'Jest przestrzenią umożliwiającą ustanowienie organów lub grup decyzyjnych (rady, grupy robocze, komitety itp.). które spotykają się okresowo, wyszczególniając ich skład, listę i geolokalizację posiedzeń, i umożliwienie udziału w nich (na przykład: udział w posiedzeniu, jeżeli pozwala na to pojemność miejsc i charakter zespołu, dodanie punktów do porządku obrad lub skomentowanie propozycji i decyzji podjętych przez ten organ).' + title: Zespoły + feature3: + subtitle: prawo do podejmowania decyzji z wszelkimi demokratycznymi gwarancjami + text: Konsultacje są przestrzenią umożliwiającą koordynowanie referendów, inicjowanie dyskusji i debat oraz publikowanie wyników głosowania; może być podłączone do bezpiecznego systemu elektronicznego głosowania. + title: Konsultacje + feature4: + subtitle: wyznaczanie porządku obrad każdego z nich w zasięgu każdego + text: Inicjatywy są przestrzenią umożliwiającą uczestnikom wspólne tworzenie inicjatyw, określenie ich trajektorii i celów, gromadzenie zatwierdzeń, dyskusje, omówienie i rozpowszechnianie inicjatyw oraz określenie punktów spotkań, w których można zebrać podpisy od uczestników lub debat otwartych dla innych członków organizacji. + title: Inicjatywy + feature5: + subtitle: Twoje pomysły + text: Komponent propozycji pozwala użytkownikowi na stworzenie propozycji za pomocą kreatora utworzenia, porównując ją z istniejącymi, publikuje je na platformie i zawiera dodatkowe informacje, takie jak geolokacja lub załączone dokumenty i obrazy. Ten komponent umożliwia również nawigację, filtrowanie i interakcję z zestawem propozycji. Ponadto z inkubatorem propozycji możesz tworzyć wspólne propozycje. + title: Propozycje + feature6: + subtitle: zdecyduj swój głos + text: 'Komponent do głosowania oferuje organizacjom możliwość aktywacji różnych systemów głosowania lub wsparcia wokół wniosków: nieograniczony, ograniczony do określonego progu, ważony, oparty na kosztach itp.' + title: Głosowanie + feature7: + subtitle: brak propozycji bez odpowiedzi + text: Komponent dotyczący wyników wykorzystuje się do przekształcenia wniosków w wyniki i udzielenia oficjalnych odpowiedzi dotyczących ich przyjęcia lub odrzucenia, połączenie różnych propozycji w jeden wynik. + title: wyniki + feature8: + subtitle: przezroczystość od początku do końca + text: Komponent dotyczący odpowiedzialności oferuje możliwość podziału wyników na projekty, definiowania i stosowania statusów postępów w zakresie ich wdrażania, oraz wykazanie zakresu realizacji wyników pogrupowanych według kategorii i zakresu. + title: Rozliczenie + feature9: + subtitle: spotkać się i nie przegapić niczego + text: Komponent spotkania oferuje organizacjom i uczestnikom możliwość zwołania spotkań, określenia ich lokalizacji i czasu, rejestruje i ogranicza liczbę uczestników, określa strukturę i treść posiedzenia, jak również publikuje protokół i wynikające z niego propozycje. + title: Spotkania + subtitle: For democratic organizations and collectives of any size and kind. + title: cechy type1: - title: 'Przestrzeń do udziału' - subtitle: 'Dla uczestników do składania wniosków i podejmowania decyzji' + title: Przestrzeń do udziału type2: - title: 'Komponenty' - subtitle: 'Dla uczestników i przestrzeni do interakcji' - other: - subtitle: 'Odważy się połączyć komponenty. Zaprojektuj i rozbuduj potężny demokratyczny system w łatwy sposób i dostosuj go do potrzeb Twojej organizacji' - cta: - title: 'Odkryj głębokie działanie Decidim' - button: 'Funkcje i funkcje' - partners: - notice: Logo podmiotów współpracujących stanowią własność intelektualną ich odpowiednich właścicieli praw autorskich. Nie są objęte licencją Creative Commons By-SA , a reszta zawartości witryny jest licencjonowana. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Nazwa - type: - community: Społeczność - auth: Autoryzacja - official: Urzędnik - used_by: - explain: Te miasta, regiony i organizacje już korzystają z Decidim - type: - city: Miasta - region: Regiony - organizations: Organizacje - testimonials: - n1: - quote: >- - Dzięki postanowieniom w Barcelonie udało nam się wspólnie z obywatelami opracować strategiczny plan miast. W 2016 r. zainicjowaliśmy miejski plan działania w formie procesu partycypacyjnego poprzez decyzję w Barcelonie. Obecnie plan ten zawiera prawie 7 tysięcy propozycji obywateli. Jedną z zalet korzystania z tej platformy jest możliwość monitorowania przez cały czas stanu wdrażania zatwierdzonych wniosków. - org: Sala miasta Barcelona (2015-2019) - n2: - quote: >- - Dzięki wdrożeniu Decidim w Som Energia stworzyliśmy przestrzeń do uczestnictwa. Wydaliśmy narzędzie w 2018 roku, gospodarzem Walnego Zgromadzenia Spółdzielni i miesięcy później dyskutowaliśmy na temat przeprojektowania obrazów i wspólnego rozwoju Szkoły Som Energii, wśród innych procesów partycypacyjnych. W ciągu kilku miesięcy zarejestrowało się ponad 3 500 uczestników, 5 procesów uczestnictwa, 3 zespoły działające i ponad 1300 głosów w ostatnim głosowaniu Walnego Zgromadzenia. - org: Som Energia - n3: - quote: >- - Decydowana platforma cyfrowa była okazją, która nigdy wcześniej nie umożliwiła udziału obywateli w opracowaniu planu rozwoju gminy w latach 2018–2021. Mieliśmy ponad 3 000 interakcji obywatelskich, w tym propozycje, uwagi, sugestie i wsparcie osiągnięcia jak najwyższego konsensusu co do tego, co jest najlepsze dla naszego miasta. Bez wątpienia platforma decydowania o Ridzie będzie nadal naszym sojusznikiem, który sprawi, że Me rida stanie się coraz bardziej partycypacyjnym społeczeństwem. - org: Municipal President of Meľrida Yucataľn, Meksyk. City Council of Meţrida Yucataľn, Mexico - n4: - quote: >- - Doceniamy to, że jest zbudowana z myślą o demokracji, a zatem demokracja jest bardzo skoncentrowana. Podstawą projektu są demokratyczne zasady, takie jak odpowiedzialność, równość i przejrzystość. - org: Miasto Helsinki - n5: - quote: >- - Prawie każdy proces partycypacyjny, który dotarł do naszego stołu, udało nam się rozwiązać go za pomocą zasad biznesowych decydów. Jest to narzędzie, które jest bardzo silne. Jednak najsilniejszą i najważniejszą dla nas częścią jest jej społeczność, zarówno deweloperzy, jak i ci, którzy korzystają z niej w procesach partycypacyjnych. Współistniejące z nimi sprawiły, że doceniamy wyzwania związane z wdrażaniem demokracji uczestniczącej w świecie rzeczywistym. - org: Otwarty rząd miasta Meksyk - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Często zadawane pytania - q01: - question: Co to jest Decidim? - answer: >- - Decidim jest darmową platformą demokracji uczestniczącej w Open-Source dla miast i organizacji. Decydim jest jednak czymś więcej niż platformą cyfrową: jest to darmowy i otwarty wspólny projekt oraz infrastruktura obejmująca kod, dokumentację, projektowanie, kursy szkoleniowe, ramy prawne, interfejsy współpracy, społeczności użytkowników i społeczności ułatwiające oraz wspólna wizja. - q02: - question: Kto obecnie używa Decidim? - answer: >- - Obecnie jest on używany przez miasta i organizacje. W rzeczywistości każda grupa ludzi może z niej korzystać, niezależnie od tego, czy jest to organizacja pozarządowa, uniwersytet, związki zawodowe, spółdzielnie, stowarzyszenie sąsiedzkie itp. Sprawdź [pełną listę aktualnie aktywnych instancji](/usedby/). - q03: - question: Co może zrobić administrator Decidim? - answer: >- - Łatwo skonfigurować procesy partycypacyjne czy chcesz stworzyć plan strategiczny? Lub dyskutować nad nowymi przepisami? Czy też omówić nowy kwadrat lub budynek publiczny w celu osiągnięcia wspólnego dobra? Dzięki Decidim będziesz mógł skonfigurować miejsca partycypacyjne (inicjatywy, zgromadzenia, procesy lub konsultacje) i wzbogacają je poprzez wiele dostępnych elementów (spotkania osobiste, ankiety, propozycje, głosowanie, monitorowanie wyników, komentarze i wiele innych). - q04: - question: Co może zrobić uczestnik (użytkownik) Decidim? - answer: >- - Decydim umożliwia tysiącom ludzi demokratyczną organizację poprzez przedstawianie propozycji uczestnictwa w publicznych spotkaniach, wspieranie dyskusji na temat podejmowania decyzji, podejmowanie decyzji w różnych formach głosowania i monitorowanie wykonywania decyzji. - q05: - question: Czy masz Demo? Chcę teraz użyć Decidim, nie instalując go, aby zobaczyć, jak to działa. - answer: 'Tak, mamy [demo](/demo).' - q06: - question: Jak często platforma jest aktualizowana? - answer: >- - Wydajemy nową wersję około każdego miesiąca. Zobacz [rekord wersji](https://github.com/decidim/decidim/releases). - q07: - question: Co muszę zainstalować Decidim? - answer: >- - Instalacja Decidim jest łatwa, ale potrzebujesz wiedzy i wymagań technicznych. Zobacz [dokumentację do instalacji Decidim](https://docs.decidim.org/en/install/). - q08: - question: Gdzie mogę znaleźć plan działania projektu i planowane obiekty? - answer: '[Mapa drogowa nowych funkcji projektu można znaleźć na GitHub](https://github.com/decidim/decidim/projects/16).' - q09: - question: 'Co to oznacza, że Decidim jest za darmo, "libre" i "open source"?' - answer: >- - Decydim jest platformą dla udziału obywateli i obywateli. Jego kod źródłowy jest otwarty i może być przeglądany, modyfikowany i ulepszany przez każdego. Oprogramowanie decydim jest objęte [licencją AGPL](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Oznacza to, że możesz z niego korzystać, modyfikować i rozpowszechniać pochodne wersje pod warunkiem, że przestrzegasz licencji AGPL. - q10: - question: >- - Mam pomysły na nowe ulepszenia. Chcę lepiej zrozumieć ten projekt. Co mogę zrobić? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Mam wiele wątpliwości, wszelkiego rodzaju... gdzie mogę je zapytać, czy je rozwiązać? - answer: >- - Najlepszym sposobem na szybkie rozwiązanie wątpliwości jest społeczność Metadecidim. Wejdź teraz w proces [Forum Wsparcia](https://meta.decidim. rg/processes/supportforum?locale=pl) i sprawdź, czy Twoje pytanie istnieje, czy odpowiedź została udzielona i w inny sposób wpisz do pytania. Jeśli nie możesz rozwiązać swojego problemu w tej przestrzeni, może nadszedł czas, aby skontaktować się z nami za pośrednictwem [formularza kontaktowego](/contact). - q12: - question: Czy jest jakiś samouczek, aby rozpocząć jego konfigurację? - answer: >- - Możesz sprawdzić najnowszą wersję podręcznika administratora w [sekcji Dokumentacji](https://docs.decidim.org). - q13: - question: Czym jest umowa społeczna? - answer: >- - Tak nazywamy nasz Kodeks gwarancji demokratycznych i współpracę demokratyczną. Wszyscy członkowie społeczności muszą poprzeć [Kontrakt Społeczny](http://decidim.org/contract). - q14: - question: Jakie są różnice z projektem Consul / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Czym jest społeczność Metadecidium? - answer: >- - [Metadecidim](http://meta.decidim.org) jest społecznością Decidim, która współpracuje przy projektowaniu platformy i budowie projektu Decidim. Spotykamy się regularnie przez [sesje operacyjne (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) oraz [Seminaria badawcze LAB](https://meta.decidim.org/assemblies/eix-lab). Przejdź do [meta.decidim.org](http://meta.decidim.org), aby ściśle obserwować połączenia i jeśli chcesz dołączyć do społeczności. Chcielibyśmy ;-) - q16: - question: Czy mogę dołączyć do społeczności Metadecidim, nawet jeśli nie mieszkam w Barcelonie? - answer: >- - Decydim to projekt, który powstał w Barcelonie i dlatego istnieje silna więź terytorialna z tym miastem. Ale tak, możesz współpracować online, poprzez procesy partycypacyjne, debaty, itd. że zapewniamy Metadecidim. Chociaż możesz chcieć przyjechać do Barcelony jakiś czas :) - q17: - question: Chcemy zawrzeć formalną umowę o współpracy. Czy są jakieś szablony, z których możemy skorzystać? - answer: Tak, mamy szablony do sformalizowania umów o współpracy. [Skontaktuj się z nami](/contact). - q18: - question: Jakich członków akceptujesz w społeczności Metadecidium? - answer: Każdy, kto ma dobrą wiarę i właściwą postawę wobec demokratycznej współpracy. - q19: - question: Czy udostępniasz bezpłatną instalację organizacjom nienastawionym na zysk? - answer: >- - Tak, tylko jeśli jesteś organizacją z siedzibą w Barcelonie. Wyślij nam wiadomość, a otrzymasz pomoc ze strony Dyrekcji Badań Naukowych, Rozwój i innowacje w obszarze praw obywatelskich, udział i przejrzystość Rady Miasta Barcelony. - q20: - question: Czy wspierają Państwo instytucje? - answer: >- - Tak, ale musisz być cierpliwy. Istnieje wiele instytucji, które chcą teraz korzystać z decydizmu i pomagamy im krok po kroku. [Skontaktuj się z nami](/contact) w przypadku każdego pytania, a my odpowiemy na nie tak szybko, jak to możliwe. - q21: - question: Czym jest Stowarzyszenie Decidim? - answer: >- - „Asociacion de Software Libre Decidim” (Stowarzyszenie Wolnego Oprogramowania Decydim) jest demokratycznym stowarzyszeniem na rzecz zarządzania społecznością Decydim. - q22: - question: Jak mogę uzyskać więcej informacji o Stowarzyszeniu Decidim? - answer: >- - Na [walnym zgromadzeniu Zrzeszenia Decidim](https://meta.decidim. rg/montaży/ogólne zrzeszenie) można znaleźć więcej informacji niejasnych, śledzić działalność spotkań i sprawdzać odpowiednie informacje (statut, porozumienia prawne, przepisy wewnętrzne) - q23: - question: Jak mogę zostać członkiem Stowarzyszenia Decydim? - answer: >- - Teraz osoby zaangażowane w projekt mogą być partnerami. [Oto szczegółowo wyjaśniamy, jak musisz to zrobić](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Kiedy powstało Stowarzyszenie Decidim? - answer: >- - W dniu 16 lutego 2019 r. Associacioľ[Decidim powstał na nadzwyczajnym zgromadzeniu społeczności](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), za zgodą statutu. + title: Komponenty + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Bezpłatna i bezpieczna technologia
Z wszystkimi demokratycznymi gwarancjami.
Przeprogramowanie demokracji jest teraz możliwe po podjęciu decyzji. + subheading: Decydim jest cyfrową platformą
służącą udziałowi obywateli + subhero: + cta: Explore all features + feature1: Strategiczne planowanie
+ feature2: Uczestniczące
budżetowanie + feature3: Inicjatywy i
konsultacje społeczne + feature4: Procesy uczestnictwa
+ feature5: Zespoły + feature6: Komunikacja
w sieci + intro: Decydim pomaga obywatelom, organizacjom i instytucjom publicznym w samodzielnej organizacji demokratycznej na każdą skalę. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Już używają Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Kod + community: Społeczność + contact: Kontakt + contract: Umowa społeczna + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Dokumentacja + faqs: Często zadawane pytania + features: cechy + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Moduły + partners: Podmioty współpracujące + partnership-policy: Partnership policy + press: Naciśnij + privacy-policy: Privacy policy + text: Nawigacja + trademark: Trademark policy + use-cases: Use cases + used_by: Decydim w użyciu + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/pl" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Sala miasta Barcelona (2015-2019) + quote: Dzięki postanowieniom w Barcelonie udało nam się wspólnie z obywatelami opracować strategiczny plan miast. W 2016 r. zainicjowaliśmy miejski plan działania w formie procesu partycypacyjnego poprzez decyzję w Barcelonie. Obecnie plan ten zawiera prawie 7 tysięcy propozycji obywateli. Jedną z zalet korzystania z tej platformy jest możliwość monitorowania przez cały czas stanu wdrażania zatwierdzonych wniosków. + n2: + org: Som Energia + quote: Dzięki wdrożeniu Decidim w Som Energia stworzyliśmy przestrzeń do uczestnictwa. Wydaliśmy narzędzie w 2018 roku, gospodarzem Walnego Zgromadzenia Spółdzielni i miesięcy później dyskutowaliśmy na temat przeprojektowania obrazów i wspólnego rozwoju Szkoły Som Energii, wśród innych procesów partycypacyjnych. W ciągu kilku miesięcy zarejestrowało się ponad 3 500 uczestników, 5 procesów uczestnictwa, 3 zespoły działające i ponad 1300 głosów w ostatnim głosowaniu Walnego Zgromadzenia. + n3: + org: Municipal President of Meľrida Yucataľn, Meksyk. City Council of Meţrida Yucataľn, Mexico + quote: Decydowana platforma cyfrowa była okazją, która nigdy wcześniej nie umożliwiła udziału obywateli w opracowaniu planu rozwoju gminy w latach 2018–2021. Mieliśmy ponad 3 000 interakcji obywatelskich, w tym propozycje, uwagi, sugestie i wsparcie osiągnięcia jak najwyższego konsensusu co do tego, co jest najlepsze dla naszego miasta. Bez wątpienia platforma decydowania o Ridzie będzie nadal naszym sojusznikiem, który sprawi, że Me rida stanie się coraz bardziej partycypacyjnym społeczeństwem. + n4: + org: Miasto Helsinki + quote: Doceniamy to, że jest zbudowana z myślą o demokracji, a zatem demokracja jest bardzo skoncentrowana. Podstawą projektu są demokratyczne zasady, takie jak odpowiedzialność, równość i przejrzystość. + n5: + org: Otwarty rząd miasta Meksyk + quote: Prawie każdy proces partycypacyjny, który dotarł do naszego stołu, udało nam się rozwiązać go za pomocą zasad biznesowych decydów. Jest to narzędzie, które jest bardzo silne. Jednak najsilniejszą i najważniejszą dla nas częścią jest jej społeczność, zarówno deweloperzy, jak i ci, którzy korzystają z niej w procesach partycypacyjnych. Współistniejące z nimi sprawiły, że doceniamy wyzwania związane z wdrażaniem demokracji uczestniczącej w świecie rzeczywistym. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Dziękujemy za skontaktowanie się z nami, wkrótce wrócimy do Ciebie. + title: Dziękujemy za Twój e-mail + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/pt.yml b/locales/pt.yml index a40200a0..1381e561 100644 --- a/locales/pt.yml +++ b/locales/pt.yml @@ -1,448 +1,589 @@ +--- pt: - path: '/pt' - activeLang: 'Português' - nav: - text: 'Navegação' - demo: 'Demonstração' - community: 'Comunidade' - contract: 'Contrato social' - code: 'Código' - docs: - title: 'Documentação' - path: 'https://docs.decidim.org/' - blog: 'Blogue' - features: 'Funcionalidades' - faqs: 'FAQs' - contact: 'Contacto' - used_by: 'Decidim em uso' - partners: 'Entidades de co-operação' - modules: 'módulos' - press: 'Pressionar' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Junte-se à nossa chamada' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'O DecidimFest é um intenso programa de atividades de 3 dias dedicado ao projeto Decidim, democracia participativa e ferramentas de fonte aberta para inteligência colectiva na era da Democracia Global.' - index: - hero: - heading: 'Democracia participativa gratuita de código-fonte aberto para cidades e organizações' - subheading: 'Decidim é uma plataforma digital
para participação dos cidadãos' - intro: 'Tecnologia livre e segura.
com todas as garantias democráticas.
Reprogramar democracia agora é possível com Decidim.' - video: - play: 'Reproduzir vídeo' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Fechar vídeo' - subhero: - intro: 'O programa Decidim ajuda os cidadãos, as organizações e as instituições públicas a organizarem-se democraticamente em todas as dimensões.' - feature1: 'Planejamento
estratégico' - feature2: 'Orçamento
participativo' - feature3: 'Iniciativas e
consultas cidadãs' - feature4: 'Processos
participativos' - feature5: 'Reuniões' - feature6: 'Comunicação em rede
' - used_by: - title: 'Eles já estão usando o Decidim' - cta: 'Ver todos' - cta: - title: 'comece a usar Decidim hoje' - button: - code: 'Código no Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Demo on-line - p1: Jogue por aí e explore livremente a plataforma Decidim com a nossa demonstração online. - p2: O Decidim está em execução em várias instâncias que você pode visitar e explorar, O Devagar Barcelona na Cidade de Barcelona ou você pode visitar os sites da Gava^\\ e L'Hospitalet. Mas essas são verdadeiras instâncias em que você realmente não pode brincar livremente, como você pode não ser um cidadão dessas autarquias, e você não pode explorar esses sites como administrador. - p3: Se você quiser ir mais longe, seja bem-vindo para testar o Decidim em nossa Dedim Demo Site (cortesia de nossos desenvolvedores em aLabs). Entre no site de demonstração e explore livremente o potencial do Decidim e seus recursos. - p4: Você pode fazer login como Admin (nome do usuário "admin@exemplo.org" e senha "decidim123456"). - button: Demonstração online + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, nossa comunidade' - subtitle: 'Uma comunidade democrática que gerencia o projeto Decidim em todas as suas dimensões' - intro: 'Metadecidim é uma comunidade que colabora no design da plataforma e na construção do projeto. Juntos nós podemos projetar e desenvolver novos recursos e relatar bugs para a melhoria contínua da plataforma.' - cta: 'Vamos começar' - features: - title: 'Propor novas funcionalidades' - subtitle: 'Para projetar e desenvolver o Decidim entre todos' - text: 'Você pode criar debates sobre o futuro do Decidim ou propor novos recursos ou melhorias. As propostas podem receber endossos e comentários, para mostrar, por exemplo, o interesse que suscitam na comunidade e valorizar o seu desenvolvimento. Propostas que têm um patrocinador (como um conselho municipal ou qualquer outra entidade), Será útil para o projecto que seja responsável pela procura e disponibilização dos recursos necessários para levar a cabo o seu desenvolvimento.' - cta: 'Entre e participe agora' - bug: - title: 'Reportar um erro' - subtitle: 'Colaboração para melhoria progressiva' - text: 'Cada nova versão do Decidim incorpora novas funcionalidades e melhorias de usabilidade, mas nem tudo funciona no início e os erros podem aparecer. Aqui você pode relatar bugs que você encontra e ajudar os desenvolvedores a corrigi-los rapidamente.' - cta: 'Entre e participe agora' - img_alt: 'Foto da Comunidade Decidim na reunião de Metadecidim 2016' - timeline: - title: 'Design colaborativo das funcionalidades' - step1: - title: 'Nova proposta' - text: 'Descrição funcional' - step2: - title: 'Proposta validada' - text: 'Validação técnica e tecnopolítica' - step3: - title: 'Proposta planejada' - text: 'Recursos para desenvolvimento (compartilhados ou não)' - step4: - title: 'Problema' - text: 'Descrição técnica' - step5: - title: 'Pull request' - text: 'Código desenvolvido' - step6: - title: 'Funcionalidade feita' - text: 'Disponível na próxima versão' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Vamos começar + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Foto da Comunidade Decidim na reunião de Metadecidim 2016 + intro: Metadecidim é uma comunidade que colabora no design da plataforma e na construção do projeto. Juntos nós podemos projetar e desenvolver novos recursos e relatar bugs para a melhoria contínua da plataforma. + subtitle: Uma comunidade democrática que gerencia o projeto Decidim em todas as suas dimensões + title: Metadecidim, nossa comunidade contact: - title: Entre em contato - bot_field: "Não preencha isto se você é humano:" - name: Nome - entity: Entidade + bot_field: 'Não preencha isto se você é humano:' email: E-mail - subject: Subject message: mensagem + name: Nome privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Enviar - thanks: - title: Obrigado pelo seu e-mail - message: Obrigado por nos contatar, entraremos em contato em breve. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Entre em contato + demo: + button: Demonstração online + p1: Jogue por aí e explore livremente a plataforma Decidim com a nossa demonstração online. + strong: Try Online + title: Demo on-line + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Perguntas mais frequentes + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funcionalidades' - intro: '

Você pode usar o Decidim em uma organização pública ou privada, com centenas ou milhares de participantes em potencial como um conselho urbano, uma associação, uma universidade, uma ONG, um sindicato, um grupo de vizinhança ou uma cooperativa...

Graças ao Decidim você será capaz de configurar espaços para participação (iniciativas, montagens, processos ou consultas) e enriquece-os através dos vários componentes disponíveis (reuniões presenciais, pesquisas, propostas, votação, acompanhamento dos resultados, comentários e muito mais).

' - list: - n1: - title: 'Orçamentos
participativos' - content: 'Analisa as propostas apresentadas e promove uma nova forma de distribuição dos recursos comuns.' - n2: - title: 'Iniciativas dos cidadãos
e consultas' - content: 'Fortaleça sua comunidade através de iniciativas dos cidadãos. Promova votações relevantes através de consultas.' - n3: - title: 'O poder
de uma rede política' - content: 'É preciso deliberação, colaboração e decisão para uma dimensão maciça, com a participação de milhares de pessoas em tempo real.' - n4: - title: 'Um
democrático e um sistema flexível' - content: 'Graças à sua arquitetura modular e lógica escalável, você pode configurar um poderoso sistema de governação democrática em todos os tipos de organizações.' - n5: - title: 'Nós levamos a democracia
muito a sério' - content: 'O Decidim garante transparência, rastreabilidade e integridade das informações como nunca antes e proporciona segurança, privacidade e confidencialidade a todos os participantes.' - n6: - title: "É seu.
Compartilhe. Melhorar." - content: 'Uma plataforma projetada inteiramente com software livre, conteúdo aberto e colaborativo graças à comunidade Metadecidim.' - cta: - features: 'Ver todos os recursos' - values: 'Ir para o contrato social' + intro: "

Você pode usar o Decidim em uma organização pública ou privada, com centenas ou milhares de participantes em potencial como um conselho urbano, uma associação, uma universidade, uma ONG, um sindicato, um grupo de vizinhança ou uma cooperativa...

Graças ao Decidim você será capaz de configurar espaços para participação (iniciativas, montagens, processos ou consultas) e enriquece-os através dos vários componentes disponíveis (reuniões presenciais, pesquisas, propostas, votação, acompanhamento dos resultados, comentários e muito mais).

" page: feature1: - title: 'Processos participativos' - subtitle: 'para democratizar questões comuns, passo a passo' - text: >- - Processos é um espaço que permite criar, ativar/desativar e gerenciar vários processos participativos. Eles se distinguem de outros espaços por serem estruturados em diferentes fases dentro das quais todos os componentes podem ser incorporados. Exemplos de processos participativos são: um processo eleitoral para os membros de uma comissão, orçamento participativo, um processo de planejamento estratégico. a redacção colaborativa de um regulamento ou norma, a concepção de um espaço urbano ou a elaboração de um plano de política pública. - feature2: - title: 'Reuniões' - subtitle: 'o poder da auto-organização colectiva' - text: >- - É um espaço que oferece a possibilidade de criar órgãos de decisão ou grupos (conselhos, grupos de trabalho, comissões, etc.). que se reúnem periodicamente, detalhando sua composição, listando e geolocalizando suas reuniões, e permitindo participar deles (por exemplo: participar da capacidade e natureza do assembly Acrescentar à ordem do dia ou comentar as propostas e decisões tomadas por esse organismo). - feature3: - title: 'Consultas' - subtitle: 'o direito de decidir com todas as garantias democráticas' - text: >- - As consultas são um espaço que permite coordenar referendos, desencadear discussões e debates, publicar os resultados das votações; pode estar ligado a um sistema seguro de votação electrónica. - feature4: - title: 'Iniciativas' - subtitle: "definindo a agenda de todos, ao alcance de todos" - text: >- - Iniciativas é um espaço que permite aos participantes criar iniciativas colaborativamente, definir sua trajetória e objetivos, recolher endos, discussões, debater e difundir iniciativas e definir pontos de reunião onde podem ser recolhidas assinaturas de participantes ou debates abertos a outros membros da organização. - feature5: - title: 'Propostas' - subtitle: 'suas ideias detalhadamente' - text: >- - O componente de propostas permite ao usuário criar uma proposta usando um assistente de criação, compará-lo com os existentes, publique-a na plataforma e inclua informações adicionais como geolocalização ou documentos e imagens anexadas. Este componente também permite a você navegar, filtrar e interagir com um conjunto de propostas. Além disso, com a proposta incubadora, você pode criar propostas colaborativas. - feature6: - title: 'Votação' - subtitle: 'decidir seu voto' - text: >- - O componente de voto oferece às organizações a possibilidade de activar diferentes sistemas de votação ou de apoio em torno de propostas: ilimitado, limitado a um determinado limite, ponderado, baseado em custos, etc. - feature7: - title: 'Resultados' - subtitle: 'nenhuma proposta sem uma resposta' - text: >- - O componente de resultados é utilizado para transformar propostas em resultados e dar respostas oficiais sobre a sua aceitação ou rejeição, A fusão de várias propostas num único resultado. - feature8: - title: 'Responsabilidade' - subtitle: 'transparência do início ao fim' - text: >- - O componente responsável oferece a possibilidade de subdividir resultados em projectos, definindo e aplicando status de progresso em torno da sua implementação, Além de mostrar a extensão da implementação dos resultados agrupada por categorias e âmbitos. - feature9: - title: 'Encontros' - subtitle: 'para encontrar e não perder nada' - text: >- - O componente de reunião oferece a organizações e participantes a oportunidade de convocar reuniões, determinar sua localização e hora registar e limitar os participantes, definir a estrutura e o conteúdo da reunião, bem como publicar as actas e as propostas resultantes. + subtitle: para democratizar questões comuns, passo a passo + text: 'Processos é um espaço que permite criar, ativar/desativar e gerenciar vários processos participativos. Eles se distinguem de outros espaços por serem estruturados em diferentes fases dentro das quais todos os componentes podem ser incorporados. Exemplos de processos participativos são: um processo eleitoral para os membros de uma comissão, orçamento participativo, um processo de planejamento estratégico. a redacção colaborativa de um regulamento ou norma, a concepção de um espaço urbano ou a elaboração de um plano de política pública.' + title: Processos participativos feature10: - title: 'Textos participativos' - subtitle: 'para analisar, sintetizar e construir em comum' - text: >- - O componente de textos participativos pode ser usado para converter documentos longos de texto em várias propostas ou resultados e, vice-versa, para escrever e exibir um texto unificado com base em um conjunto de propostas ou resultados. + subtitle: para analisar, sintetizar e construir em comum + text: O componente de textos participativos pode ser usado para converter documentos longos de texto em várias propostas ou resultados e, vice-versa, para escrever e exibir um texto unificado com base em um conjunto de propostas ou resultados. + title: Textos participativos feature11: - title: 'Conferência' - subtitle: 'Onde grandes eventos são premiados' - text: >- - O componente de conferência permite que uma organização crie um site para um grande evento, participando de uma série predefinida de reuniões (chats, workshops etc. , formando um programa unificado e gerindo os participantes. + subtitle: Onde grandes eventos são premiados + text: O componente de conferência permite que uma organização crie um site para um grande evento, participando de uma série predefinida de reuniões (chats, workshops etc. , formando um programa unificado e gerindo os participantes. + title: Conferência feature12: - title: 'Inquéritos' - subtitle: 'Porque a opinião da sua comunidade é importante' - text: >- - O componente de pesquisas pode ser usado para projetar e publicar pesquisas, para exibir e baixar seus resultados. + subtitle: Porque a opinião da sua comunidade é importante + text: O componente de pesquisas pode ser usado para projetar e publicar pesquisas, para exibir e baixar seus resultados. + title: Inquéritos feature13: - title: 'Sorteio' - subtitle: 'Igualdade e justiça de aleatoriedade' - text: >- - O componente de classificação permite selecionar um número de propostas (por exemplo, Os candidatos a um júri) com procedimentos aleatórios, mas reproduzíveis, que garantem distribuições não tendenciosas e uniformes. + subtitle: Igualdade e justiça de aleatoriedade + text: O componente de classificação permite selecionar um número de propostas (por exemplo, Os candidatos a um júri) com procedimentos aleatórios, mas reproduzíveis, que garantem distribuições não tendenciosas e uniformes. + title: Sorteio feature14: - title: 'Comentários' - subtitle: 'Construindo inteligência coletiva' - text: >- - O componente de comentários permite aos usuários adicionar comentários, para identificar o comentário como sendo a favor contra ou neutro em relação ao objeto comentado, votar comentários, responder a eles e receber notificações sobre respostas. + subtitle: Construindo inteligência coletiva + text: O componente de comentários permite aos usuários adicionar comentários, para identificar o comentário como sendo a favor contra ou neutro em relação ao objeto comentado, votar comentários, responder a eles e receber notificações sobre respostas. + title: Comentários feature15: - title: 'Páginas e blogs' - subtitle: 'Sua comunidade, informada e atualizada' - text: >- - O componente de páginas é usado para criar páginas informativas com formatação rica de texto, imagens incorporadas e vídeos. O componente blog possibilita a criação de posts ou notícias e a navegação cronológica. + subtitle: Sua comunidade, informada e atualizada + text: O componente de páginas é usado para criar páginas informativas com formatação rica de texto, imagens incorporadas e vídeos. O componente blog possibilita a criação de posts ou notícias e a navegação cronológica. + title: Páginas e blogs feature16: - title: 'Notificações' - subtitle: 'Informações personalizadas sobre conteúdos interessantes' - text: >- - Decidim permite que você acompanhe qualquer espaço ou componente para receber atualizações toda vez que elas acontecem. + subtitle: Informações personalizadas sobre conteúdos interessantes + text: Decidim permite que você acompanhe qualquer espaço ou componente para receber atualizações toda vez que elas acontecem. + title: Notificações feature17: - title: 'Boletim Informativo' - subtitle: 'Simples, mas poderosa' - text: >- - O componente de boletins informativos torna possível o envio de e-mails para todos aqueles que estão registrados na plataforma ou, de forma mais seletiva, para aqueles que participam de um espaço específico. + subtitle: Simples, mas poderosa + text: O componente de boletins informativos torna possível o envio de e-mails para todos aqueles que estão registrados na plataforma ou, de forma mais seletiva, para aqueles que participam de um espaço específico. + title: Boletim Informativo + feature2: + subtitle: o poder da auto-organização colectiva + text: 'É um espaço que oferece a possibilidade de criar órgãos de decisão ou grupos (conselhos, grupos de trabalho, comissões, etc.). que se reúnem periodicamente, detalhando sua composição, listando e geolocalizando suas reuniões, e permitindo participar deles (por exemplo: participar da capacidade e natureza do assembly Acrescentar à ordem do dia ou comentar as propostas e decisões tomadas por esse organismo).' + title: Reuniões + feature3: + subtitle: o direito de decidir com todas as garantias democráticas + text: As consultas são um espaço que permite coordenar referendos, desencadear discussões e debates, publicar os resultados das votações; pode estar ligado a um sistema seguro de votação electrónica. + title: Consultas + feature4: + subtitle: definindo a agenda de todos, ao alcance de todos + text: Iniciativas é um espaço que permite aos participantes criar iniciativas colaborativamente, definir sua trajetória e objetivos, recolher endos, discussões, debater e difundir iniciativas e definir pontos de reunião onde podem ser recolhidas assinaturas de participantes ou debates abertos a outros membros da organização. + title: Iniciativas + feature5: + subtitle: suas ideias detalhadamente + text: O componente de propostas permite ao usuário criar uma proposta usando um assistente de criação, compará-lo com os existentes, publique-a na plataforma e inclua informações adicionais como geolocalização ou documentos e imagens anexadas. Este componente também permite a você navegar, filtrar e interagir com um conjunto de propostas. Além disso, com a proposta incubadora, você pode criar propostas colaborativas. + title: Propostas + feature6: + subtitle: decidir seu voto + text: 'O componente de voto oferece às organizações a possibilidade de activar diferentes sistemas de votação ou de apoio em torno de propostas: ilimitado, limitado a um determinado limite, ponderado, baseado em custos, etc.' + title: Votação + feature7: + subtitle: nenhuma proposta sem uma resposta + text: O componente de resultados é utilizado para transformar propostas em resultados e dar respostas oficiais sobre a sua aceitação ou rejeição, A fusão de várias propostas num único resultado. + title: Resultados + feature8: + subtitle: transparência do início ao fim + text: O componente responsável oferece a possibilidade de subdividir resultados em projectos, definindo e aplicando status de progresso em torno da sua implementação, Além de mostrar a extensão da implementação dos resultados agrupada por categorias e âmbitos. + title: Responsabilidade + feature9: + subtitle: para encontrar e não perder nada + text: O componente de reunião oferece a organizações e participantes a oportunidade de convocar reuniões, determinar sua localização e hora registar e limitar os participantes, definir a estrutura e o conteúdo da reunião, bem como publicar as actas e as propostas resultantes. + title: Encontros + subtitle: For democratic organizations and collectives of any size and kind. + title: Funcionalidades type1: - title: 'Espaços de participação' - subtitle: 'Para os participantes fazer propostas e tomar decisões' + title: Espaços de participação type2: - title: 'Componentes' - subtitle: 'Para participantes e espaços interagirem' - other: - subtitle: 'Atreve-se a combinar os componentes. Projete e faça uso de um poderoso sistema democrático de uma maneira fácil e o adapte às necessidades da sua organização' - cta: - title: 'Descubra como o Decidim funciona em profundidade' - button: 'Funções e recursos' - partners: - notice: Os logotipos das entidades cooperantes são propriedade intelectual dos respectivos titulares de direitos de autor. Eles não são abrangidos pela licença Creative Commons By-SA com a licença restante do conteúdo do site. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Nome - type: - community: Comunidade - auth: Autorização - official: Oficial - used_by: - explain: Estas cidades, regiões e organizações já estão usando o Decidim - type: - city: Cidades - region: Regiões - organizations: Organizações - testimonials: - n1: - quote: >- - Graças ao programa Decidim, em Barcelona, conseguimos co-produzir um plano estratégico para a cidade em conjunto com os cidadãos. Em 2016, inaugurámos o Plano de Acção Municipal sob a forma de um processo participativo por intermédio do programa Decidim Barcelona. Actualmente, este plano inclui quase 7 mil propostas de cidadãos. Uma das vantagens de utilizar esta plataforma é que você pode monitorizar constantemente o estado de implementação das propostas aprovadas. - org: Salão da Cidade do Barcelona (2015-2019) - n2: - quote: >- - Com a implementação do Decidim na Som Energia geramos um espaço mais bonito para a participação. Nós lançamos a ferramenta em 2018, Como anfitrião da Assembleia-Geral da Cooperação e meses mais tarde, debatemos o desenvolvimento da imagem Redesign e colaborativo da Escola de Som Energia, entre outros processos participativos. Em alguns meses, mais de 3.500 participantes se registraram, 5 processos participativos, 3 assembleias em funcionamento e mais de 1.300 votos na última votação da Assembleia-Geral. - org: Energia do Som - n3: - quote: >- - A plataforma digital Decide Me➲ rida foi uma oportunidade que se abriu como nunca antes os mecanismos de participação dos cidadãos para a elaboração do Plano de Desenvolvimento Municipal de Mimrida 2018-2021. Tivemos mais de 3.000 interacções entre os cidadãos, incluindo propostas, comentários, sugestões e apoio para alcançar o maior consenso possível sobre o que é melhor para a nossa cidade. Não há dúvida de que a plataforma Decide Me├rida continuará a ser nosso aliado para fazer de Me├rida uma sociedade cada vez mais participativa. - org: Presidente municipal de Mewe, rida Yucataćn e México. Conselho Municipal de Meërida Yucataous, México, - n4: - quote: >- - O que nós apreciamos é que ele é construído com a democracia em mente e, portanto, a democracia é um grande foco. Princípios democráticos como a responsabilização, a igualdade e a transparência estão no cerne do projecto. - org: Cidade de Helsínquia - n5: - quote: >- - Quase todos os processos participativos que chegaram à nossa mesa, fomos capazes de resolvê-lo usando as regras de negócio do Decidim. Enquanto instrumento, é um instrumento muito forte. No entanto, a parte que nos parece mais forte e mais importante é a sua comunidade, tanto os desenvolvedores quanto aqueles que a utilizam para processos participativos. A coexistência com eles fez com que apreciássemos os desafios envolvidos na implementação da democracia participativa no mundo real. - org: Abrir Governo da Cidade do México - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Perguntas mais frequentes - q01: - question: O que é o Decidim? - answer: >- - Decidim é uma plataforma de democracia participativa gratuita de código aberto para cidades e organizações. Mas o Decidim é mais do que uma plataforma digital: é um projeto e infraestrutura livres e abertos de um comum que envolve código, documentação, desenho, cursos de treinamento, um quadro jurídico, interfaces colaborativas, comunidades de usuários e facilitação, e uma visão comum. - q02: - question: Quem está usando o Decidim? - answer: >- - Atualmente é utilizado pelas cidades e organizações. Com efeito, qualquer grupo de pessoas pode utilizá-lo, quer se trate de uma ONG, de uma universidade, de uma sindicato, de uma cooperativa, de uma associação de vizinhança, etc. Verifique a [lista completa de instâncias atualmente ativas](/usedby/). - q03: - question: O que um administrador do Decidim pode fazer? - answer: >- - Configurar facilmente os processos participativos. Você deseja fazer um plano estratégico? Ou discutir novas regulamentações? Ou discutir um novo quadrado ou um edifício público para alcançar o bem comum? Graças o Decidim você será capaz de configurar espaços de participação (iniciativas, montagens, processos ou consultas) e enriquece-os através dos vários componentes disponíveis (reuniões presenciais, pesquisas, propostas, votação, acompanhamento dos resultados, comentários e muito mais). - q04: - question: O que um participante (usuário) do Decidim pode fazer? - answer: >- - O programa Decidim permite que milhares de pessoas se organizem democraticamente, apresentando propostas, participando em reuniões públicas, O fomento das discussões sobre a tomada de decisões, a decisão através de diferentes formas de votação e o controlo da aplicação das decisões. - q05: - question: Você tem uma Demonstração? Eu quero usar o Decidim agora, sem instalá-la, para ver como ela funciona. - answer: 'Sim, temos uma [demonstração online](/demo).' - q06: - question: Com que frequência a plataforma é atualizada? - answer: >- - Lançamos uma nova versão aproximadamente a cada mês. Consulte o [registro de versões](https://github.com/decidim/decidim/releases). - q07: - question: O que preciso instalar o Decidim? - answer: >- - Instalar o Decidim é fácil, mas você precisa de alguns requisitos técnicos. Consulte a [documentação para instalar o Decidim](https://docs.decidim.org/en/install/). - q08: - question: Onde posso encontrar o roteiro do projeto e os recursos planejados? - answer: Você pode encontrar o [roadmap dos novos recursos do projeto no GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'O que isso significa que Decidim é gratuitamente, "libre" e código aberto?' - answer: >- - O Decidim é uma plataforma para a participação dos cidadãos feita pelas pessoas e para as pessoas. Seu código fonte é aberto e pode ser inspecionado, modificado e aprimorado por qualquer pessoa. O software Decidim é coberto pela [licença AGPL](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Isso significa que você pode usá-la, modificá-la e redistribuir versões derivadas, contanto que você respeite a licença AGPL. - q10: - question: >- - Eu tenho idéias para novos recursos de melhoria. Eu quero ter uma melhor compreensão do projeto. O que posso fazer? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Tenho muitas dúvidas, de todo o tipo... onde é que lhes posso pedir ou resolvê-las? - answer: >- - A melhor maneira de resolver suas dúvidas rapidamente é através da comunidade Metadecidim. Participe agora no processo [Fórum de Suporte](https://meta.decidim. rg/processes/supportforum?locale=en) e veja se a sua pergunta existe ou se foi respondida e digite para fazer perguntas. Se você não consegue resolver seu problema neste espaço, talvez seja hora de nos contatar pelo [formulário de contato](/contato). - q12: - question: Há algum tutorial para começar a configurá-lo? - answer: >- - Você pode conferir a versão mais recente do nosso manual administrativo na [seção de documentação](https://docs.decidim.org). - q13: - question: O que é o Contrato Social? - answer: >- - É assim que chamamos o nosso Código de Garantia Democrática e Colaboração Democrática. Todos os membros da comunidade devem endossar o [Contrato Social](http://decidim.org/contract). - q14: - question: Quais são as diferenças com o Projeto Cônsul / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: O que é a comunidade Metadecidim? - answer: >- - [Metadecidim](http://meta.decidim.org) é a comunidade de Decidim que colabora no design da plataforma e na construção do projeto Decidim. Nos encontramos regularmente através do [SOM (Metadecidim Operativas)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) e [Seminários de Pesquisa LAB](https://meta.decidim.org/assemblies/eix-lab). Acesse [meta.decidim.org](http://meta.decidim.org) para acompanhar as chamadas de perto e se você quiser se juntar à comunidade. Adoraríamos ;-) - q16: - question: Posso me juntar à comunidade Metadecidim, mesmo que não more em Barcelona? - answer: >- - O Decidim é um projecto que nasceu em Barcelona e é por isso que existe um forte vínculo territorial com esta cidade. Mas sim, você pode colaborar on-line, através de processos participativos, debates, etc. que fornecemos em Metadecidim. Embora você possa querer vir a Barcelona um dia :) - q17: - question: Queremos fazer um acordo de colaboração formal. Existe algum modelo que possamos usar? - answer: Sim, nós temos modelos para formalizar os acordos de colaboração. [Entre em contato conosco](/contact). - q18: - question: Que tipo de membros você aceita na comunidade Metadecidim? - answer: Qualquer pessoa que tenha boa fé e uma atitude correcta em relação à colaboração democrática. - q19: - question: Você fornece a instalação gratuita a organizações sem fins lucrativos? - answer: >- - Sim, só se for uma organização com sede em Barcelona. Envie-nos uma mensagem e você será ajudado pela Direcção de Pesquisa, Desenvolvimento e Inovação do Espaço dos Direitos da Cidadania, Participação e Transparência do Conselho Civil, de Barcelona. - q20: - question: O senhor apoia as instituições? - answer: >- - Sim, mas você tem que ser paciente. Há muitas instituições que querem utilizar o Decidim neste momento e estamos a ajudá-las passo a passo. [Fale conosco](/contact) para qualquer pergunta e nós vamos lhe responder o mais rápido possível. - q21: - question: O que é a Associação Decidim? - answer: >- - O "Asociacion de Software Libre Decidim" (A Decidim Free Software Association) é uma associação democrática para a governação da comunidade Decidim. - q22: - question: Como posso obter mais informações sobre a Associação Decidim? - answer: >- - Na [assembleia geral da Associação Decidim](https://meta.decidim. rg/assemblies/associação de assembleias gerais) você pode encontrar mais informação abençoada, acompanhar a atividade das reuniões e verificar informações relevantes (estatutos, contratos legais, regras internas) - q23: - question: Como posso me tornar um membro da Associação Decidim? - answer: >- - Agora as pessoas envolvidas no projeto podem ser parceiros. [Aqui explicamos em detalhes como você precisa fazer isso](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Quando nasceu a Associação Decidim? - answer: >- - A Associacio├[Decidim é fundada em 16 de fevereiro de 2019 em uma montagem extraordinária da comunidade](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), com a aprovação dos estatutos da organização. + title: Componentes + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Tecnologia livre e segura.
com todas as garantias democráticas.
Reprogramar democracia agora é possível com Decidim. + subheading: Decidim é uma plataforma digital
para participação dos cidadãos + subhero: + cta: Explore all features + feature1: Planejamento
estratégico + feature2: Orçamento
participativo + feature3: Iniciativas e
consultas cidadãs + feature4: Processos
participativos + feature5: Reuniões + feature6: Comunicação em rede
+ intro: O programa Decidim ajuda os cidadãos, as organizações e as instituições públicas a organizarem-se democraticamente em todas as dimensões. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Eles já estão usando o Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blogue + close_menu: Close menu + code: Código + community: Comunidade + contact: Contacto + contract: Contrato social + demo: Demonstração + docs: + path: https://docs.decidim.org/ + title: Documentação + faqs: FAQs + features: Funcionalidades + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: módulos + partners: Entidades de co-operação + partnership-policy: Partnership policy + press: Pressionar + privacy-policy: Privacy policy + text: Navegação + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim em uso + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/pt" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Salão da Cidade do Barcelona (2015-2019) + quote: Graças ao programa Decidim, em Barcelona, conseguimos co-produzir um plano estratégico para a cidade em conjunto com os cidadãos. Em 2016, inaugurámos o Plano de Acção Municipal sob a forma de um processo participativo por intermédio do programa Decidim Barcelona. Actualmente, este plano inclui quase 7 mil propostas de cidadãos. Uma das vantagens de utilizar esta plataforma é que você pode monitorizar constantemente o estado de implementação das propostas aprovadas. + n2: + org: Energia do Som + quote: Com a implementação do Decidim na Som Energia geramos um espaço mais bonito para a participação. Nós lançamos a ferramenta em 2018, Como anfitrião da Assembleia-Geral da Cooperação e meses mais tarde, debatemos o desenvolvimento da imagem Redesign e colaborativo da Escola de Som Energia, entre outros processos participativos. Em alguns meses, mais de 3.500 participantes se registraram, 5 processos participativos, 3 assembleias em funcionamento e mais de 1.300 votos na última votação da Assembleia-Geral. + n3: + org: Presidente municipal de Mewe, rida Yucataćn e México. Conselho Municipal de Meërida Yucataous, México, + quote: A plataforma digital Decide Me➲ rida foi uma oportunidade que se abriu como nunca antes os mecanismos de participação dos cidadãos para a elaboração do Plano de Desenvolvimento Municipal de Mimrida 2018-2021. Tivemos mais de 3.000 interacções entre os cidadãos, incluindo propostas, comentários, sugestões e apoio para alcançar o maior consenso possível sobre o que é melhor para a nossa cidade. Não há dúvida de que a plataforma Decide Me├rida continuará a ser nosso aliado para fazer de Me├rida uma sociedade cada vez mais participativa. + n4: + org: Cidade de Helsínquia + quote: O que nós apreciamos é que ele é construído com a democracia em mente e, portanto, a democracia é um grande foco. Princípios democráticos como a responsabilização, a igualdade e a transparência estão no cerne do projecto. + n5: + org: Abrir Governo da Cidade do México + quote: Quase todos os processos participativos que chegaram à nossa mesa, fomos capazes de resolvê-lo usando as regras de negócio do Decidim. Enquanto instrumento, é um instrumento muito forte. No entanto, a parte que nos parece mais forte e mais importante é a sua comunidade, tanto os desenvolvedores quanto aqueles que a utilizam para processos participativos. A coexistência com eles fez com que apreciássemos os desafios envolvidos na implementação da democracia participativa no mundo real. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Obrigado por nos contatar, entraremos em contato em breve. + title: Obrigado pelo seu e-mail + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/ro.yml b/locales/ro.yml index 7c21d30d..5bf3ace4 100644 --- a/locales/ro.yml +++ b/locales/ro.yml @@ -1,448 +1,589 @@ +--- ro: - path: '/ro' - activeLang: 'Română' - nav: - text: 'Navigation' - demo: 'Demo' - community: 'Comunitate' - contract: 'Contract social' - code: 'Cod' - docs: - title: 'Documentație' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Caracteristici' - faqs: 'Întrebări frecvente' - contact: 'Contact' - used_by: 'Decidim în utilizare' - partners: 'Entități de cooperare' - modules: 'Module' - press: 'Apăsați' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democraţie, Tehnologie şi Justiţie Globală 20, 21 şi 22 octombrie' - subtitle: 'Alătură-te apelului nostru' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest este un program intens de activităţi de 3 zile dedicate proiectului Decidim, democraţia participativă şi instrumentele open source pentru inteligenţa colectivă în era democraţiei globale.' - index: - hero: - heading: 'Democraţia participativă gratuită deschisă pentru oraşe şi organizaţii' - subheading: 'Decidim este o platformă digitală
pentru participarea cetăţenilor' - intro: 'Tehnologie liberă și sigură.
Cu toate garanțiile democratice.
Reprogramarea democrației este posibilă acum cu Decidim.' - video: - play: 'Redare videoclip' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Închide videoclipul' - subhero: - intro: 'Decidim ajută cetăţenii, organizaţiile şi instituţiile publice să se autoorganizeze democratic la toate nivelurile.' - feature1: 'Planificarea strategică
' - feature2: 'Bugetarea participativă
' - feature3: 'Inițiative și
consultări ale cetățenilor' - feature4: 'Procesele
participative' - feature5: 'Adunări' - feature6: 'Comunicare
rețea' - used_by: - title: 'Acestea folosesc deja Decidim' - cta: 'Vezi toate' - cta: - title: 'Începe să folosești Decidim astăzi' - button: - code: 'Cod pe Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Demo online - p1: Joacă-te și explorează liber platforma Decidim cu demo-ul nostru online. - p2: Decidim funcționează în mai multe cazuri pe care le poți vizita și explora, Decidim Barcelona la Barcelona City sau puteți vizita site-urile Gava și L'Hospitalet. Dar acestea sunt situaţii reale în care nu te poţi juca cu adevărat liber, pentru că s-ar putea să nu fii un cetăţean al acelor municipalităţi şi nu poţi explora aceste site-uri ca administrator. - p3: Dacă vrei să mergi mai departe, ești binevenit să testezi Decidim Site Demo Decidim (grație dezvoltatorilor noștri la aLabs). Intră în site-ul demo şi explorează liber potenţialul Decidim şi caracteristicile sale. - p4: Vă puteți autentifica ca Admin (numele de utilizator "admin@example.org" și parola "decidim123456). - button: Demo online + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, comunitatea noastră' - subtitle: 'O comunitate democratică care gestionează proiectul Decidim în toate dimensiunile sale' - intro: 'Metadecidim este o comunitate care colaborează la proiectarea platformei şi la construcţia proiectului. Împreună putem proiecta și dezvolta noi caracteristici și raporta erorile pentru îmbunătățirea continuă a platformei.' - cta: 'Începeți' - features: - title: 'Propune caracteristici noi' - subtitle: 'Să proiecteze și să dezvolte Decidim printre toți' - text: 'Puteţi crea dezbateri despre viitorul Decidim sau propune noi caracteristici sau îmbunătăţiri. Propunerile pot primi aprobări și comentarii pentru a arăta, de exemplu, interesul pe care îl trezesc pentru comunitate și pentru a-și aprecia dezvoltarea. propuneri care au un sponsor (cum ar fi un consiliu municipal sau orice altă entitate), pentru proiect va fi util să caute şi să furnizeze resursele necesare realizării dezvoltării lor.' - cta: 'Intră și participă acum' - bug: - title: 'Raportează o eroare' - subtitle: 'Colaborare în vederea îmbunătăţirii progresive' - text: 'Fiecare nouă versiune de Decidim încorporează noi caracteristici şi îmbunătăţiri ale gradului de utilizare, dar nu totul funcţionează la început şi pot apărea erori. Aici puteți raporta erorile pe care le găsiți și puteți ajuta dezvoltatorii să le rezolve rapid.' - cta: 'Intră și participă acum' - img_alt: 'Fotografie comunitară decidiană la ședința Metadecidim din 2016' - timeline: - title: 'Proiectarea în colaborare a funcționalităților' - step1: - title: 'Propunere nouă' - text: 'Descriere funcţională' - step2: - title: 'Propunere validată' - text: 'Validarea tehnică și tehnopolitică' - step3: - title: 'Propunere planificată' - text: 'Resurse pentru dezvoltare (partajate sau nu)' - step4: - title: 'Problemă' - text: 'Descriere tehnică' - step5: - title: 'Cerere de tragere' - text: 'Cod dezvoltat' - step6: - title: 'Funcionalitate realizată' - text: 'Avaliable on the next version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Începeți + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Fotografie comunitară decidiană la ședința Metadecidim din 2016 + intro: Metadecidim este o comunitate care colaborează la proiectarea platformei şi la construcţia proiectului. Împreună putem proiecta și dezvolta noi caracteristici și raporta erorile pentru îmbunătățirea continuă a platformei. + subtitle: O comunitate democratică care gestionează proiectul Decidim în toate dimensiunile sale + title: Metadecidim, comunitatea noastră contact: - title: Contactați-ne - bot_field: "Nu completați acest lucru dacă sunteți uman:" - name: Nume - entity: Entitate + bot_field: 'Nu completați acest lucru dacă sunteți uman:' email: E-mail - subject: Subiect message: Mesaj + name: Nume privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Trimite - thanks: - title: Vă mulţumim pentru e-mail - message: Vă mulțumim că ne-ați contactat, vă vom contacta în curând. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contactați-ne + demo: + button: Demo online + p1: Joacă-te și explorează liber platforma Decidim cu demo-ul nostru online. + strong: Try Online + title: Demo online + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Întrebări frecvente + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Caracteristici' - intro: '

Poți folosi Decidim într-o organizație publică sau privată, cu sute sau mii de potențiali participanți, cum ar fi un consiliu urban, o asociaţie, o universitate, o ONG, un sindicat, un colectiv de cartiere sau o cooperativă...

Mulțumită Decidim vei putea configura spațiile pentru participare (inițiative, adunări, procedează sau consultări) și le îmbogățește prin multiple componente disponibile (reuniuni față în față, sondaje, propuneri, votare, urmărirea rezultatelor, observații și multe altele).

' - list: - n1: - title: 'Bugete
participative' - content: 'Acesta analizează propunerile prezentate și promovează o nouă modalitate de distribuire a resurselor comune.' - n2: - title: 'Inițiative ale cetățenilor
și consultări' - content: 'Responsabilizarea comunității prin inițiative cetățenești. Promovarea votului relevant prin consultări.' - n3: - title: 'Puterea
unei rețele politice' - content: 'Are nevoie de deliberare, colaborare şi decizie la o dimensiune masivă, mii de oameni participând în timp real.' - n4: - title: 'Un
democratic și un sistem flexibil' - content: 'Datorită arhitecturii sale modulare și logicii scalabile, poți configura un sistem puternic de guvernanță democratică în toate tipurile de organizații.' - n5: - title: 'Luăm democrația
foarte în serios' - content: 'Decidim asigură transparenţa, trasabilitatea şi integritatea informaţiilor ca niciodată până acum, oferind securitate, confidenţialitate şi confidenţialitate tuturor participanţilor.' - n6: - title: "Este al tău.
Distribuie. Îmbunătățește-l." - content: 'O platformă proiectată în întregime cu software gratuit, cu conținut deschis și colaborativ datorită Metadecidimului comunității.' - cta: - features: 'Vezi toate caracteristicile' - values: 'Du-te la contractul social' + intro: "

Poți folosi Decidim într-o organizație publică sau privată, cu sute sau mii de potențiali participanți, cum ar fi un consiliu urban, o asociaţie, o universitate, o ONG, un sindicat, un colectiv de cartiere sau o cooperativă...

Mulțumită Decidim vei putea configura spațiile pentru participare (inițiative, adunări, procedează sau consultări) și le îmbogățește prin multiple componente disponibile (reuniuni față în față, sondaje, propuneri, votare, urmărirea rezultatelor, observații și multe altele).

" page: feature1: - title: 'Procese participative' - subtitle: 'democratizarea problemelor comune, pas cu pas' - text: >- - Procesele sunt un spațiu care permite crearea, activarea/dezactivarea și gestionarea diferitelor procese participative. Acestea se deosebesc de alte spaţii prin structurarea lor în diferite faze în care pot fi încorporate toate componentele. Exemple de procese participative sunt: un proces electoral pentru membrii unui comitet, un buget participativ, un proces de planificare strategică. scrierea în colaborare a unui regulament sau normă, proiectarea unui spațiu urban sau elaborarea unui plan de politică publică. - feature2: - title: 'Adunări' - subtitle: 'puterea de auto-organizare colectivă.' - text: >- - Este un spaţiu care oferă posibilitatea de a înfiinţa organe sau grupuri de decizie (consilii, grupuri de lucru, comitete etc.). care se reunesc periodic, detaliind componența, enumerarea și geolocalizarea reuniunilor lor; posibilitatea de a participa la aceste lucrări (de exemplu: la participarea în cazul în care capacitatea şi natura reunirii permit acest lucru; adăugarea de puncte pe ordinea de zi sau formularea de observații cu privire la propunerile și deciziile luate de organul respectiv). - feature3: - title: 'Consultări' - subtitle: 'dreptul de a decide cu toate garanțiile democratice' - text: >- - Consultările reprezintă un spaţiu care face posibilă coordonarea referendumurilor, declanşarea de discuţii şi dezbateri, publicarea rezultatelor votului; poate fi conectat la un sistem securizat de votare electronică. - feature4: - title: 'Inițiative' - subtitle: "fixarea ordinii de zi a tuturor, la îndemâna tuturor" - text: >- - Iniţiativele sunt un spaţiu care permite participanţilor să creeze iniţiative, să îşi definească traiectoria şi obiectivele, să adune aprobări, discuţii, să dezbată şi să difuzeze iniţiative şi să definească punctele de întâlnire în care pot fi colectate semnături de la participanţii sau dezbaterile deschise altor membri ai organizaţiei. - feature5: - title: 'Propuneri' - subtitle: 'ideile tale în detaliu' - text: >- - Componenta de propuneri permite utilizatorului să creeze o propunere folosind un asistent de creație, în comparație cu cele existente, să-l publice pe platformă și să includă informații suplimentare, cum ar fi geolocalizarea sau documentele și imaginile anexate. Această componentă îți permite, de asemenea, să navighezi, să filtrezi și să interacționezi cu un set de propuneri. În plus, cu incubatorul de propuneri poți crea propuneri de colaborare. - feature6: - title: 'Votare' - subtitle: 'decide votul tău' - text: >- - Componenta de vot oferă organizațiilor posibilitatea de a activa diferite sisteme de vot sau de sprijin în jurul propunerilor: nelimitată, limitată la un anumit prag, ponderată, bazată pe costuri etc. - feature7: - title: 'Rezultate' - subtitle: 'nicio propunere fără un răspuns' - text: >- - Componenta de rezultate este utilizată pentru a transforma propunerile în rezultate și pentru a oferi răspunsuri oficiale cu privire la acceptarea sau respingerea acestora, fuzionarea mai multor propuneri într-un singur rezultat. - feature8: - title: 'Responsabilitate' - subtitle: 'transparența de la început la sfârșit' - text: >- - Componenta „responsabilitate” oferă posibilitatea de a subdiviza rezultatele în proiecte, de a defini și de a aplica statutul progreselor înregistrate în ceea ce privește punerea lor în aplicare, pe lângă expunerea amplorii punerii în aplicare a rezultatelor, grupate pe categorii și domenii de aplicare. - feature9: - title: 'Întâlniri' - subtitle: 'să se întâlnească și să nu rateze nimic' - text: >- - Componenta de reuniune oferă organizațiilor și participanților posibilitatea de a convoca întâlniri, de a-și stabili locația și ora, să înregistreze și să limiteze participanții, să definească structura și conținutul reuniunii, precum și să publice procesele verbale și propunerile care decurg din acestea. + subtitle: democratizarea problemelor comune, pas cu pas + text: 'Procesele sunt un spațiu care permite crearea, activarea/dezactivarea și gestionarea diferitelor procese participative. Acestea se deosebesc de alte spaţii prin structurarea lor în diferite faze în care pot fi încorporate toate componentele. Exemple de procese participative sunt: un proces electoral pentru membrii unui comitet, un buget participativ, un proces de planificare strategică. scrierea în colaborare a unui regulament sau normă, proiectarea unui spațiu urban sau elaborarea unui plan de politică publică.' + title: Procese participative feature10: - title: 'Textele participative' - subtitle: 'pentru a analiza, sintetiza și construi în comun' - text: >- - Componenta „texte participative” poate fi utilizată pentru a transforma în diferite propuneri sau rezultate lungi și vice versa, să compună și să afișeze un text unificat bazat pe o colecție de propuneri sau rezultate. + subtitle: pentru a analiza, sintetiza și construi în comun + text: Componenta „texte participative” poate fi utilizată pentru a transforma în diferite propuneri sau rezultate lungi și vice versa, să compună și să afișeze un text unificat bazat pe o colecție de propuneri sau rezultate. + title: Textele participative feature11: - title: 'Conferință' - subtitle: 'Acolo unde evenimentele mari sunt primordiale' - text: >- - Componenta conferinţei permite unei organizaţii să creeze un site web pentru un eveniment de mare anvergură, prin unirea unei serii de întâlniri predefinite (conversaţii, ateliere etc. , care elaborează un program unificat și gestionează participanții. + subtitle: Acolo unde evenimentele mari sunt primordiale + text: Componenta conferinţei permite unei organizaţii să creeze un site web pentru un eveniment de mare anvergură, prin unirea unei serii de întâlniri predefinite (conversaţii, ateliere etc. , care elaborează un program unificat și gestionează participanții. + title: Conferință feature12: - title: 'Chestionare' - subtitle: 'Pentru că opinia comunității tale contează' - text: >- - Componenta de chestionare poate fi utilizată pentru elaborarea și publicarea de sondaje, precum și pentru afișarea și descărcarea rezultatelor. + subtitle: Pentru că opinia comunității tale contează + text: Componenta de chestionare poate fi utilizată pentru elaborarea și publicarea de sondaje, precum și pentru afișarea și descărcarea rezultatelor. + title: Chestionare feature13: - title: 'Sortare' - subtitle: 'Egalitatea și justiția aleatorie' - text: >- - Componenta de sortare permite selectarea unui număr de propuneri (de ex. candidații la un juriu) cu proceduri aleatorii, dar reproductibile, care să garanteze o distribuție nepărtinitoare și uniformă. + subtitle: Egalitatea și justiția aleatorie + text: Componenta de sortare permite selectarea unui număr de propuneri (de ex. candidații la un juriu) cu proceduri aleatorii, dar reproductibile, care să garanteze o distribuție nepărtinitoare și uniformă. + title: Sortare feature14: - title: 'Comentarii' - subtitle: 'Construirea unei inteligențe colective' - text: >- - Componenta de comentarii permite utilizatorilor să adauge comentarii, pentru a identifica comentariul ca fiind favorabil, împotriva obiectului comentat sau neutru, să voteze, să răspundă la acestea și să primească notificări cu privire la răspunsuri. + subtitle: Construirea unei inteligențe colective + text: Componenta de comentarii permite utilizatorilor să adauge comentarii, pentru a identifica comentariul ca fiind favorabil, împotriva obiectului comentat sau neutru, să voteze, să răspundă la acestea și să primească notificări cu privire la răspunsuri. + title: Comentarii feature15: - title: 'Pagini și bloguri' - subtitle: 'Comunitatea ta, informată și actualizată' - text: >- - Componenta de pagini este folosită pentru a crea pagini informative cu formatare de text bogată, imagini și videoclipuri încorporate. Componenta de blog face posibilă crearea postărilor sau ştirilor şi navigarea lor în ordine cronologică. + subtitle: Comunitatea ta, informată și actualizată + text: Componenta de pagini este folosită pentru a crea pagini informative cu formatare de text bogată, imagini și videoclipuri încorporate. Componenta de blog face posibilă crearea postărilor sau ştirilor şi navigarea lor în ordine cronologică. + title: Pagini și bloguri feature16: - title: 'Notificări' - subtitle: 'Informatii personalizate despre continutul interesant' - text: >- - Decidim vă permite să urmăriți orice spațiu sau componentă pentru a primi actualizări de fiecare dată când se întâmplă. + subtitle: Informatii personalizate despre continutul interesant + text: Decidim vă permite să urmăriți orice spațiu sau componentă pentru a primi actualizări de fiecare dată când se întâmplă. + title: Notificări feature17: - title: 'Newsletter' - subtitle: 'Simplu, dar puternic' - text: >- - Componenta newsletter face posibilă trimiterea de e-mailuri tuturor celor înregistrați pe platformă sau, mai selectiv, celor care participă într-un anumit spațiu. + subtitle: Simplu, dar puternic + text: Componenta newsletter face posibilă trimiterea de e-mailuri tuturor celor înregistrați pe platformă sau, mai selectiv, celor care participă într-un anumit spațiu. + title: Newsletter + feature2: + subtitle: puterea de auto-organizare colectivă. + text: 'Este un spaţiu care oferă posibilitatea de a înfiinţa organe sau grupuri de decizie (consilii, grupuri de lucru, comitete etc.). care se reunesc periodic, detaliind componența, enumerarea și geolocalizarea reuniunilor lor; posibilitatea de a participa la aceste lucrări (de exemplu: la participarea în cazul în care capacitatea şi natura reunirii permit acest lucru; adăugarea de puncte pe ordinea de zi sau formularea de observații cu privire la propunerile și deciziile luate de organul respectiv).' + title: Adunări + feature3: + subtitle: dreptul de a decide cu toate garanțiile democratice + text: Consultările reprezintă un spaţiu care face posibilă coordonarea referendumurilor, declanşarea de discuţii şi dezbateri, publicarea rezultatelor votului; poate fi conectat la un sistem securizat de votare electronică. + title: Consultări + feature4: + subtitle: fixarea ordinii de zi a tuturor, la îndemâna tuturor + text: Iniţiativele sunt un spaţiu care permite participanţilor să creeze iniţiative, să îşi definească traiectoria şi obiectivele, să adune aprobări, discuţii, să dezbată şi să difuzeze iniţiative şi să definească punctele de întâlnire în care pot fi colectate semnături de la participanţii sau dezbaterile deschise altor membri ai organizaţiei. + title: Inițiative + feature5: + subtitle: ideile tale în detaliu + text: Componenta de propuneri permite utilizatorului să creeze o propunere folosind un asistent de creație, în comparație cu cele existente, să-l publice pe platformă și să includă informații suplimentare, cum ar fi geolocalizarea sau documentele și imaginile anexate. Această componentă îți permite, de asemenea, să navighezi, să filtrezi și să interacționezi cu un set de propuneri. În plus, cu incubatorul de propuneri poți crea propuneri de colaborare. + title: Propuneri + feature6: + subtitle: decide votul tău + text: 'Componenta de vot oferă organizațiilor posibilitatea de a activa diferite sisteme de vot sau de sprijin în jurul propunerilor: nelimitată, limitată la un anumit prag, ponderată, bazată pe costuri etc.' + title: Votare + feature7: + subtitle: nicio propunere fără un răspuns + text: Componenta de rezultate este utilizată pentru a transforma propunerile în rezultate și pentru a oferi răspunsuri oficiale cu privire la acceptarea sau respingerea acestora, fuzionarea mai multor propuneri într-un singur rezultat. + title: Rezultate + feature8: + subtitle: transparența de la început la sfârșit + text: Componenta „responsabilitate” oferă posibilitatea de a subdiviza rezultatele în proiecte, de a defini și de a aplica statutul progreselor înregistrate în ceea ce privește punerea lor în aplicare, pe lângă expunerea amplorii punerii în aplicare a rezultatelor, grupate pe categorii și domenii de aplicare. + title: Responsabilitate + feature9: + subtitle: să se întâlnească și să nu rateze nimic + text: Componenta de reuniune oferă organizațiilor și participanților posibilitatea de a convoca întâlniri, de a-și stabili locația și ora, să înregistreze și să limiteze participanții, să definească structura și conținutul reuniunii, precum și să publice procesele verbale și propunerile care decurg din acestea. + title: Întâlniri + subtitle: For democratic organizations and collectives of any size and kind. + title: Caracteristici type1: - title: 'Spaţii de participare' - subtitle: 'Pentru ca participanții să facă propuneri și să ia decizii' + title: Spaţii de participare type2: - title: 'Componente' - subtitle: 'Pentru ca participanții și spațiile să interacționeze' - other: - subtitle: 'Dare pentru a combina componentele. Proiectați și implementați un sistem democratic puternic într-un mod ușor și adaptați-l la nevoile organizației dvs.' - cta: - title: 'Descoperă cum funcționează Decidim în profunzime' - button: 'Funcții și caracteristici' - partners: - notice: Logourile entităților cooperante sunt proprietatea intelectuală a titularilor de drepturi de autor respectivi. Acestea nu se încadrează în licența Creative Commons By-SA restul conținutului site-ului este licențiat. - modules: - description: Descriere - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Imagine - name: Nume - type: - community: Comunitate - auth: Autorizare - official: Oficial - used_by: - explain: Aceste oraşe, regiuni şi organizaţii folosesc deja Decidim - type: - city: Orașe - region: Regiuni - organizations: Organizații - testimonials: - n1: - quote: >- - Datorită Decidim, la Barcelona am reuşit să coelaborăm un plan de oraş strategic împreună cu cetăţenii. În 2016 am inaugurat Planul de acțiune municipal sub forma unui proces participativ prin Decidim Barcelona. În prezent, acest plan include aproape 7 000 de propuneri din partea cetățenilor. Unul dintre avantajele utilizării acestei platforme este că puteţi monitoriza în orice moment stadiul punerii în aplicare a propunerilor aprobate. - org: Primăria din Barcelona (2015-2019) - n2: - quote: >- - Odată cu punerea în aplicare a Decidim în Som Energia am generat un spaţiu mai bun pentru participare. Am lansat instrumentul în 2018, găzduirea Adunării Generale a Cooperativei şi câteva luni mai târziu am dezbătut despre Reproiectarea imaginilor şi dezvoltarea colaborativă a Şcolii Som Energia, printre alte procese participative. În câteva luni, au fost înregistrate peste 3 500 de participanți și 5 procese participative; 3 adunări funcţionează şi peste 1 300 de voturi în cadrul ultimului vot al Adunării Generale. - org: Som Energia - n3: - quote: >- - Platforma digitală Decide Meeartha a fost o oportunitate care a fost mai deschisă ca niciodată înainte de mecanismele de participare a cetățenilor la elaborarea Planului de Dezvoltare Municipală al MeThererida 2018-2021. Am avut peste 3.000 de interacţiuni între cetăţeni, inclusiv propuneri, comentarii, sugestii și sprijin pentru obținerea celui mai mare consens posibil cu privire la ce este mai bine pentru orașul nostru. Fără îndoială, platforma Decide Me·rida va continua să fie aliatul nostru pentru a transforma Meτ rida într-o societate din ce în ce mai participativă. - org: Președintele municipal al orașului Me·rida Yucataouncn, Mexic. - n4: - quote: >- - Apreciem că este construită pe democrație și, prin urmare, democrația este un obiectiv important. Principiile democratice precum responsabilitatea, egalitatea și transparența se află în centrul proiectării. - org: Orașul Helsinki - n5: - quote: >- - Aproape fiecare proces participativ care a ajuns la masa noastră, am reuşit să îl rezolvăm folosind regulile de afaceri ale Decidim. Ca instrument, este unul foarte puternic. Cu toate acestea, partea care ni se pare cea mai puternică şi cea mai importantă este comunitatea sa, atât dezvoltatorii, cât şi cei care o folosesc pentru procesele participative. Coexistenţa cu acestea ne-a făcut să apreciem provocările pe care le implică punerea în aplicare a democraţiei participative în lumea reală. - org: Guvernul deschis al oraşului Mexic - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Fundația Mozilla - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Întrebări frecvente - q01: - question: Ce este Decidim? - answer: >- - Decidim este o platformă liberă de democraţie participativă deschisă pentru oraşe şi organizaţii. Dar Decidim este mai mult decât o platformă digitală: este un proiect comun deschis și gratuit și o infrastructură care implică cod, documentație; conceperea, cursurile de formare, un cadru juridic, interfețele colaborative, comunitățile de utilizatori și de facilitare, precum și o viziune comună. - q02: - question: Cine folosește Decidim? - answer: >- - Acesta este utilizat în prezent de orașe și organizații. De fapt, orice grup de oameni îl pot folosi, fie că este vorba de un ONG, de o universitate, de un sindicat, de o cooperativă, de o asociaţie de vecinătate etc. Verificați [lista completă a instanțelor active](/usedby/). - q03: - question: Ce poate face un administrator Decidim? - answer: >- - Configurați cu ușurință procesele participative Doriți să faceți un plan strategic? Sau discutați despre noi reglementări? Sau discutați despre o nouă piață sau o clădire publică pentru a realiza binele comun? Mulțumită Decidim vei putea configura spațiile de participare (inițiative, adunări, procedează sau consultări) și le îmbogățește prin multiple componente disponibile (reuniuni față în față, sondaje, propuneri, votare, urmărirea rezultatelor, observații și multe altele). - q04: - question: Ce poate face un participant (utilizator) la Decidim? - answer: >- - Decidim permite miilor de persoane să se organizeze în mod democratic prin prezentarea de propuneri, în cadrul reuniunilor publice; încurajarea discuțiilor decizionale, luarea deciziilor prin diferite forme de vot și monitorizarea punerii în aplicare a deciziilor. - q05: - question: Ai o Demo? Vreau să folosesc Decidim acum, fără a o instala, pentru a vedea cum funcţionează. - answer: 'Da, avem un [demo](/demo).' - q06: - question: Cât de des este actualizată platforma? - answer: >- - Noi lansăm o nouă versiune aproximativ în fiecare lună. Vezi [înregistrarea versiunilor](https://github.com/decidim/decidim/releases). - q07: - question: Ce trebuie să instalez Decidim? - answer: >- - Instalarea Decidim este uşoară, dar aveţi nevoie de cunoştinţe şi cerinţe tehnice. Consultaţi [documentaţia pentru instalarea Decidim](https://docs.decidim.org/en/install/). - q08: - question: Unde pot găsi foaia de parcurs a proiectului şi caracteristicile planificate? - answer: Puteți găsi [foaia de parcurs a noilor caracteristici ale proiectului pe GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'Ce inseamna ca Decidim este gratis, "libre" si open source?' - answer: >- - Decidim este o platformă pentru participarea cetăţenilor şi a cetăţenilor. Codul sursă este deschis și poate fi inspectat, modificat și îmbunătățit de oricine. Software-ul Decidim este acoperit de [licența AGPL](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Aceasta înseamnă că îl puteți folosi, modifica și redistribui versiunile derivate atâta timp cât respectați licența AGPL. - q10: - question: >- - Am idei pentru noi funcții de îmbunătățire. Vreau să înțeleg mai bine proiectul. Ce pot face? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Am multe îndoieli, de toate felurile ... unde le pot întreba sau rezolva? - answer: >- - Cea mai bună metodă de a-ți rezolva rapid îndoielile este prin intermediul comunității Metadecidim. Intră acum în proces [Support Forum](https://meta.decidim. rg/proceses/supportforum?locale=en) și vezi dacă întrebarea ta există sau dacă ai răspuns și altfel introdu pentru a pune întrebări. Dacă nu vă puteți rezolva problema în acest spațiu, poate că este timpul să ne contactați prin [formularul de contact](/contact). - q12: - question: Există vreun tutorial pentru a începe configurarea? - answer: >- - Poți verifica cea mai recentă versiune a manualului nostru de administrare din [secțiunea de documentare](https://docs.decidim.org). - q13: - question: Ce este contractul social? - answer: >- - Așa numim Codul garanțiilor democratice și Colaborare Democrată. Toți membrii comunității trebuie să aprobe [Contractul Social](http://decidim.org/contract). - q14: - question: Care sunt diferențele cu proiectul Consul / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Ce este comunitatea Metadecidim? - answer: >- - [Metadecidim](http://meta.decidim.org) este comunitatea Decidim care colaborează în proiectarea platformei și construirea proiectului Decidim. Ne întâlnim în mod regulat prin [SOM (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) și [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Mergeți la [meta.decidim.org](http://meta.decidim.org) pentru a urmări apelurile îndeaproape și dacă doriți să vă alăturați comunității. Ne-ar plăcea să ;-) - q16: - question: Mă pot alătura comunităţii Metadecidim chiar dacă nu locuiesc în Barcelona? - answer: >- - Decidim este un proiect care s-a născut la Barcelona şi de aceea există o legătură teritorială puternică cu acest oraş. Dar da, poți colabora online, prin procese participative, dezbateri etc. .... pe care le oferim în Metadecidim. Deşi aţi putea dori să veniţi la Barcelona cândva :) - q17: - question: Dorim să încheiem un acord formal de colaborare. Există vreun model pe care îl putem folosi? - answer: Da, avem șabloane pentru a oficializa acordurile de colaborare. [Vă rugăm să ne contactați](/contact). - q18: - question: Ce fel de membri accepţi în comunitatea metadecidimă? - answer: Oricine are bună-credință și o atitudine corectă față de colaborarea democratică. - q19: - question: Furnizați instalarea gratuită organizațiilor non-profit? - answer: >- - Da, doar dacă sunteți o organizație din Barcelona. Trimiteți-ne un mesaj și veți fi ajutat de Direcția Cercetare, Dezvoltarea şi inovarea spaţiului cetăţenesc european, participarea şi transparenţa Consiliului municipal Barcelona. - q20: - question: Sprijiniți instituțiile? - answer: >- - Da, dar trebuie să ai răbdare. Există o mulţime de instituţii care vor să folosească Decidim chiar acum şi le ajutăm pas cu pas. [Contactează-ne](/contact) pentru orice întrebare și te vom răspunde cât mai curând posibil. - q21: - question: Ce este Asociaţia Decidiemului? - answer: >- - „Asociacion de Software Libre Decidim” (The Decidim Free Software Association) este o asociație democratică pentru guvernanța comunității Decidim. - q22: - question: Cum pot obţine mai multe informaţii despre Asociaţia Decidiemului? - answer: >- - În [adunarea generală a Asociației Decidim](https://meta.decidim. rg/assemblies/general-assembly-association) puteți găsi mai multe informații care să ne fie respectate, să urmăriți activitatea reuniunilor și să verificați informațiile relevante (statute, acorduri juridice, reglementări interne) - q23: - question: Cum pot deveni membru al Asociaţiei Decidiemului? - answer: >- - Acum, oamenii implicați în proiect pot fi parteneri. [Aici explicăm în detaliu cum trebuie să o faci](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: Când s-a născut Asociația Decidiemului? - answer: >- - Asociacio [Decidim este fondat pe 16 februarie 2019 într-o adunare extraordinară a comunității](https://meta.decidim.org/proceses/decidim-gov/f/959/meetings/1169), cu aprobarea statutului organizației. + title: Componente + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Tehnologie liberă și sigură.
Cu toate garanțiile democratice.
Reprogramarea democrației este posibilă acum cu Decidim. + subheading: Decidim este o platformă digitală
pentru participarea cetăţenilor + subhero: + cta: Explore all features + feature1: Planificarea strategică
+ feature2: Bugetarea participativă
+ feature3: Inițiative și
consultări ale cetățenilor + feature4: Procesele
participative + feature5: Adunări + feature6: Comunicare
rețea + intro: Decidim ajută cetăţenii, organizaţiile şi instituţiile publice să se autoorganizeze democratic la toate nivelurile. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Acestea folosesc deja Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Cod + community: Comunitate + contact: Contact + contract: Contract social + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentație + faqs: Întrebări frecvente + features: Caracteristici + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Module + partners: Entități de cooperare + partnership-policy: Partnership policy + press: Apăsați + privacy-policy: Privacy policy + text: Navigation + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim în utilizare + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/ro" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Primăria din Barcelona (2015-2019) + quote: Datorită Decidim, la Barcelona am reuşit să coelaborăm un plan de oraş strategic împreună cu cetăţenii. În 2016 am inaugurat Planul de acțiune municipal sub forma unui proces participativ prin Decidim Barcelona. În prezent, acest plan include aproape 7 000 de propuneri din partea cetățenilor. Unul dintre avantajele utilizării acestei platforme este că puteţi monitoriza în orice moment stadiul punerii în aplicare a propunerilor aprobate. + n2: + org: Som Energia + quote: Odată cu punerea în aplicare a Decidim în Som Energia am generat un spaţiu mai bun pentru participare. Am lansat instrumentul în 2018, găzduirea Adunării Generale a Cooperativei şi câteva luni mai târziu am dezbătut despre Reproiectarea imaginilor şi dezvoltarea colaborativă a Şcolii Som Energia, printre alte procese participative. În câteva luni, au fost înregistrate peste 3 500 de participanți și 5 procese participative; 3 adunări funcţionează şi peste 1 300 de voturi în cadrul ultimului vot al Adunării Generale. + n3: + org: Președintele municipal al orașului Me·rida Yucataouncn, Mexic. + quote: Platforma digitală Decide Meeartha a fost o oportunitate care a fost mai deschisă ca niciodată înainte de mecanismele de participare a cetățenilor la elaborarea Planului de Dezvoltare Municipală al MeThererida 2018-2021. Am avut peste 3.000 de interacţiuni între cetăţeni, inclusiv propuneri, comentarii, sugestii și sprijin pentru obținerea celui mai mare consens posibil cu privire la ce este mai bine pentru orașul nostru. Fără îndoială, platforma Decide Me·rida va continua să fie aliatul nostru pentru a transforma Meτ rida într-o societate din ce în ce mai participativă. + n4: + org: Orașul Helsinki + quote: Apreciem că este construită pe democrație și, prin urmare, democrația este un obiectiv important. Principiile democratice precum responsabilitatea, egalitatea și transparența se află în centrul proiectării. + n5: + org: Guvernul deschis al oraşului Mexic + quote: Aproape fiecare proces participativ care a ajuns la masa noastră, am reuşit să îl rezolvăm folosind regulile de afaceri ale Decidim. Ca instrument, este unul foarte puternic. Cu toate acestea, partea care ni se pare cea mai puternică şi cea mai importantă este comunitatea sa, atât dezvoltatorii, cât şi cei care o folosesc pentru procesele participative. Coexistenţa cu acestea ne-a făcut să apreciem provocările pe care le implică punerea în aplicare a democraţiei participative în lumea reală. + n6: + org: Fundația Mozilla + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Vă mulțumim că ne-ați contactat, vă vom contacta în curând. + title: Vă mulţumim pentru e-mail + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/sv.yml b/locales/sv.yml index b0115c9f..f075dc6d 100644 --- a/locales/sv.yml +++ b/locales/sv.yml @@ -1,448 +1,589 @@ +--- sv: - path: '/sv' - activeLang: 'Svenska' - nav: - text: 'Navigera' - demo: 'Demo' - community: 'Gemenskap' - contract: 'Socialt kontrakt' - code: 'Kod' - docs: - title: 'Dokumentation' - path: 'https://docs.decidim.org/' - blog: 'Blogg' - features: 'Funktioner' - faqs: 'Vanliga frågor' - contact: 'Kontakt' - used_by: 'Decidim används' - partners: 'Samarbete mellan enheter' - modules: 'Moduler' - press: 'Tryck' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Gå med i vårt samtal' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest är ett intensivt 3-dagars program av aktiviteter ägnas åt Decidim projektet, Deltagande demokrati och öppen källkod verktyg för kollektiv intelligens i en tid av global demokrati.' - index: - hero: - heading: 'Fri öppen källkod deltagandedemokrati för städer och organisationer' - subheading: 'Decidim är en digital plattform
för medborgare delaktighet' - intro: 'Fri och säker teknik.
Med alla demokratiska garantier.
Omprogrammering av demokrati är nu möjligt med Decidim.' - video: - play: 'Spela upp video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Stäng video' - subhero: - intro: 'Decidim hjälper medborgare, organisationer och offentliga institutioner att organisera sig demokratiskt i alla skalor.' - feature1: 'Strategisk
planering' - feature2: 'Deltagare
budgetering' - feature3: 'Initiativ och
medborgare samråd' - feature4: 'Deltagande
processer' - feature5: 'Grupper' - feature6: 'Nätverk
kommunikation' - used_by: - title: 'De använder redan Decidim' - cta: 'Se alla' - cta: - title: 'börja använda Decidim idag' - button: - code: 'Kod på Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Demo online - p1: Spela runt och utforska fritt Decidim plattform med vår online-demo. - p2: Decidim är igång på flera instanser som du kan besöka och utforska, Decidim Barcelona i Barcelona City eller så kan du besöka platserna Gava och L'Hospitalet. Men detta är verkliga instanser där man inte riktigt kan leka fritt, som du kanske inte är medborgare i dessa kommuner, och du kan inte utforska dessa platser som administratör. - p3: Om du vill gå vidare är du välkommen att testa Decidim på vår Decidim Demo Site (artighet av våra utvecklare på aLabs). Gå in på demosidan och utforska fritt potentialen i Decidim och dess funktioner. - p4: Du kan logga in som Admin (användarnamn "admin@example.org" och lösenord "decidim123456"). - button: Demo online + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, vår gemenskap' - subtitle: 'En demokratisk gemenskap som förvaltar Decidim projektet i alla dess dimensioner' - intro: 'Metadecidim är en gemenskap som samarbetar i utformningen av plattformen och byggandet av projektet. Tillsammans kan vi utforma och utveckla nya funktioner och rapportera buggar för kontinuerlig förbättring av plattformen.' - cta: 'Kom igång' - features: - title: 'Föreslå nya funktioner' - subtitle: 'Att designa och utveckla Decidim bland alla' - text: 'Du kan skapa debatter om framtiden för Decidim eller föreslå nya funktioner eller förbättringar. Förslag kan få stöd och kommentarer för att visa till exempel det intresse de väcker för samhället och värderar deras utveckling. Förslag som har en sponsor (t.ex. ett kommunfullmäktige eller någon annan enhet), Ansvaret för att söka och tillhandahålla de resurser som krävs för att genomföra deras utveckling kommer att vara till nytta för projektet.' - cta: 'Ange och delta nu' - bug: - title: 'Rapportera en bugg' - subtitle: 'Samarbete för progressiv förbättring' - text: 'Varje ny utgåva av Decidim innehåller nya funktioner och förbättringar användbarhet, men inte allt fungerar först och fel kan dyka upp. Här kan du rapportera fel du hittar och hjälpa utvecklarna att fixa dem snabbt.' - cta: 'Ange och delta nu' - img_alt: 'Decidim Community Photo at Metadecidim Meeting 2016' - timeline: - title: 'Samarbetande design av funktioner' - step1: - title: 'Nytt förslag' - text: 'Funktionell beskrivning' - step2: - title: 'Validerat förslag' - text: 'Teknisk och teknopolitisk validering' - step3: - title: 'Planerat förslag' - text: 'Resurser för utveckling (delade eller inte)' - step4: - title: 'Ärende' - text: 'Teknisk beskrivning' - step5: - title: 'Dra begäran' - text: 'Utvecklad kod' - step6: - title: 'Funcionality gjort' - text: 'Kan användas på nästa version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Kom igång + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadecidim är en gemenskap som samarbetar i utformningen av plattformen och byggandet av projektet. Tillsammans kan vi utforma och utveckla nya funktioner och rapportera buggar för kontinuerlig förbättring av plattformen. + subtitle: En demokratisk gemenskap som förvaltar Decidim projektet i alla dess dimensioner + title: Metadecidim, vår gemenskap contact: - title: Kontakta oss - bot_field: "Fyll inte ut detta om du är människa:" - name: Namn - entity: Enhet + bot_field: 'Fyll inte ut detta om du är människa:' email: E-post - subject: Subject message: Meddelande + name: Namn privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Skicka - thanks: - title: Tack för din e-post - message: Tack för att du kontaktar oss, vi återkommer till dig snart. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Kontakta oss + demo: + button: Demo online + p1: Spela runt och utforska fritt Decidim plattform med vår online-demo. + strong: Try Online + title: Demo online + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Vanliga frågor + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Funktioner' - intro: '

Du kan använda Decidim i en offentlig eller privat organisation, med hundratals eller tusentals potentiella deltagare, till exempel ett kommunfullmäktige, en förening, ett universitet, en frivilligorganisation, ett fackförbund, ett grannkollektiv, eller ett kooperativ...

Tack vare Decidim kommer du att kunna konfigurera mellanslag för deltagande (initiativ, församlingar, processer eller konsultationer) och berika dem genom flera tillgängliga komponenter (ansikte mot ansikte möten, undersökningar, förslag, röstning, uppföljning av resultat, kommentarer och många fler).

' - list: - n1: - title: 'Deltagande
budgetar' - content: 'Den analyserar de framlagda förslagen och främjar ett nytt sätt att fördela gemensamma resurser.' - n2: - title: 'Medborgarinitiativ
och samråd' - content: 'Förstärk din gemenskap genom medborgarinitiativ. Främja relevant röstning genom samråd.' - n3: - title: 'Makten
i ett politiskt nätverk' - content: 'Det krävs överläggningar, samarbete och beslut till en massiv dimension, med tusentals människor som deltar i realtid.' - n4: - title: 'Ett demokratiskt
och flexibelt system' - content: 'Tack vare sin modulära arkitektur och skalbara logik kan du konfigurera ett kraftfullt system för demokratisk styrning i alla typer av organisationer.' - n5: - title: 'Vi tar demokratin
mycket seriöst' - content: 'Decidim garanterar transparens, spårbarhet och integritet av information som aldrig förr. Det ger säkerhet, integritet och sekretess till alla deltagare.' - n6: - title: "Det är din.
Dela det. Förbättra det." - content: 'En plattform designad helt med fri programvara, öppet och samarbetande innehåll tack vare communityn Metadecidim.' - cta: - features: 'Se alla funktioner' - values: 'Gå till socialt kontrakt' + intro: "

Du kan använda Decidim i en offentlig eller privat organisation, med hundratals eller tusentals potentiella deltagare, till exempel ett kommunfullmäktige, en förening, ett universitet, en frivilligorganisation, ett fackförbund, ett grannkollektiv, eller ett kooperativ...

Tack vare Decidim kommer du att kunna konfigurera mellanslag för deltagande (initiativ, församlingar, processer eller konsultationer) och berika dem genom flera tillgängliga komponenter (ansikte mot ansikte möten, undersökningar, förslag, röstning, uppföljning av resultat, kommentarer och många fler).

" page: feature1: - title: 'Dialoger' - subtitle: 'att demokratisera gemensamma frågor, steg för steg' - text: >- - Processer är ett utrymme som gör det möjligt att skapa, aktivera/inaktivera och hantera olika deltagarprocesser. Dessa skiljer sig från andra utrymmen genom att vara strukturerade i olika faser där alla komponenter kan införlivas. Exempel på deltagandeprocesser är: en valprocess för medlemmar i en kommitté, deltagande budgetering, en strategisk planeringsprocess, samverkande skrivning av en förordning eller norm, utformning av ett stadsrum eller utformning av en offentlig politisk plan. - feature2: - title: 'Grupper' - subtitle: 'kraften i kollektiv självorganisering' - text: >- - Är ett utrymme som erbjuder möjligheten att inrätta beslutande organ eller grupper (råd, arbetsgrupper, kommittéer etc. som träffas med jämna mellanrum, beskriver deras sammansättning, notering och geolocating deras möten, och tillåta att delta i dem (till exempel: delta om sittande kapacitet och karaktär av monteringen så tillåter, lägga till punkter på dagordningen, eller kommentera de förslag och beslut som fattats av detta organ). - feature3: - title: 'Samråd' - subtitle: 'rätten att fatta beslut med alla demokratiska garantier' - text: >- - Samråd är ett utrymme som gör det möjligt att samordna folkomröstningar, utlösa diskussioner och debatter, få omröstningsresultat publicerade, den kan anslutas till ett säkert e-röstningssystem. - feature4: - title: 'Initiativ' - subtitle: "fastställa allas dagordning, inom allas räckvidd" - text: >- - Initiativ är ett utrymme som gör det möjligt för deltagarna att samarbeta skapa initiativ, definiera deras bana och mål, samla stöd, diskutera, debattera och sprida initiativ och definiera mötesplatser där underskrifter kan samlas in från deltagare eller debatter som öppnas för andra medlemmar i organisationen. - feature5: - title: 'Förslag' - subtitle: 'dina idéer i detalj' - text: >- - Komponenten förslag gör det möjligt för användaren att skapa ett förslag med hjälp av en skaparguide, jämföra det med de befintliga, publicera den på plattformen och inkludera ytterligare information såsom geolocation eller bifogade dokument och bilder. Denna komponent låter dig också navigera, filtrera och interagera med en uppsättning förslag. Dessutom kan du med den förslags-inkubator skapa samarbetsförslag. - feature6: - title: 'Omröstning' - subtitle: 'bestäm din röst' - text: >- - Röstkomponenten ger organisationer möjlighet att aktivera olika röstnings- eller stödsystem kring förslag: obegränsat, begränsat till en given tröskel, viktad, kostnadsbaserad, etc. - feature7: - title: 'Resultat' - subtitle: 'inget förslag utan svar' - text: >- - Resultatkomponenten används för att omvandla förslag till resultat och ge officiella svar på deras godkännande eller avslag. slå samman olika förslag till ett enda resultat. - feature8: - title: 'Ansvarsskyldighet' - subtitle: 'transparens från början till slut' - text: >- - Ansvarskomponenten ger möjlighet att dela in resultat i projekt, definiera och tillämpa framstegsstatus kring genomförandet, samt visa omfattningen av resultatens genomförande grupperat efter kategorier och omfattning. - feature9: - title: 'Möten' - subtitle: 'att träffas och inte missa något' - text: >- - Möteskomponenten ger organisationer och deltagare möjlighet att sammankalla möten, bestämma var de befinner sig och tid, registrera och begränsa deltagare, definiera strukturen och innehållet i mötet samt publicera protokollen och de resulterande förslagen. + subtitle: att demokratisera gemensamma frågor, steg för steg + text: 'Processer är ett utrymme som gör det möjligt att skapa, aktivera/inaktivera och hantera olika deltagarprocesser. Dessa skiljer sig från andra utrymmen genom att vara strukturerade i olika faser där alla komponenter kan införlivas. Exempel på deltagandeprocesser är: en valprocess för medlemmar i en kommitté, deltagande budgetering, en strategisk planeringsprocess, samverkande skrivning av en förordning eller norm, utformning av ett stadsrum eller utformning av en offentlig politisk plan.' + title: Dialoger feature10: - title: 'Deltagartexter' - subtitle: 'att analysera, syntetisera och bygga gemensamt' - text: >- - Komponent för deltagande texter kan användas för att omvandla långa textdokument till olika förslag eller resultat och, vice versa, att komponera och visa en enhetlig text baserad på en samling förslag eller resultat. + subtitle: att analysera, syntetisera och bygga gemensamt + text: Komponent för deltagande texter kan användas för att omvandla långa textdokument till olika förslag eller resultat och, vice versa, att komponera och visa en enhetlig text baserad på en samling förslag eller resultat. + title: Deltagartexter feature11: - title: 'Konferens' - subtitle: 'Där stora evenemang har premiär' - text: >- - Konferenskomponenten gör det möjligt för en organisation att skapa en webbplats för ett stort evenemang genom att gå med i en serie fördefinierade möten (chattar, workshops etc. , sätta ihop ett enhetligt program och hantera deltagare. + subtitle: Där stora evenemang har premiär + text: Konferenskomponenten gör det möjligt för en organisation att skapa en webbplats för ett stort evenemang genom att gå med i en serie fördefinierade möten (chattar, workshops etc. , sätta ihop ett enhetligt program och hantera deltagare. + title: Konferens feature12: - title: 'Undersökningar' - subtitle: 'Eftersom åsikten i din gemenskap är viktig' - text: >- - Enkäternas komponent kan användas för att utforma och publicera enkäter samt för att visa och ladda ner resultaten. + subtitle: Eftersom åsikten i din gemenskap är viktig + text: Enkäternas komponent kan användas för att utforma och publicera enkäter samt för att visa och ladda ner resultaten. + title: Undersökningar feature13: - title: 'Tilldelning' - subtitle: 'Jämlikhet och rättvisa slumpmässighet' - text: >- - Tilldelningskomponenten gör det möjligt att välja ett antal förslag (t.ex. kandidater för en jury) med slumpmässiga, men reproducerbara, förfaranden som garanterar icke-partisk och enhetlig fördelning. + subtitle: Jämlikhet och rättvisa slumpmässighet + text: Tilldelningskomponenten gör det möjligt att välja ett antal förslag (t.ex. kandidater för en jury) med slumpmässiga, men reproducerbara, förfaranden som garanterar icke-partisk och enhetlig fördelning. + title: Tilldelning feature14: - title: 'Kommentarer' - subtitle: 'Att bygga en kollektiv intelligens' - text: >- - Komponenten kommentarer gör det möjligt för användare att lägga till kommentarer, för att identifiera kommentaren som favorit, mot eller neutralt i förhållande till det kommenterade objektet, att rösta kommentarer, svara på dem och att få meddelanden om svar. + subtitle: Att bygga en kollektiv intelligens + text: Komponenten kommentarer gör det möjligt för användare att lägga till kommentarer, för att identifiera kommentaren som favorit, mot eller neutralt i förhållande till det kommenterade objektet, att rösta kommentarer, svara på dem och att få meddelanden om svar. + title: Kommentarer feature15: - title: 'Sidor och bloggar' - subtitle: 'Din gemenskap, informerad och uppdaterad' - text: >- - Sidornas komponent används för att skapa informativa sidor med textformatering, inbäddade bilder och videor. Bloggen komponenten gör det möjligt att skapa inlägg eller nyheter, och att navigera dem kronologiskt. + subtitle: Din gemenskap, informerad och uppdaterad + text: Sidornas komponent används för att skapa informativa sidor med textformatering, inbäddade bilder och videor. Bloggen komponenten gör det möjligt att skapa inlägg eller nyheter, och att navigera dem kronologiskt. + title: Sidor och bloggar feature16: - title: 'Notiser' - subtitle: 'Personlig information om intressant innehåll' - text: >- - Decidim gör att du kan spåra utrymme eller komponent för att få uppdateringar varje gång de inträffar. + subtitle: Personlig information om intressant innehåll + text: Decidim gör att du kan spåra utrymme eller komponent för att få uppdateringar varje gång de inträffar. + title: Notiser feature17: - title: 'Nyhetsbrev' - subtitle: 'Enkel men kraftfull' - text: >- - Nyhetsbrevet komponenten gör det möjligt att skicka e-post till alla registrerade i plattformen eller, mer selektivt, till dem som deltar i ett visst utrymme. + subtitle: Enkel men kraftfull + text: Nyhetsbrevet komponenten gör det möjligt att skicka e-post till alla registrerade i plattformen eller, mer selektivt, till dem som deltar i ett visst utrymme. + title: Nyhetsbrev + feature2: + subtitle: kraften i kollektiv självorganisering + text: 'Är ett utrymme som erbjuder möjligheten att inrätta beslutande organ eller grupper (råd, arbetsgrupper, kommittéer etc. som träffas med jämna mellanrum, beskriver deras sammansättning, notering och geolocating deras möten, och tillåta att delta i dem (till exempel: delta om sittande kapacitet och karaktär av monteringen så tillåter, lägga till punkter på dagordningen, eller kommentera de förslag och beslut som fattats av detta organ).' + title: Grupper + feature3: + subtitle: rätten att fatta beslut med alla demokratiska garantier + text: Samråd är ett utrymme som gör det möjligt att samordna folkomröstningar, utlösa diskussioner och debatter, få omröstningsresultat publicerade, den kan anslutas till ett säkert e-röstningssystem. + title: Samråd + feature4: + subtitle: fastställa allas dagordning, inom allas räckvidd + text: Initiativ är ett utrymme som gör det möjligt för deltagarna att samarbeta skapa initiativ, definiera deras bana och mål, samla stöd, diskutera, debattera och sprida initiativ och definiera mötesplatser där underskrifter kan samlas in från deltagare eller debatter som öppnas för andra medlemmar i organisationen. + title: Initiativ + feature5: + subtitle: dina idéer i detalj + text: Komponenten förslag gör det möjligt för användaren att skapa ett förslag med hjälp av en skaparguide, jämföra det med de befintliga, publicera den på plattformen och inkludera ytterligare information såsom geolocation eller bifogade dokument och bilder. Denna komponent låter dig också navigera, filtrera och interagera med en uppsättning förslag. Dessutom kan du med den förslags-inkubator skapa samarbetsförslag. + title: Förslag + feature6: + subtitle: bestäm din röst + text: 'Röstkomponenten ger organisationer möjlighet att aktivera olika röstnings- eller stödsystem kring förslag: obegränsat, begränsat till en given tröskel, viktad, kostnadsbaserad, etc.' + title: Omröstning + feature7: + subtitle: inget förslag utan svar + text: Resultatkomponenten används för att omvandla förslag till resultat och ge officiella svar på deras godkännande eller avslag. slå samman olika förslag till ett enda resultat. + title: Resultat + feature8: + subtitle: transparens från början till slut + text: Ansvarskomponenten ger möjlighet att dela in resultat i projekt, definiera och tillämpa framstegsstatus kring genomförandet, samt visa omfattningen av resultatens genomförande grupperat efter kategorier och omfattning. + title: Ansvarsskyldighet + feature9: + subtitle: att träffas och inte missa något + text: Möteskomponenten ger organisationer och deltagare möjlighet att sammankalla möten, bestämma var de befinner sig och tid, registrera och begränsa deltagare, definiera strukturen och innehållet i mötet samt publicera protokollen och de resulterande förslagen. + title: Möten + subtitle: For democratic organizations and collectives of any size and kind. + title: Funktioner type1: - title: 'Utrymmen för deltagande' - subtitle: 'För deltagare att göra förslag och fatta beslut' + title: Utrymmen för deltagande type2: - title: 'Komponenter' - subtitle: 'För deltagare och utrymmen att interagera' - other: - subtitle: 'Våga kombinera komponenterna. Designa och implementera ett kraftfullt demokratiskt system på ett enkelt sätt och anpassa det till organisationens behov' - cta: - title: 'Upptäck hur Decidim fungerar på djupet' - button: 'Funktioner och funktioner' - partners: - notice: De samarbetande enheternas logotyper är immateriella rättigheter för respektive upphovsrättsinnehavare. De faller inte under Creative Commons By-SA-licensen resten av webbplatsens innehåll är licensierade med. - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: Namn - type: - community: Gemenskap - auth: Tillstånd - official: Officiell - used_by: - explain: Dessa städer, regioner och organisationer använder redan Decidim - type: - city: Städer - region: Regioner - organizations: Organisationer - testimonials: - n1: - quote: >- - Tack vare Decidim har vi i Barcelona tillsammans med medborgarna lyckats producera en strategisk stadsplan. Under 2016 invigde vi den kommunala handlingsplanen i form av en deltagande process genom Decidim Barcelona. För närvarande omfattar denna plan nästan 7 tusen förslag medborgare. En av fördelarna med att använda denna plattform är att man hela tiden kan övervaka genomförandet av de godkända förslagen. - org: Stadshuset i Barcelona (2015-2019) - n2: - quote: >- - Med genomförandet av Decidim i Som Energia har vi genererat ett vänligare utrymme för deltagande. Vi släppte verktyget 2018, värd för generalförsamlingen av kooperativa och månader senare debatterade vi Image Redesign och samarbete utveckling av School of Som Energia, bland annat deltagande processer. På några månader har mer än 3500 deltagare anmält sig, 5 deltagarprocesser, 3 församlingar och mer än 1300 röster i den senaste generalförsamlingens omröstning. - org: Som Energia - n3: - quote: >- - Den Decide Me rida digital plattform var en möjlighet som öppnades som aldrig tidigare de mekanismer för medborgare deltagande för utarbetandet av den kommunala utvecklingsplanen för Me rida 2018-2021. Vi hade mer än 3000 medborgare interaktioner inklusive förslag, kommentarer, förslag och stöd för att uppnå högsta möjliga konsensus om vad som är bäst för vår stad. Utan tvekan kommer Decide Me rida plattformen fortsätta att vara vår bundsförvant för att göra Me rida till ett samhälle som blir alltmer delaktigt. - org: Kommunal president i Me rida Yucata n, Mexiko. Kommunfullmäktige i Me rida Yucata n, Mexiko - n4: - quote: >- - Vad vi uppskattar är att den är byggd med demokrati i åtanke och därför är demokratin ett stort fokus. Demokratiska principer som ansvarsskyldighet, jämlikhet och öppenhet är centrala i utformningen. - org: Helsingfors stad - n5: - quote: >- - Nästan varje deltagarprocess som har kommit till vårt bord har vi kunnat lösa den med hjälp av Decidids affärsregler. Som ett verktyg är det en mycket stark sådan. Men den del som verkar starkast och viktigast för oss är dess gemenskap, både utvecklare och de som använder den för deltagandeprocesser. Samexistens med dem har fått oss att inse de utmaningar som är förknippade med genomförandet av deltagandedemokrati i verkligheten. - org: Öppen regering i Mexico City - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Vanliga frågor - q01: - question: Vad är Decidim? - answer: >- - Decidim är en fri öppen källkod-plattform för deltagande demokrati för städer och organisationer. Men Decidim är mer än en digital plattform: det är en vanlig fri och öppen projekt och infrastruktur som involverar kod, dokumentation, design, utbildningskurser, en rättslig ram, samverkansgränssnitt, användar- och underlättandegemenskaper samt en gemensam vision. - q02: - question: Vem använder Decidim? - answer: >- - Den används för närvarande av städer och organisationer. I själva verket kan vilken grupp av människor som helst använda den, oavsett om det är en frivilligorganisation, universitet, fackföreningar, kooperativ, grannskapsförening, etc. Kontrollera [komplett lista över aktiva instanser](/usedby/). - q03: - question: Vad kan en Decidim administratör göra? - answer: >- - Konfigurera enkelt deltagarprocesser Vill du göra en strategisk plan? Eller diskutera nya bestämmelser? Eller diskutera ett nytt torg eller en offentlig byggnad för att uppnå det gemensamma bästa? Tack vare Decidim kommer du att kunna konfigurera deltagarutrymmen (initiativ, församlingar, processer eller konsultationer) och berika dem genom flera tillgängliga komponenter (ansikte mot ansikte möten, undersökningar, förslag, röstning, uppföljning av resultat, kommentarer och många fler). - q04: - question: Vad kan en deltagare (användare) av Decidim göra? - answer: >- - Decidim gör det möjligt för tusentals människor att organisera sig demokratiskt genom att lägga fram förslag, delta i offentliga möten, främja beslutsfattande diskussioner, besluta genom olika former av röstning och övervaka genomförandet av beslut. - q05: - question: Har du en Demo? Jag vill använda Decidim nu, utan att installera den, för att se hur det fungerar. - answer: 'Ja, vi har en [online demo](/demo).' - q06: - question: Hur ofta uppdateras plattformen? - answer: >- - Vi släpper en ny version ungefär varje månad. Se [rekordet av versioner](https://github.com/decidim/decidim/releases). - q07: - question: Vad behöver jag för att installera Decidim? - answer: >- - Det är enkelt att installera Decidim men du behöver lite kunskap och tekniska krav. Se [dokumentationen för installation av Decidim](https://docs.decidim.org/en/install/). - q08: - question: Var hittar jag projektets färdplan och de planerade funktionerna? - answer: Du hittar [färdplanen för nya funktioner i projektet på GitHub] (https://github.com/decidim/decidim/projects/16). - q09: - question: 'Vad betyder det att Decidim är gratis, "libre" och öppen källkod?' - answer: >- - Decidim är en plattform för medborgarnas deltagande som skapats av folket och för människorna. Dess källkod är öppen och kan inspekteras, modifieras och förbättras av vem som helst. Decidim mjukvaran omfattas av [AGPL licensen](https://en. ikipedia.org/wiki/GNU_Affero_General_Public_License). Det betyder att du kan använda den, modifiera och distribuera härledda versioner av den så länge du respekterar AGPL-licensen. - q10: - question: >- - Jag har idéer för nya förbättringar. Jag vill ha en bättre förståelse för projektet. Vad kan jag göra? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: Jag har många tvivel, av alla slag ... var kan jag fråga dem eller lösa dem? - answer: >- - Det bästa sättet att lösa dina tvivel snabbt är genom Metadecidim gemenskapen. Ange nu i processen [Support Forum](https://meta.decidim. rg/processes/supportforum?locale=en) och se om din fråga finns eller om den har besvarats och annars matas in för att ställa frågor. Om du inte kan lösa ditt problem i detta utrymme, kanske är det dags att kontakta oss via [kontaktformuläret](/contact). - q12: - question: Finns det någon handledning för att börja ställa in den? - answer: >- - Du kan kontrollera den senaste versionen av vår administratörshandbok i avsnittet [Dokumentation (https://docs.decidim.org). - q13: - question: Vad är det sociala kontraktet? - answer: >- - Det är så vi kallar vår Code of Democratic Guarantees och Democratic Collaboration. Alla medlemmar i gemenskapen måste stödja [det sociala kontraktet](http://decidim.org/contract). - q14: - question: Vilka är skillnaderna med Consul Project / Bestäm Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Vad är Metadecidim gemenskapen? - answer: >- - [Metadecidim](http://meta.decidim.org) är den gemenskap av Decidim som samarbetar i utformningen av plattformen och byggandet av Decidim projektet. Vi träffas regelbundet genom [SOM (Metadecidim Operative Sessions)](https://meta.decidim. rg/assemblies/eix-comunitat?locale=es) och [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Gå till [meta.decidim.org](http://meta.decidim.org) för att följa samtalen noga och om du vill gå med i communityn. Vi vill gärna ;-) - q16: - question: Kan jag gå med i Metadecidim samhället även om jag inte bor i Barcelona? - answer: >- - Decidim är ett projekt som föddes i Barcelona och det är därför det finns en stark territoriell förbindelse med denna stad. Men ja, du kan samarbeta online, genom deltagarprocesser, debatter etc. .... som vi tillhandahåller i Metadecidim. Även om du kanske vill komma till Barcelona någon gång :) - q17: - question: Vi vill ingå ett formellt samarbetsavtal. Finns det några mallar vi kan använda? - answer: Ja, vi har mallar för att formalisera samarbetsavtal. [Kontakta oss](/contact). - q18: - question: Vilken typ av medlemmar accepterar du i Metadecidim community? - answer: Alla som har god tro och en korrekt inställning till demokratiskt samarbete. - q19: - question: Har du gratis installation till ideella organisationer? - answer: >- - Ja, bara om du är en Barcelona baserad organisation. Skicka ett meddelande till oss så kommer ni att få hjälp av direktoratet för forskning, Utveckling och innovation av området för medborgarrätt, delaktighet och öppenhet i Barcelona stadsfullmäktige. - q20: - question: Stödjer du institutioner? - answer: >- - Ja, men du måste ha tålamod. Det finns många institutioner som vill använda Decidim just nu och vi hjälper dem steg för steg. [Kontakta oss](/contact) för alla frågor så svarar vi dig så snart som möjligt. - q21: - question: Vad är Decidim Association? - answer: >- - "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) är en demokratisk förening för styrningen av Decidim gemenskapen. - q22: - question: Hur kan jag få mer information om Decidim Association? - answer: >- - I [generalförsamlingen av Decidim Association](https://meta.decidim. rg/assemblies/general-assembly-association) Du kan hitta mer information abous oss, följa aktiviteten på mötena och kontrollera relevant information (stadgar, juridiska avtal, interna bestämmelser) - q23: - question: Hur kan jag bli medlem i Decidim Association? - answer: >- - Nu kan de personer som är involverade i projektet vara partners. [Här förklarar vi i detalj hur du måste göra det](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: När föddes Decidim Association? - answer: >- - Associacio [Decidim är grundat den 16 februari 2019 i en extraordinär församling av samhället](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), med godkännande av organisationens stadgar. + title: Komponenter + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Fri och säker teknik.
Med alla demokratiska garantier.
Omprogrammering av demokrati är nu möjligt med Decidim. + subheading: Decidim är en digital plattform
för medborgare delaktighet + subhero: + cta: Explore all features + feature1: Strategisk
planering + feature2: Deltagare
budgetering + feature3: Initiativ och
medborgare samråd + feature4: Deltagande
processer + feature5: Grupper + feature6: Nätverk
kommunikation + intro: Decidim hjälper medborgare, organisationer och offentliga institutioner att organisera sig demokratiskt i alla skalor. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: De använder redan Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blogg + close_menu: Close menu + code: Kod + community: Gemenskap + contact: Kontakt + contract: Socialt kontrakt + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Dokumentation + faqs: Vanliga frågor + features: Funktioner + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Moduler + partners: Samarbete mellan enheter + partnership-policy: Partnership policy + press: Tryck + privacy-policy: Privacy policy + text: Navigera + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim används + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/sv" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Stadshuset i Barcelona (2015-2019) + quote: Tack vare Decidim har vi i Barcelona tillsammans med medborgarna lyckats producera en strategisk stadsplan. Under 2016 invigde vi den kommunala handlingsplanen i form av en deltagande process genom Decidim Barcelona. För närvarande omfattar denna plan nästan 7 tusen förslag medborgare. En av fördelarna med att använda denna plattform är att man hela tiden kan övervaka genomförandet av de godkända förslagen. + n2: + org: Som Energia + quote: Med genomförandet av Decidim i Som Energia har vi genererat ett vänligare utrymme för deltagande. Vi släppte verktyget 2018, värd för generalförsamlingen av kooperativa och månader senare debatterade vi Image Redesign och samarbete utveckling av School of Som Energia, bland annat deltagande processer. På några månader har mer än 3500 deltagare anmält sig, 5 deltagarprocesser, 3 församlingar och mer än 1300 röster i den senaste generalförsamlingens omröstning. + n3: + org: Kommunal president i Me rida Yucata n, Mexiko. Kommunfullmäktige i Me rida Yucata n, Mexiko + quote: Den Decide Me rida digital plattform var en möjlighet som öppnades som aldrig tidigare de mekanismer för medborgare deltagande för utarbetandet av den kommunala utvecklingsplanen för Me rida 2018-2021. Vi hade mer än 3000 medborgare interaktioner inklusive förslag, kommentarer, förslag och stöd för att uppnå högsta möjliga konsensus om vad som är bäst för vår stad. Utan tvekan kommer Decide Me rida plattformen fortsätta att vara vår bundsförvant för att göra Me rida till ett samhälle som blir alltmer delaktigt. + n4: + org: Helsingfors stad + quote: Vad vi uppskattar är att den är byggd med demokrati i åtanke och därför är demokratin ett stort fokus. Demokratiska principer som ansvarsskyldighet, jämlikhet och öppenhet är centrala i utformningen. + n5: + org: Öppen regering i Mexico City + quote: Nästan varje deltagarprocess som har kommit till vårt bord har vi kunnat lösa den med hjälp av Decidids affärsregler. Som ett verktyg är det en mycket stark sådan. Men den del som verkar starkast och viktigast för oss är dess gemenskap, både utvecklare och de som använder den för deltagandeprocesser. Samexistens med dem har fått oss att inse de utmaningar som är förknippade med genomförandet av deltagandedemokrati i verkligheten. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Tack för att du kontaktar oss, vi återkommer till dig snart. + title: Tack för din e-post + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/tr.yml b/locales/tr.yml index aae64c90..2703ac0b 100644 --- a/locales/tr.yml +++ b/locales/tr.yml @@ -1,448 +1,589 @@ +--- tr: - path: '/tr' - activeLang: 'English' - nav: - text: 'Navigation' - demo: 'Demo' - community: 'Community' - contract: 'Social Contract' - code: 'Code' - docs: - title: 'Documentation' - path: 'https://docs.decidim.org/' - blog: 'Blog' - features: 'Özellikler' - faqs: 'FAQs' - contact: 'İletişim' - used_by: 'Decidim in use' - partners: 'Cooperating entities' - modules: 'Modules' - press: 'Press' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: 'Join our call' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: 'DecidimFest is an intense 3-day program of activities devoted to the Decidim project, participatory democracy and open source tools for collective intelligence in the era of Global Democracy.' - index: - hero: - heading: 'Free Open-Source participatory democracy for cities and organizations' - subheading: 'Decidim is a digital platform
for citizen participation' - intro: 'Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim.' - video: - play: 'Play video' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: 'Close video' - subhero: - intro: 'Decidim helps citizens, organizations and public institutions self-organize democratically at every scale.' - feature1: 'Strategic
planning' - feature2: 'Participatory
budgeting' - feature3: 'Initiatives and
citizen consultations' - feature4: 'Participative
processes' - feature5: 'Kurullar' - feature6: 'Networked
communication' - used_by: - title: 'They are already using Decidim' - cta: 'See all' - cta: - title: 'start using Decidim today' - button: - code: 'Code on Github' - footer: - supported_by: 'Supported by' - attribution: '- Creative Commons By-SA' - demo: - title: Online Demo - p1: Play around and explore freely the Decidim platform with our online demo. - p2: Decidim is up and running on several instances that you can visit and explore, Decidim Barcelona at Barcelona City or you can visit the sites of Gavà and L'Hospitalet. But these are real instances where you can't really play around freely, as you might not be a citizen of those municipalities, and you can't explore those sites as an admin. - p3: If you want to go further you are welcome to test Decidim on our Decidim Demo Site (courtesy of our developers at aLabs). Enter the demo site and freely explore the potential of Decidim and its features. - p4: You can log in as Admin (username "admin@example.org" and password "decidim123456"). - button: Online demo + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: 'Metadecidim, our community' - subtitle: 'A democratic community that manages the Decidim project in all its dimensions' - intro: 'Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform.' - cta: 'Get started' - features: - title: 'Propose new features' - subtitle: 'To design and develop Decidim among all' - text: 'You can create debates about the future of Decidim or propose new features or improvements. Proposals can receive endorsements and comments, to show, for example, the interest they arouse in the community and value their development. Proposals that have a sponsor (such as a city council or any other entity), responsible for seeking and providing the necessary resources to carry out their development, will be useful for the project.' - cta: 'Enter and participate now' - bug: - title: 'Report a bug' - subtitle: 'Collaboration for progressive improvement' - text: 'Each new release of Decidim incorporates new features and usability improvements, but not everything works at first and errors may appear. Here you can report bugs you find and help the developers to fix them quickly.' - cta: 'Enter and participate now' - img_alt: 'Decidim Community Photo at Metadecidim Meeting 2016' - timeline: - title: 'Collaborative design of functionalities' - step1: - title: 'Yeni teklif' - text: 'Functional description' - step2: - title: 'Validated proposal' - text: 'Technical and technopolitical validation' - step3: - title: 'Planned proposal' - text: 'Resources for development (shared or not)' - step4: - title: 'Issue' - text: 'Technical description' - step5: - title: 'Pull request' - text: 'Developed code' - step6: - title: 'Funcionality done' - text: 'Avaliable on the next version' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Get started + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform. + subtitle: A democratic community that manages the Decidim project in all its dimensions + title: Metadecidim, our community contact: - title: Contact us - bot_field: "Don’t fill this out if you're human:" - name: Adı - entity: Entity + bot_field: 'Don’t fill this out if you''re human:' email: E-posta - subject: Subject message: Message + name: Adı privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

+ message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" send: Gönder - thanks: - title: Thanks for your email - message: Thank you for contacting us, we will get back to you soon. + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contact us + demo: + button: Online demo + p1: Play around and explore freely the Decidim platform with our online demo. + strong: Try Online + title: Online Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: Frequently asked questions + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: 'Özellikler' - intro: '

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

' - list: - n1: - title: 'Participatory
budgets' - content: 'It analyses the submitted proposals and promotes a new way of distributing common resources.' - n2: - title: 'Citizen’s initiatives
and consultations' - content: 'Empower your community through citizen initiatives. Promote relevant voting through consultations.' - n3: - title: 'The power
of a political network' - content: 'It takes deliberation, collaboration and decision to a massive dimension, with thousands of people participating in real time.' - n4: - title: 'A democratic
and flexible system' - content: 'Thanks to its modular architecture and scalable logic, you can configure a powerful system of democratic governance in all kinds of organizations.' - n5: - title: 'We take democracy
very seriously' - content: 'Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants.' - n6: - title: "It's yours.
Share it. Improve it." - content: 'A platform designed entirely with free software, open and collaborative content thanks to the community Metadecidim.' - cta: - features: 'See all features' - values: 'Go to social contract' + intro: "

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

" page: feature1: - title: 'Katılımcı süreçler' - subtitle: 'to democratize common issues, step by step' - text: >- - Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan. - feature2: - title: 'Kurullar' - subtitle: 'the power of collective self-organization' - text: >- - Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body). - feature3: - title: 'Danışma' - subtitle: 'the right to decide with all democratic guarantees' - text: >- - Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. - feature4: - title: 'Girişimler' - subtitle: "setting everyone's agenda, within everyone's reach" - text: >- - Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. - feature5: - title: 'Teklifler' - subtitle: 'your ideas in detail' - text: >- - The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. - feature6: - title: 'Oylama' - subtitle: 'decide your vote' - text: >- - The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc. - feature7: - title: 'Sonuçlar' - subtitle: 'no proposal without an answer' - text: >- - The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. - feature8: - title: 'Sorumluluk' - subtitle: 'transparency from beginning to end' - text: >- - The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. - feature9: - title: 'Toplantılar' - subtitle: 'to meet and not miss anything' - text: >- - The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + subtitle: to democratize common issues, step by step + text: 'Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan.' + title: Katılımcı süreçler feature10: - title: 'Katılımcı metinler' - subtitle: 'to analyze, synthesize, and build in common' - text: >- - The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + subtitle: to analyze, synthesize, and build in common + text: The participatory texts component can be used to convert lengthy text documents into various proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + title: Katılımcı metinler feature11: - title: 'Konferans' - subtitle: 'Where big events are premiered' - text: >- - The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + subtitle: Where big events are premiered + text: The conference component allows an organization to create a website for a big event by joining up a series predefined meetings (chats, workshops etc.), putting together a unified program and managing attendees. + title: Konferans feature12: - title: 'Anketler' - subtitle: 'Because the opinion of your community matters' - text: >- - The surveys component can be used to design and publish surveys and to display and download their results. + subtitle: Because the opinion of your community matters + text: The surveys component can be used to design and publish surveys and to display and download their results. + title: Anketler feature13: - title: 'Sıralama' - subtitle: 'Equality and the justice of randomness' - text: >- - The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + subtitle: Equality and the justice of randomness + text: The sortition component allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + title: Sıralama feature14: - title: 'Yorumlar' - subtitle: 'Building a collective intelligence' - text: >- - The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + subtitle: Building a collective intelligence + text: The comments component enables users to add comments, to identify the comment as being in favor, against or neutral in relation to the commented object, to vote comments, respond to them and to receive notifications about responses. + title: Yorumlar feature15: - title: 'Pages and blogs' - subtitle: 'Your community, informed and up to date' - text: >- - The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + subtitle: Your community, informed and up to date + text: The pages component is used to create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + title: Pages and blogs feature16: - title: 'Notifications' - subtitle: 'Personalized information on interesting contents' - text: >- - Decidim enables you to track any space or component to receive updates every time they happen. + subtitle: Personalized information on interesting contents + text: Decidim enables you to track any space or component to receive updates every time they happen. + title: Notifications feature17: - title: 'Newsletter' - subtitle: 'Simple but powerful' - text: >- - The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + subtitle: Simple but powerful + text: The newsletter component makes possible to send emails to everyone registered in the platform or, more selectively, to those who participate in a specific space. + title: Newsletter + feature2: + subtitle: the power of collective self-organization + text: 'Is a space that offers the possibility of setting decision-making bodies or groups (councils, working groups, committees, etc.) that meet up periodically, detailing their composition, listing and geolocating their meetings, and allowing to take part in them (for instance: attending if the seating capacity and nature of the assembly so permits, adding items to the agenda, or commenting on the proposals and decisions taken by that body).' + title: Kurullar + feature3: + subtitle: the right to decide with all democratic guarantees + text: Consultations is a space that makes it possible to coordinate referendums, trigger discussions and debates, get voting results published; it can be connected to a secure e-voting system. + title: Danışma + feature4: + subtitle: setting everyone's agenda, within everyone's reach + text: Initiatives is a space that allows participants to collaboratively create initiatives, define their trajectory and goals, gather endorsements, discuss, debate and disseminate initiatives and define meeting points where signatures can be collected from attendees or debates opened to other members of the organization. + title: Girişimler + feature5: + subtitle: your ideas in detail + text: The proposals component allows the user to create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. + title: Teklifler + feature6: + subtitle: decide your vote + text: 'The voting component offers organizations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc.' + title: Oylama + feature7: + subtitle: no proposal without an answer + text: The results component is used to turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. + title: Sonuçlar + feature8: + subtitle: transparency from beginning to end + text: The accountability component offers the possibility of subdividing results into projects, defining and applying progress statuses around their implementation, as well as displaying the extent of the results’ implementation grouped by categories and scopes. + title: Sorumluluk + feature9: + subtitle: to meet and not miss anything + text: The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + title: Toplantılar + subtitle: For democratic organizations and collectives of any size and kind. + title: Özellikler type1: - title: 'Spaces for participation' - subtitle: 'For participants to make proposals and make decisions' + title: Spaces for participation type2: - title: 'Bileşenler' - subtitle: 'For participants and spaces to interact' - other: - subtitle: 'Dare to combine the components. Design and deploy a powerful democratic system in an easy way and adapt it to your organization’s needs' - cta: - title: 'Discover how Decidim works in depth' - button: 'Functions and features' - partners: - notice: The cooperating entities logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. - modules: - description: Açıklama - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Fotoğraf - name: Adı - type: - community: Community - auth: Authorization - official: Resmi - used_by: - explain: These cities, regions and organizations are already using Decidim - type: - city: Cities - region: Regions - organizations: Organizasyonlar - testimonials: - n1: - quote: >- - Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. - org: Barcelona City Hall (2015-2019) - n2: - quote: >- - With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. - org: Som Energia - n3: - quote: >- - The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. - org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico - n4: - quote: >- - What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. - org: City of Helsinki - n5: - quote: >- - Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. - org: Open Government of Mexico City - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: Frequently asked questions - q01: - question: What is Decidim? - answer: >- - Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common's free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision. - q02: - question: Who is currently using Decidim? - answer: >- - It is currently used by cities and organizations. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). - q03: - question: What can a Decidim administrator do? - answer: >- - Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). - q04: - question: What can a participant (user) of Decidim do? - answer: >- - Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. - q05: - question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. - answer: 'Yes, we have an [online demo](/demo).' - q06: - question: How often is the platform updated? - answer: >- - We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). - q07: - question: What do I need to install Decidim? - answer: >- - Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). - q08: - question: Where can I find the project roadmap and the planned features? - answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). - q09: - question: 'What does it mean that Decidim is for free, "libre" and open source?' - answer: >- - Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. - q10: - question: >- - I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: I have many doubts, of all kinds...where can I ask them or solve them? - answer: >- - The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). - q12: - question: Is there any tutorial to start setting it up? - answer: >- - You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). - q13: - question: What is the Social Contract? - answer: >- - That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). - q14: - question: What are the differences with Consul Project / Decide Madrid? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: What is the Metadecidim community? - answer: >- - [Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the [SOM (Metadecidim Operative Sessions)](https://meta.decidim.org/assemblies/eix-comunitat?locale=es) and the [LAB Research Seminars](https://meta.decidim.org/assemblies/eix-lab). Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-) - q16: - question: Can I join the Metadecidim community even if I don't live in Barcelona? - answer: >- - Decidim is a project that was born in Barcelona and that is why there is a strong territorial bond with this city. But yes, you can collaborate online, through participatory processes, debates, etc .... that we provide in Metadecidim. Although you might want to come to Barcelona sometime :) - q17: - question: We want to make a formal collaboration agreement. Are there any templates we can use? - answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). - q18: - question: What kind of members you accept into the Metadecidim community? - answer: Anybody who has good faith and a correct attitude towards democratic collaboration. - q19: - question: Do you provide free installation to non-profit organizations? - answer: >- - Yes, only if you are a Barcelona based organization. Send us a message and you will be helped by the Directorate of Research, Development and Innovation of the Area of Citizenship Rights, Participation and Transparency of Barcelona City Council. - q20: - question: Do you support institutions? - answer: >- - Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. - q21: - question: What is the Decidim Association? - answer: >- - The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. - q22: - question: How can I get more information about the Decidim Association? - answer: >- - In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) - q23: - question: How can I become a member of the Decidim Association? - answer: >- - Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) - q24: - question: When was the Decidim Association born? - answer: >- - The Associació [Decidim is founded on February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + title: Bileşenler + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Free and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim. + subheading: Decidim is a digital platform
for citizen participation + subhero: + cta: Explore all features + feature1: Strategic
planning + feature2: Participatory
budgeting + feature3: Initiatives and
citizen consultations + feature4: Participative
processes + feature5: Kurullar + feature6: Networked
communication + intro: Decidim helps citizens, organizations and public institutions self-organize democratically at every scale. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: They are already using Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Code + community: Community + contact: İletişim + contract: Social Contract + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentation + faqs: FAQs + features: Özellikler + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Modules + partners: Cooperating entities + partnership-policy: Partnership policy + press: Press + privacy-policy: Privacy policy + text: Navigation + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in use + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: "/tr" + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Barcelona City Hall (2015-2019) + quote: Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. + n2: + org: Som Energia + quote: With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. + n3: + org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico + quote: The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. + n4: + org: City of Helsinki + quote: What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. + n5: + org: Open Government of Mexico City + quote: Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Thank you for contacting us, we will get back to you soon. + title: Thanks for your email + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/locales/zh.yml b/locales/zh.yml index 35a3b7dd..46f2f93f 100644 --- a/locales/zh.yml +++ b/locales/zh.yml @@ -1,448 +1,589 @@ -zh-CN: - path: '/zh' - activeLang: 'Distr.' - nav: - text: 'Navigation' - demo: '演示模式' - community: '社区' - contract: '社会合同' - code: '代码' - docs: - title: '文件' - path: 'https://docs.decidim.org/' - blog: '博客' - features: '功能' - faqs: '常见问题' - contact: '聯繫人' - used_by: '使用中的分解' - partners: '合作实体' - modules: '模块' - press: '新闻社' - legal-notice: 'Legal notice' - privacy-policy: 'Privacy policy' +--- +zh: + '404': + intro: Maybe you were looking for... + subtitle: Looks like you've followed a broken link or entered a URL that doesn't exist on this site. + title: Page not found + about: + about: '["Support us", "Contact us", "Our assembly", "Press"]' + intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_at_opencollective: Support us at Open Collective + support_intro: We want to contribute to the democratization of society through the construction of technology, methodologies, practices, standards, actions, narratives, and values, in a free, open, collaborative and reflective way. + support_subtitle: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + support_title: Support Decidim + title: About Decidim + values: + v1: Compromise and responsibility + v2: Equal opportunities and quality indicators + v3: Open content to share and cooperate + v4: Free software to enable autonomy + v5: Data confidentiality + v6: Transparency, traceability and integrity + v7: Continuous improvement and collaboration between organizations + values_cta: Read the social contract + values_intro: "

From the beginning, Decidim has a social contract that includes the values of the project.

All members of the Decidim Free Software Association undertake to respect this contract.

" + values_title: Our values alert: - title: 'Decidim Fest 2021 :: Democracy, Technology and Global Justice | 20, 21 and 22 October' - subtitle: '加入我们的通话' - link: https://meta.decidim.org/conferences/DecidimFest21/f/1615/ - desc: '十进制是一项为期3天的强化活动方案,专门用于十进制项目。 在全球民主时代,参与性民主和公开的集体情报来源工具。' - index: - hero: - heading: '面向城市和组织的开放源码参与性民主' - subheading: 'Decidim 是公民参与的数字平台
' - intro: '自由和安全的技术。
有所有的民主保障。
现在可以通过十进制重新编程民主。' - video: - play: '播放视频' - url: 'https://www.youtube-nocookie.com/embed/f6JMgJAQ2tc' - close: '关闭视频' - subhero: - intro: '腐化有助于公民、组织和公共机构在每个规模上进行民主组织。' - feature1: '战略
规划' - feature2: '参与式
预算' - feature3: '倡议和
公民协商' - feature4: '参与性的
进程' - feature5: '程序集' - feature6: '网络
通信' - used_by: - title: '他们已经在使用 Decidim' - cta: '查看全部' - cta: - title: '今天开始使用 Decidimm' - button: - code: 'Github 代码' - footer: - supported_by: 'Supported by' - attribution: '- 知识共享副版' - demo: - title: 在线演示 - p1: 使用我们的在线演示来自由地播放并探索“Decidim”平台。 - p2: 你可以访问和探索的几个实例已经起步并在运行, 在巴塞罗那市腐烂巴塞罗那 或您可以访问 GavaadicL'Hospitalet。 但这些是您真的不能自由玩的真实例子, 因为您可能不是这些市镇的公民,您不能作为管理员探索这些网站。 - p3: 如果您想要更进一步,欢迎您在我们的Decidim Demo站点测试Decidim Decidim(我们的开发人员在 aLabs上的礼貌)。 进入演示站点并自由探索Decidim及其功能的潜力。 - p4: 您可以登录为 Admin (用户名"admin@example.org" 和密码"decision im123456"). - button: 在线演示 + button: Read more + p1: The Future of The Internet · October 13-14 + strong: Decidim Fest 22 + blog: + latest: Latest blog post + read_more: Read more + subtitle: Latest news from Decidim. + tags: + title: Articles tagged with %{tagname} + title: Blog + case_study: + n1: + org: City of Helsinki + quote: We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. + n2: + org: Code for Japan + quote: Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + n3: + org: European Commission + quote: The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. community: - title: '梅塔决定姆,我们的社区' - subtitle: '一个民主社区,负责管理各方面的“Decidim”项目' - intro: 'Metadecidim 是一个在设计平台和建造项目方面进行协作的社区。 我们可以共同设计和开发新的功能并报告漏洞,以不断改进平台。' - cta: '开始使用' - features: - title: '提出新功能' - subtitle: '设计和开发在所有人之间的变形' - text: '您可以创建关于Decidim未来的辩论或提出新的功能或改进。 提案可以获得认可和评论,以表明它们对社区的兴趣并重视其发展。 有提案国的提案(例如城市理事会或任何其他实体) 负责寻求和提供必要资源以进行发展的项目将是有益的。' - cta: '现在进入并参与' - bug: - title: '报告错误' - subtitle: '为逐步改进而进行的合作' - text: '每个新版本的“Decidim”包含新的功能和可用性改进,但不是所有功能都能起作用,可能出现错误。 您可以在这里报告您发现的错误并帮助开发者快速修复它们。' - cta: '现在进入并参与' - img_alt: '2016 年Metadecidim Meeting at Decidim Community Photo' - timeline: - title: '功能的协作设计' - step1: - title: '新提案' - text: '函数描述' - step2: - title: '已验证的提案' - text: '技术和技术论证。' - step3: - title: '计划的提案' - text: '发展资源(分享与否)' - step4: - title: '问题' - text: '技术说明' - step5: - title: '拉取请求' - text: '已开发的代码' - step6: - title: '退约已完成' - text: '可在下一个版本上访问' + community1: Propose and help define new features + community2: Report bugs and help the developers fix them + community3: Help shape the future of the platform + cta: Go to Metadecidim + figcaption: The Decidim Community during the Decidim Fest 2021 + img_alt: Decidim Community Photo at Metadecidim Meeting 2016 + intro: Metadecidim is a community that collaborates in the design of the platform and the construction of the project. Together we can design and develop new features and report bugs for continuous improvement of the platform. + subtitle: A democratic community that manages the Decidim project in all its dimensions + title: Metadecidim, our community contact: - title: 联系我们 - bot_field: "如果您是人类,请不要填写:" - name: 名称 - entity: 实体 - email: 电子邮件地址 - subject: Subject - message: 留言 + bot_field: 'Don’t fill this out if you''re human:' + email: Email + message: Message + name: Name privacy_policy: accept: I accept the Privacy Policy - message: >- -

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

- send: 发送 - thanks: - title: 感谢您的电子邮件 - message: 感谢您与我们联系,我们将很快与您联系。 + message: "

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

" + send: Send message + subtitle: If you’d like to get in touch, fill in the contact form or send us an email at + title: Contact Decidim + demo: + button: Online demo + p1: Play around and explore freely the Decidim platform with our online demo. + strong: Try Online + title: Online Demo + faqs: + cta: Read all FAQs + questions: + q01: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q02: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q03: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q04: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q05: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q06: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q07: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q08: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q09: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + q1: + answer: 'Decidim is a Free Open-Source participatory democracy platform for cities and organizations. But Decidim is more than a digital platform: it’s a common''s free and open project and infrastructure involving code, documentation, design, training courses, a legal framework, collaborative interfaces, user and facilitation communities, and a common vision.' + question: What is Decidim? + type: about + q10: + answer: You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report). If you want to actively participate in the Metadecidim community, you can attend Community Meetings. Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). + question: I have ideas for new improvement features. I want to have a better understanding of the project. What can I do? + type: features + q11: + answer: The best way to solve your doubts quickly is through the Metadecidim community. Enter now in the process [Support Forum](https://meta.decidim.org/processes/supportforum?locale=en) and see if your question exists or if it has been answered and otherwise enter to ask questions. If you can't resolve your problem in this space, maybe it's time to contact us through the [contact form](/contact). + question: I have many doubts, of all kinds...where can I ask them or solve them? + type: about + q12: + answer: You can check the latest version of our admin manual in the [Documentation section](https://docs.decidim.org). + question: Is there any tutorial to start setting it up? + type: install + q13: + answer: That's how we call our Code of Democratic Guarantees and Democratic Collaboration. All members of the community must endorse the [Social Contract](http://decidim.org/contract). + question: What is the Social Contract? + type: community + q14: + answer: 'There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question.' + question: What are the differences with Consul Project / Decide Madrid? + type: features + q15: + answer: "[Metadecidim](http://meta.decidim.org) is the community of Decidim that collaborates in the design of the platform and the construction of the Decidim project. We meet regularly through the Community Meetings, for issues related to the technological aspects of the platform and the Labs witc are [Research](https://meta.decidim.org/assemblies/eix-lab) oriented meetings. Our annual conference is Decidim Fest. Go to [meta.decidim.org](http://meta.decidim.org) to follow the calls closely and if you want to join the community. We'd love to ;-)" + question: What is the Metadecidim community? + type: community + q16: + answer: Of course you can. People do so through participatory processes, debates, translations, etc. that you might find in Metadecidim. Decidim was born in Barcelona and that is why there is a strong territorial bond with this city, but above all, it's a project for the commons. + question: Can I join the Metadecidim community even if I don't live in Barcelona? + type: community + q17: + answer: Anybody who has good faith and a correct attitude towards democratic collaboration. + question: What kind of members you accept into the Metadecidim community? + type: community + q18: + answer: The "Asociacion de Software Libre Decidim" (The Decidim Free Software Association) is a democratic association for the governance of the Decidim community. It was founded on [February 16, 2019 in an extraordinary assembly of the community](https://meta.decidim.org/processes/decidim-gov/f/959/meetings/1169), with the approval of the organization statutes. + question: What is the Decidim Association? + type: association + q19: + answer: In the [general assembly of the Decidim Association](https://meta.decidim.org/assemblies/general-assembly-association) you can find more info abous us, follow the activity of the meetings and check relevant information (statutes, legal agreements, the internal regulations) + question: How can I get more information about the Decidim Association? + type: association + q2: + answer: It is currently used by cities and organizations worldwide. In fact, any group of people can use it, whether it is an NGO, university, trade union, cooperative, neighbourhood association, etc. Check the [complete list of currently active instances](/usedby/). + question: Who is currently using Decidim? + type: about + q20: + answer: Now the people involved in the project can be partners. [Here we explain in detail how you have to do it](https://meta.decidim.org/assemblies/QuieroSerSocia?locale=es) + question: How can I become a member of the Decidim Association? + type: association + q21: + answer: Yes you can! Decidim is a non profit project and for the moment it depends completely on funding. Please find all details to fund the project at [OpenCollective](https://opencollective.com/decidim) + question: I want to fund the project. How can I proceed? + type: association + q22: + answer: Yes, we have templates to formalize collaboration agreements. [Please contact us](/contact). + question: We want to make a formal collaboration agreement. Are there any templates we can use? + type: association + q23: + answer: Yes, but you have to be patient. There are a lot of institutions that want to use Decidim right now and we are helping them step by step. [Contact us](/contact) for any question and we will answer you as soon as possible. + question: Do you support institutions? + type: about + q24: + answer: Decidim and the Decidim logo are registered by the Association, they cannot be used as a commercial product nor cannot be sold. If used, the credit has to be referenced to the project. You can read more about this in our [Trademark policy](/trademark-policy). + question: What is Decidim's trademark policy? + type: association + q3: + answer: Easily configure participatory processes Do you want to make a strategic plan? Or discuss new regulations? Or discuss a new square or a public building to achieve the common good? Thanks to Decidim you will be able to configure participation spaces (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more). + question: What can a Decidim administrator do? + type: users + q4: + answer: Decidim makes it possible for thousands of people to organize themselves democratically by making proposals, attending public meetings, fostering decision-making discussions, deciding through different forms of voting and monitoring the implementation of decisions. + question: What can a participant (user) of Decidim do? + type: users + q5: + answer: Yes, we have an [online demo](/demo). + question: Do you have a Demo? I want to use Decidim now, without installing it, to see how it works. + type: features + q6: + answer: We release a new version approximately every month. See the [record of versions](https://github.com/decidim/decidim/releases). + question: How often is the platform updated? + type: features + q7: + answer: Installing Decidim is easy but you need some knowledge and technical requirements. See the [documentation for installing Decidim](https://docs.decidim.org/en/install/). + question: What do I need to install Decidim? + type: install + q8: + answer: You can find the [roadmap of new features of the project at GitHub](https://github.com/decidim/decidim/projects/16). + question: Where can I find the project roadmap and the planned features? + type: features + q9: + answer: Decidim is a platform for citizen participation made by the people and for people. Its source code is open and can be inspected, modified, and enhanced by anyone. The Decidim software is covered by the [AGPL license](https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License). That means that you can use it, modify it and redistribute derived versions of it as long as you respect the AGPL license. + question: What does it mean that Decidim is for free, "libre" and open source? + type: install + subtitle: If you can’t find your question answered below, contact us at hola@decidim.org + title: FAQs + types: + about: About Decidim + association: Association + community: Community and social contract + features: Roadmap and features + install: Installation and license + installation: Installation and license + users: Users and roles features: - title: '功能' - intro: '

您可以在一个公共和私人组织中使用Decidim,拥有数百或数千名潜在参与者, 例如城市理事会、协会、大学、非政府组织、工会、邻里集体或合作社……

多亏了Decidim,您将能够配置参与空间(倡议、组装) 通过多种现有组成部分(面对面会议、调查、提案、表决、成果后续行动、评论和更多)丰富这些内容。

' - list: - n1: - title: '参与性
预算' - content: '它分析了提交的提案,并促进了新的分配共同资源的方式。' - n2: - title: '公民倡议
和协商' - content: '通过公民倡议赋予你的社区权力。通过协商促进相关的投票。' - n3: - title: '政治网络的
权力' - content: '它需要大规模的审议、合作和决定,有数千人实时参与。' - n4: - title: '民主的
和灵活的制度' - content: '由于其模块化结构和可调整的逻辑,你可以在各种组织中配置一个强有力的民主治理系统。' - n5: - title: '我们非常严肃地对待民主
' - content: '欺骗性确保信息的透明度、可追踪性和完整性,它为所有参与者提供安全、隐私和保密性。' - n6: - title: "这是你的。
分享它。提升它。" - content: '一个完全使用免费软件、开放和协作内容设计的平台,感谢社区Metadecision im。' - cta: - features: '查看所有功能' - values: '转到社交合同' + intro: "

You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative...

Thanks to Decidim you will be able to configure spaces for participation (initiatives, assemblies, processes or consultations) and enrich them through the multiple available components (face-to-face meetings, surveys, proposals, voting, follow-up of results, comments and many more).

" page: feature1: - title: '参与进程' - subtitle: '逐步实现共同问题的民主化' - text: >- - 进程是一个空间,可以创建、激活/取消激活和管理各种参与进程。 这些空间与其他空间不同,在不同阶段分成不同的结构,所有组成部分都可以纳入其中。 参与进程的例子有:委员会成员的选举进程、参与性预算编制、战略规划进程。 合作编写条例或规范、设计城市空间或制定公共政策计划。 - feature2: - title: '程序集' - subtitle: '集体组织的权力' - text: >- - 是否有可能设立决策机构或小组(理事会、工作组、委员会等)。 定期开会,详细说明他们的组成、名单和会议地理定位, 并允许参加这些会议(例如:如果座位容量和集会性质允许,出席) 在议程中增列项目,或对该机构提出的建议和决定作出评论)。 - feature3: - title: '协商' - subtitle: '在所有民主保障下作出决定的权利' - text: >- - 协商是一个能够协调全民投票、触发讨论和辩论、公布投票结果的场所。 它可以与安全的电子投票系统连接。 - feature4: - title: '倡议' - subtitle: "设定每个人的议程,在每个人的能力范围内" - text: >- - 倡议是一个空间,使参与者能够协作制定倡议,确定其轨迹和目标,收集赞同和讨论, • 辩论和宣传各项倡议,并确定会议点,以便能够从参加者或向该组织其他成员开放的辩论中收集签名。 - feature5: - title: '建议' - subtitle: '您的想法详情' - text: >- - 提议的组成部分允许用户使用创建向导创建一个提议,并将其与现有的提议进行比较。 在平台上发布,包含更多信息,如地理定位或附加文件和图像。 此组件还允许您浏览、过滤和与一组建议互动。此外,您可以通过建议孵化器创建合作建议。 - feature6: - title: '表 决' - subtitle: '决定您的投票' - text: >- - 表决部分为各组织提供了在提案周围启动不同的表决或支助系统的可能性:不受限制,只限于某个门槛、加权和基于成本等因素。 - feature7: - title: '成果' - subtitle: '没有没有答案的提案' - text: >- - 成果构成部分被用来将提案变成成果,并对其被接受或拒绝作出正式反应, 将各种提议合并为单一结果。 - feature8: - title: '问责制' - subtitle: '透明度从开始到结束' - text: >- - 问责制构成部分提供了将成果细分为项目的可能性,界定和适用围绕项目执行的进展状况。 并显示按类别和范围分类的结果实施程度。 - feature9: - title: '会议' - subtitle: '不要错过任何内容' - text: >- - 会议构成部分为各组织和与会者提供了召开会议的机会,确定会议地点和时间。 登记和限制与会者,确定会议的结构和内容以及出版会议记录和由此产生的建议。 + subtitle: To democratize common issues, step by step + text: 'Processes is a space that allows to create, activate/deactivate, and manage various participatory processes. These are distinguished from other spaces by being structured in different phases within which all of the components can be incorporated. Examples of participatory processes are: an election process for members of a committee, participatory budgeting, a strategic planning process, the collaborative writing of a regulation or norm, the design of an urban space or the production of a public policy plan.' + title: Participatory processes feature10: - title: '参与性案文' - subtitle: '分析、合成和构建共同的' - text: >- - 参与性案文部分可用于将冗长的文本文件转化为各种建议或结果, 反之亦然,以各种提案或结果为基础撰写和显示一个统一的文本。 + subtitle: To analyze, synthesize, and build in common + text: Can be used to convert long text documents into several proposals or results and, vice versa, to compose and display a unified text based on a collection of proposals or results. + title: Participatory texts feature11: - title: 'Original: ENGLISH' - subtitle: '大型事件被抢走的地方' - text: >- - 会议构成部分允许一个组织通过联合预定的一系列会议(聊天室、讲习班等),为一个大型活动创建一个网站。 ,建立一个统一的程序并管理参与者。 + subtitle: Where big events are premiered + text: Create a website for a big event. Unify the program by joining up a series predefined meetings (chats, workshops, etc.), and manage attendees. + title: Conference feature12: - title: '调查' - subtitle: '因为您的社区意见很重要。' - text: >- - 调查部分可以用来设计和公布调查,并显示和下载其结果。 + subtitle: Because the opinion of your community matters + text: Design and publish surveys. Display and download results. + title: Surveys feature13: - title: '排序方式' - subtitle: '平等和随意司法' - text: >- - 排序部分允许选择一些建议 (例如) 有保证不带偏见和统一分配的随机但可复现的程序的陪审团候选人名单。 + subtitle: Equality and the justice of randomness + text: Allows to select a number of proposals (e.g. candidates for a jury) with random, yet reproducible, procedures that guarantees non-biased and uniform distributions. + title: Sortition feature14: - title: '评论' - subtitle: '建立集体情报' - text: >- - 评论组件允许用户添加评论,以识别该评论为收藏夹, 对被评论的对象反对或保持中立,对其进行表决,对其进行表决,对其作出答复,并接收有关答复的通知。 + subtitle: Building a collective intelligence + text: Enables users to add comments, to value them in favour, against or neutral, vote them, answer and receive notifications about responses. + title: Comments feature15: - title: '页面和博客' - subtitle: '您的社群已知并已更新' - text: >- - 页面组件用于创建内容丰富的文本格式、嵌入图片和视频的信息页面。 博客组件可以创建帖子或新闻,并按时间顺序导航。 + subtitle: Your community, informed and up to date + text: Create informative pages with rich text formatting, embedded pictures and videos. The blog component makes possible the creation of posts or news, and to navigate them chronologically. + title: Pages and blogs feature16: - title: '通知' - subtitle: '关于有趣内容的个性化信息' - text: >- - Decidim 允许您跟踪任何空间或组件以便每次收到更新。 + subtitle: Personalised information on interesting content + text: Decidim enables you to track any space or component so that you can receive updates whenever they happen. + title: Notifications feature17: - title: '通讯' - subtitle: '简单但强力' - text: >- - 通讯组件使得有可能向在平台注册的所有人发送电子邮件,或更加有选择地发送给参与特定空间的人。 + subtitle: Simple but powerful + text: Send emails to everyone registered in the platform or to those who participate in a specific space. + title: Newsletter + feature2: + subtitle: The power of collective self-organization + text: Makes it possible to set up decision-making bodies or groups (councils, working groups, commissions, etc.) that meet regularly, detailing their composition, listing and geolocating their meetings. It allows participation in them, for example, attending in person or online, adding issues to the agenda, or commenting on the proposals and decisions taken by that body. + title: Assemblies + feature3: + subtitle: The right to decide with all democratic guarantees + text: Makes it possible to coordinate referendums, trigger discussions and debates, get voting results published and connect to a secure e-voting system. + title: Votings + feature4: + subtitle: Setting everyone's agenda, within everyone's reach + text: Participants can create collaborative initiatives, define their path and goals, gather endorsements, discuss, debate and disseminate initiatives, set meeting points where signatures can be collected from attendees or debates open to other members of the organisation. + title: Initiatives + feature5: + subtitle: Your ideas in detail + text: Create a proposal using a creation wizard, compare it with the existing ones, publish it on the platform and include additional information such as geolocation or attached documents and images. This component also allows you to navigate, filter and interact with a set of proposals. In addition, with the proposal-incubator you can create collaborative proposals. + title: Proposals + feature6: + subtitle: Decide your choice + text: 'Offers organisations the possibility of activating different voting or support systems around proposals: unlimited, limited to a given threshold, weighted, cost-based, etc. Backed by secure and encrypted e-voting technology.' + title: Voting + feature7: + subtitle: No proposal without an answer + text: Turn proposals into results and give official responses concerning their acceptance or rejection, merging various proposals into a single result. + title: Results + feature8: + subtitle: End-to-end transparency + text: It offers the possibility to subdivide results into projects, to define and apply progress states around their implementation, as well as to show the degree of achievement of results grouped by categories and scopes. + title: Accountability + feature9: + subtitle: To meet and not miss anything + text: The meeting component offers organizations and participants the opportunity to convene meetings, determine their location and time, register and limit attendees, define the structure and content of the meeting as well as publishing the minutes, and the resulting proposals. + title: Meetings + subtitle: For democratic organizations and collectives of any size and kind. + title: Features type1: - title: '参与空间' - subtitle: '与会者提出建议和作出决定' + title: Spaces for participation type2: - title: '组件' - subtitle: '与会者和空间进行互动' - other: - subtitle: '合成组件。轻松设计和部署一个强大的民主系统,使之适应您的组织的需要' - cta: - title: '发现Decidim如何深度工作' - button: '功能和功能' - partners: - notice: 合作实体标识是各自版权持有人的知识产权。 它们不属于 创作共用协议副协议 的范围。网站其他内容被许可使用。 - modules: - description: Description - explanation: By using modules you can extend Decidim functionality and share it with others. They allow you to easily upgrade in the future. See the documentation for making your own module. - image: Image - name: 名称 - type: - community: 社区 - auth: 授权 - official: 官方的 - used_by: - explain: 这些城市、地区和组织已经在使用 Decidim - type: - city: 城市 - region: 地区 - organizations: 组织 - testimonials: - n1: - quote: >- - 由于德基姆的努力,我们在巴塞罗那设法与公民共同制定了一项战略性城市计划。 2016年,我们启动了《城市行动计划》,其形式是通过Decidim Barcelona开展参与进程。 目前,这项计划包括近7 000个公民提案。 使用这个平台的优点之一是,您可以随时监测批准的建议的执行情况。 - org: 巴塞罗那市政厅(2015-2019年) - n2: - quote: >- - 随着《圣日报》的推行,我们为参与创造了一个更加狭窄的空间。 我们在2018年发布了该工具。 主持合作社大会的几个月后,我们讨论了“Som Energia学校的形象重新设计与合作发展”的问题。 在其他参与性进程中也应如此。 在几个月内,3 500多名参与者登记参加了5个参与进程。 大会上次投票中有3个正在运作的议会和1 300多个选票。 - org: Som Energia - n3: - quote: >- - 《1981年Merida决定》的数字平台是一个前所未有的机会,它为制定《1982年马里达2018-2021年城市发展计划》提供了公民参与机制。 我们有3 000多名公民的互动,包括建议、评论和意见。 建议和支持就我们城市的最佳做法达成尽可能最高的共识。 毫无疑问,我们将继续成为我们的盟友,促使《1981年决定》成为一个日益具有参与性的社会。 - org: Participal President of Merida Yucatatann, Mexico. City Council of Merida Yucatan, 1981-1981. Mexico - n4: - quote: >- - 我们赞赏的是,它是在牢记民主的基础上建立起来的,因此民主是一个主要的重点。 问责、平等和透明度等民主原则是设计的核心。 - org: 赫尔辛基城 - n5: - quote: >- - 几乎每一个参与性进程都来到我们的桌面上,我们都能够利用十进制的商业规则解决这个问题。 作为一种工具,它是一种非常有力的工具。 然而,对我们来说似乎最强有力和最重要的部分是其社区,无论是开发者还是那些将其用于参与进程的人。 与他们合作使我们认识到在现实世界中实行参与性民主所涉及的挑战。 - org: 墨西哥城开放政府 - n6: - quote: >- - We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. - org: Mozilla Foundation - n7: - quote: >- - The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. - org: OpenForum Europe Research Director, European Union - faqs: - title: 常见问题 - q01: - question: 什么是十进制? - answer: >- - “变迁”是城市和组织的一个自由开放源码参与性民主平台。 但Decidim 不仅仅是一个数字平台:这是一个公共的免费开放项目和涉及代码、文档的基础设施。 设计、培训班、法律框架、协作接口、用户和促进社区以及共同愿景。 - q02: - question: 目前谁在使用 Decidim? - answer: >- - 城市和组织目前正在使用该系统。 事实上,无论是非政府组织、大学、工会、合作社、邻里协会等等,任何群体都可以使用它。 检查[当前活动实例的完整列表](/usedby/)。 - q03: - question: Decidim管理员可以做什么? - answer: >- - 轻松配置参与进程。你想要制定一个战略计划吗? 或讨论新的条例?或讨论新的广场或公共建筑以实现共同利益? 多亏了Decidim,您将能够配置参与空间 (倡议、组装、) 通过多种现有组成部分(面对面会议、调查、提案、表决、成果后续行动、评论和更多)丰富这些内容。 - q04: - question: Decidim的参与者(用户)可以做什么? - answer: >- - 欺骗使数以千计的人能够通过提出建议、出席公开会议而民主地组织自己。 • 促进决策讨论,通过不同形式的表决作出决定,并监测决定的执行情况。 - q05: - question: 你有一个降级吗?我想现在在没有安装它的情况下使用Decidim来查看它是如何工作的。 - answer: '是的,我们有一个[在线演示](/demo)。' - q06: - question: 平台更新频率? - answer: >- - 我们大约每月发布一个新版本。查看[版本记录](https://github.com/decisionim/decisionim/releases)。 - q07: - question: 我需要安装Decidim? - answer: >- - 安装Decidim很容易,但您需要一些知识和技术要求。请参阅[安装Decidim的文档](https://docs.decisionim.org/en/install/)。 - q08: - question: 我在哪里可以找到项目路线图和计划的特征? - answer: 您可以在 GitHub 找到[项目新特征路线图](https://github.com/decisionim/decisionim/projects/16)。 - q09: - question: '虚线是指免费的“libre”和开源的?' - answer: >- - “欺骗”是人民和人民参与的一个平台。 其源代码已打开,可以由任何人检查、修改和增强。Decidim软件由[AGPL许可证](https://en)覆盖。 ikipedia.org/wiki/GNU_Affero_General_Public_Licse)。这意味着只要您尊重AGPL许可,您就可以使用它,修改它并重新发布派生版本。 - q10: - question: >- - 我有新的改进功能的想法。我想更好地了解这个项目,我可以做什么? - answer: >- - You can collaborate in multiple ways. One of them is through the [Metadecidim](http://meta.decidim.org) community. If you want to propose new features, [go here](https://meta.decidim.org/processes/roadmap). If you have detected errors and want to notify them, [go to this process](https://meta.decidim.org/processes/bug-report?locale=es). If you want to actively participate in the Metadecidim community, you can attend the monthly [Metadecidim Operative Sessions](https://meta.decidim.org/assemblies/eix-comunitat). Register as a participant of the community and participate with us. If your thing is the code, [come to Github](https://github.com/decidim/decidim). If you are a researcher, you might be interested in coming to the [LAB Metadecidim Seminars](https://meta.decidim.org/assemblies/eix-lab). - q11: - question: 我有许多疑虑,各种怀疑……我可以在哪里问他们或解决他们? - answer: >- - 快速解决您的疑问的最好方法是通过 Metaddecidim 社区。现在进入进程 [Support Forum](https://meta.decision im)。 rg/process/supportforum?locale=en,查看您的问题是否存在,或者是否已经回答,或者输入提问。 如果你不能解决你在这个空间中的问题,也许现在是通过[联系表单](/contact)联系我们的时候了。 - q12: - question: 有教程开始设置吗? - answer: >- - 您可以在 [Documentation section ](https://docs.decisionim.org) 中查看最新版本的管理员手册。 - q13: - question: 什么是社会契约? - answer: >- - 这就是我们称之为《民主保障和民主协作守则》的方式,社区所有成员都必须认可[社会合同](http://decisionim.org/contract)。 - q14: - question: 与马德里领事项目/决定有什么不同? - answer: >- - There are many differences: features, flexibility, architecture, modularity, etc. We have [published a post](/blog/2019-01-14-consul-comparison/) to try to answer this question. - q15: - question: Metaddecidim社区是什么? - answer: >- - [Metadecidim](http://meta.decision im.org) 是协作设计平台和建造Decidim项目的Decidim社区。 我们通过[SOM(Metadecidim Operational Sessions)](https://meta.decisionim)定期举行会议。 rg/assemblyes/eix-comunitat?locale=es) and [LAB Research Seminars](https://meta.decisionim.org/assemblyes/eix-lab). 跳到 [meta.decidim.org](http://meta.decisionim.org) 密切跟随呼叫,如果你想加入社区。我们很喜欢;-) - q16: - question: 即使我不住在巴塞罗那,我也能加入Metadecidim社区吗? - answer: >- - 腐化是在巴塞罗那诞生的一个项目,这就是为什么与这个城市有着牢固的领土纽带。 但是的,你可以通过参与过程、辩论等在线合作... 我们在Metadecision im中提供。虽然你可能想来巴塞罗那某个时候:) - q17: - question: 我们想要达成一项正式的合作协议。我们是否可以使用任何模板? - answer: 是的,我们有格式化协作协议的模板。[请联系我们](/contact)。 - q18: - question: 您接受了什么类型的成员加入Metaddecidim社区? - answer: 任何对民主协作有诚意和正确态度的人。 - q19: - question: 您是否向非营利组织提供免费安装? - answer: >- - 是的,只有当你是一个设在巴塞罗那的组织。 给我们一条消息,你将得到研究局的帮助。 巴塞罗那市委员会公民权利、参与和透明度领域的发展和创新。 - q20: - question: 您是否支持机构? - answer: >- - 是的,但你必须耐心等待。 现在有许多机构想要使用Decidim,我们正在一步一步地帮助它们。 [联系我们](/contact) 了解任何问题,我们将尽快回答您的问题。 - q21: - question: 什么是解体协会? - answer: >- - “十进制自由软件协会”是一个治理十进制社区的民主协会。 - q22: - question: 如何获取更多关于解密协会的信息? - answer: >- - 在[Decidim协会大会](https://meta.decision im)。 rg/assembly/general-association) 您可以找到更多信息恶意,关注会议活动并检查相关信息(法规、法律协议、内部条例) - q23: - question: 我怎么能够成为解体协会的成员? - answer: >- - 现在参与项目的人可以是合作伙伴。[我们在这里详细解释你必须如何做](https://meta.decisionim.org/assembouries/QuieroSerSocia?locale=es) - q24: - question: 代谢协会何时诞生? - answer: >- - 该协会成立于2019年2月16日,成立于社区的一个特别集会](https://meta.decisionm.org/process/decisionim-gov/f/959/meetings/1169),并得到该组织章程的批准。 + title: Components + type3: + cta: Explore the modules + subtitle: Grow beyond the default components. The Decidim community has developed hundreds of modules to expand the platform beyond the basics and cater to your needs even better. + title: Modules + first-steps: + first-steps1: + content: You can install it yourself or find someone to help you with tech support. + link1: Documentation + pre: For technologists + title: Installing Decidim + first-steps2: + content: For big or small organisations, discover how Decidim can cater to your needs. + link1: Features + pre: For organizations + title: The right tool for you + first-steps3: + content: If your city is thinking of deploying participatory policies, find out how you can convince them to do it. + link1: Find a partner + pre: For governments + title: Decidim in your city + intro: It’s a free/libre and open-source web-based software, maintained by an extense and active community. You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood association or a cooperative... + section2: + link: Explore all features + subtitle: Decidim’s flexible features are designed to serve both small and large collectives, public and private organisations, with hundreds or thousands of potential users. + title: Is Decidim the right tool for you? + section3: + cta: Read more case studies on our blog + link: Read the case study + title: Backed by technology, democracy and experience + section4: + button1: About the association + button2: Join the community + intro: The Decidim Free Software Association is a democratic association for the governance of the Decidim community. + subtitle: "Metadecidim is the community that collaborates in the design of the platform and the development of the project. Together we design and create new features and report bugs for continuous improvement of the platform." + title: Who’s behind the platform? + subtitle: Decidim is a digital platform
for citizen participation + title: First steps with Decidim + footer: + about_us: About us + follow_us: Follow us on social media + legal: Legal + supported_by: Supported by + trademark: Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim. + up_to_date: Stay up to date + index: + cards: + card1: + content: We can help configure a system of democratic governance in all kinds of organizations. + link: Our features + title: Implementing a flexible democratic system + card2: + content: Decidim ensures transparency, traceability and integrity of information like never before. It provides security, privacy and confidentiality to all participants. + link: Social contract + title: We take democracy very seriously + card3: + content: A platform designed entirely with free software, open and collaborative content thanks to the Metadecidim community. + link: The community + title: It's yours. Use it. Share it. Improve it. + hero: + cta: Get started + intro: Free/libre, open and safe technology.
With all democratic guarantees.
Reprogramming democracy is now possible with Decidim. + subheading: Decidim is a digital platform for citizen participation + subhero: + cta: Explore all features + feature1: Strategic planning + feature2: Participatory processes + feature3: Assemblies + feature4: Initiatives and citizen consultations + feature5: Participatory budgeting + feature6: Networked communication + intro: Decidim helps citizens, organizations and public institutions self-organize democratically at every scale. + used_by: + heading: Hundreds of organizations around the world trust Decidim for their democratic processes + link: Discover how + title: Already using Decidim legal-notice: - title: Legal notice section-1: + paragraph: '

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

' title: Who we are - paragraph: >- -

You are accessing the website of Associació de Software Lliure Decidim ("Decidim", "Us" or "We") available through the web domain https://decidim.org/ (hereinafter, the "Website"), domiciled in Sant Adria, Number 20 Fabrica de Creacio, Fabra I Coats, Barcelona, 08030, Spain and ID number G67401174.

You can contact us at: hola@decidim.org

section-2: + paragraph: "

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

" title: Purpose - paragraph: >- -

The purpose of this Website is to provide general information to the public about Decidim, its activities and technology, consisting in a free open-source participatory democracy platform for cities and organizations, and the management of the Decidim community generated around the world from our collaborative technology allowing the development of citizen and associative projects with greater social participation. You may freely test the Decidim platform with our online demo.

The purpose of the terms of use of this Legal Notice is to govern the permitted use of this Website and the services and/or contents hosted in accordance with the Law 34/2002 on Information Society Services and Electronic Commerce and other applicable legal provisions.

section-3: + paragraph: '

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

' title: Website use - paragraph: >- -

The access to this Website is free. No application form is required for browsing the information and/or contents of this Website in general terms. Otherwise, please refer to our Privacy Policy.

By accessing and using the Website, You are accepting the terms of use of this Legal Notice and You undertake to make proper, diligent and lawful use of the Website and, in particular: (i) use the Website for its intended purposes, i.e. information about our services, you will refrain from using the Website or its contents for illegal purposes, or for purposes that go against public order, morality and good customs; (ii) respect the intellectual and industrial property rights of the Website and its contents, as well as all rights that correspond to Decidim; (iii) not to reproduce, copy, convert, modify, distribute, publicly display or make available to the public the Website or any of its content or any modification thereof; (iv) You shall be liable for any loss or damage suffered by Decidim due to a direct or indirect misuse by You of the Website, the provisions of the "Legal Texts" (collectively referred to, this Legal Notice and the Privacy Policy) and the applicable legislation.

section-4: + paragraph: "

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

" title: Industrial and Intellectual Property - paragraph: >- -

All intellectual property rights over the contents of this Website including, but not limited to, images, trademarks, logos, distinctive signs, sounds and animations, texts, sound, visual or audiovisual recordings and databases are the property of Decidim or its licensors and are protected by national and international laws. Such rights are reserved in favor of Decidim and/or its licensors. The reproduction, copying, public communication, distribution, modification, transformation, elimination, manipulation and any other use, including the extraction and reuse, whether for profit or not, direct or indirect, temporary or permanent, of all or part of this Website or any of its contents, is expressly prohibited without the prior express written authorization of Decidim. We may take any legal and/or extrajudicial action it deems appropriate in the event of a possible violation of these rights.

section-5: + paragraph: "

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

" title: Responsibility - paragraph: >- -

Decidim is not responsible for third party web pages that can be accessed from the Website, nor for the accuracy, veracity and validity of the information on the Website that is not of its own elaboration. However, pursuant to article 17 of Law 34/2002, in the event that Decidim becomes aware of the unlawfulness of such content or links, it undertakes to remove or disable them, as well as, where appropriate, to block any content that may be unlawful or violate the rights of any third party, in accordance with articles 11 and 16 of the aforementioned Law.

Furthermore, Decidim is not responsible for any damage that may occur due to failures or misconfigurations in the browser installed by the user on his computer. Decidim is not responsible for any incident or technical failure caused by the user's connection to the Internet.

Decidim will use its best efforts to effect, in the shortest period of time, updates and corrections of errors and deficiencies, including those occurring in the access and/or connection to the Website and/or its contents, but does not warrant the absence of interruptions, errors in the connection and/or access to the Website and update of its contents.

You are liable for your use of and access to the Website. Decidim shall not be liable for the presence of viruses nor for security errors neither for the damages that may be caused to your devices or to the files or documents stored in such devices for the access and/or connection to the Website, neither for the damages caused to third parties by means of illegal intromissions out of Decidim control.

Decidim shall not be liable for the breach of your obligations You accept when accessing this Website which are contained in this Legal Notice and, in particular, shall not be liable for any infringement of the intellectual property rights, copyright, advertising and image rights, or any other rights with regard to the goods and rights of any third party.

section-6: + paragraph:

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

title: Modifications - paragraph: >- -

Decidim may modify this Legal Notice, the Privacy Policy and/or any other text of contractual nature applicable to this Website without previous notice. Such modifications shall be effective at the moment of its publication on the Website.

Decidim may also terminate or suspend the services of the Website at any time. Whenever is possible, Decidim will warn/alert previously about such termination or suspension through this Website.

section-7: + paragraph:

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

title: Personal Data - paragraph: >- -

Your personal data collected on our Website or when you contact us through the contact form or by sending an email will be treated strictly in accordance with our Privacy Policy.

section-8: + paragraph:

This Website does not use cookies. More information in our Privacy Policy.

title: Cookies - paragraph: >- -

This Website does not use cookies. More information in our Privacy Policy.

section-9: + paragraph: '

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

' title: Governing law and jurisdiction - paragraph: >- -

Our Legal Texts, including this Legal Notice and our Privacy Policy, is governed by Spanish law. The courts of the city of Barcelona will be competent to decide any dispute arising from the use of our Website.

Last update: February 2022.

+ title: Legal notice + modules: + auth: Authorization + community: Community + cta: Learn how + develop: Develop your own modules to expand the platform beyond the basics and cater to your needs. + more_info: More information + official: Official modules + placeholder: Search... + subtitle: By using modules you can extend the functionality of Decidim and share it with others. + title: Modules + nav: + about: About + association: Association + blog: Blog + close_menu: Close menu + code: Code + community: Community + contact: Contact + contract: Social Contract + demo: Demo + docs: + path: https://docs.decidim.org/ + title: Documentation + faqs: FAQs + features: Features + first-steps: First steps + home: Home + legal-notice: Legal notice + menu: Menu + modules: Modules + partners: Partners + partnership-policy: Partnership policy + press: Press + privacy-policy: Privacy policy + text: Navigation + trademark: Trademark policy + use-cases: Use cases + used_by: Decidim in use + newsletter: + past: Past newsletters + subtitle: News and updates about the Decidim platform and the community. + title: Newsletter + partners: + intro: The partners logos are intellectual property of their respective copyright holders. They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + link: See Decidim's partnership policy + subtitle: These entities and organizations collaborate with Decidim. + title: Partners + partnership-policy: + explanation: + p1: Sustaining Decidim takes time and resources. Several tasks need to be handled, such as reviewing contributions, triaging issues, fixing bugs, writing documentation, and answering general doubts shared by the community. Any organization (enterprise, association, or collective) willing to become a Decidim Partner is committed to contribute to the Decidim Association with a reduced fee of the 3% of the yearly income generated by Decidim activities. In the case of nonprofit organizations, this fee is 1.5%. + p2: Every Decidim Partner will be made publicly visible in the Decidim main website and the GitHub project README page. In addition, the Decidim Association will recommend Decidim Partners in our talks and email conversations about providing services with Decidim. + p3: To support recently incorporated organizations, Decidim Partners will be exempted from contributing economically during their first year to first develop their business plan with Decidim. In the meantime, we recommend that Decidim Partners find other ways to contribute to the project (such as with bug reporting, documentation, participation and support in community activities, etc.). + how_to: + steps: + step1: Send an email to associacio [at] decidim [dot] org with your contact information and indicate in the subject I want to become a Decidim Partner. + step2: We will contact you for a videoconference to then assess the candidacy. + step3: If the candidacy is approved, the Coordination Committee will yearly send you a sworn declaration to be filled and sent back with the receipt of the corresponding bank transfer. + title: How to become a Decidim Partner? + requirements: + l1: Management of instances. Manage one or more active facilities of Decidim at the time of the application, for the own use of the entity or third parties. + l2: Contributions to the project. Contribute or have contributed significantly to the Decidim project. + p1: 'You have to agree to fulfill and sign the Social Contract and also fulfill any of the following conditions can be members:' + p2: You can read in detail in the Metadecidim assembly. + title: Which requirements does my organization need to meet to become a partner? + subtitle: If your organization wants to support Decidim, you can become a Decidim Partner. + title: Partnership policy + path: Path + press: + highlights: Media highlights + kit: Press kit + links: + link1: + link: Download + title: Logo files + link2: + link: Watch + title: Promotional spot + link3: + link: To the site + title: Decidim Fest 2021 + link4: + link: Youtube channel + title: Videos + link5: + link: Download + title: Brochure + link6: + link: Downloads + title: Community photos + sign_up: Sign up for our newsletter on Metadecidim + social_media: Find us on social media + subtitle: For media enquiries, please send us an email at + title: Press privacy-policy: - title: Privacy policy section-1: + paragraph:

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

title: Introduction - paragraph: >- -

Associació de Software Lliure Decidim ("Decidim" or “we/us”) is the owner of this website, available through the web domain https://decidim.org/ (hereinafter, the "Website"), and acts as data controller for the processing of personal data of all users of the Website (“You/r”, the “User”).

Decidim is committed to protecting the privacy of all Users of the Website, its associate members and members of the Decidim community. This Privacy Policy explains our practices regarding the use of personal data collected through the Website, including the demo of our free open-source participatory democracy platform, as well as the processing of data of individuals associated with Decidim and the management of the Decidim community, either on this Website or on other platforms managed by Decidim.

This Privacy Policy is part of our Legal Texts together with the Legal Notice.

section-2: + paragraph: '

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that''s what they use, generating an identifier that changes daily using the visitor''s IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User''s session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User''s personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members'' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim''s principles and values as well as the associates'' duties and rights.

' title: Personal data we collect about you and how we use it - paragraph: >- -

a. Data collected from surfing the Website

When using our website, Decidim uses the services of Plausible analysis software. Its is software that, when tracking user data, this data is kept fully and securely encrypted. The purpose of Plausible Analytics is to track general traffic trends on your website and not individual visitors. Each HTTP request sends the IP address and user agent to the server, so that's what they use, generating an identifier that changes daily using the visitor's IP address and user agent. To anonymise this data, it is passed through a hash function with a rotating salt. This generates a random string of letters and numbers that is used to calculate the number of unique visitors for the day. The IP address of the raw data and the user agent are never stored in the logs, databases or anywhere on Plausible analytics disk. Older salts are deleted every 24 hours to avoid the possibility of linking visitor information from one day to the next. In this way, no personal user data is collected while browsing our website, for more information about the data processing by Plausible Analytics, you can visit their website at https://plausible.io/privacy-focused-web-analytics

b. Data collected from our Demo

The access to the Decidim platform demo, available through the Website in the URL https://try.decidim.org/ is anonymous, since it is done through generic credentials for testing and knowledge of the operation, features and capabilities of the Decidim platform by the users.

Only a session cookie ("Session_id") is activated, whose purpose is to obtain or establish the session id for the current session. This cookie is strictly necessary for the technical functionality of detecting the session in the Website in order to ensure the connection through http protocols and to keep the User's session and Web Site services available, and are exempted from User consent in accordance with Opinion 4/2012 on the exemption from the cookie consent requirement issued by the European Data Protection Authority.

c. Data collected from contact forms, emails or other communication means

When people contact Us by the contact form, email or similar communication means, we will automatically collect the following information: name, entity, email address and the content of the User message in order to attend your comments, requests, suggestions, etc.

Additionally, we may process this data for statistical studies through pseudonymization and even anonymization techniques, such as data aggregation, preventing this subsequent processing from identifying Users individually.

d. Data collected from Decidim community

Decidim uses other platforms linked to this Website for the management of the Decidim community generated around our technology, as a meeting point for the Decidim community and where most of the activities and communications between users and Decidim take place. These platforms, such as https://meta.decidim.org/ or GitHub (https://github.com/decidim/decidim) are governed by their own terms of use and privacy policies.

Notwithstanding, Decidim may process User's personal data collected from these platforms for the management of the community projects developed in those platforms respectively, in particular these personal data may consist in connection data to these platforms, User profile on the platform, and the content of the comments and remarks that the User may contribute to the Decidim projects from time to time. Please note that this information may be public and, consequently, accessible and visible to other Users.

e. Data collected from our associate members

Any person or organization that wants to participate freely in the Decidim community, attending debates, collaborating in the organization of events, promoting a working group or community days, as well as contributing to the code or documentation of our free open-source participatory democracy platform, management of instances, etc., can choose to become a member of Decidim, as long as they have demonstrated sufficient commitment to the community through the realization of any of the above activities. To do so, you must complete a form to submit your application, which will be evaluated by the Decidim Coordination Committee.

The processing of Decidim members' personal data is carried out for the purpose of managing the aforementioned projects and activities in which the associate member participates, accounting management of membership fees and, in general, the governance of projects and activities of Decidim, in order to ensure compliance with the Decidim's principles and values as well as the associates' duties and rights.

section-3: + paragraph:

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

title: Legal basis - paragraph: >- -

The legal basis of our processing of personal data are the following:

  • The processing of Users and associate data is necessary to perform the contract, consisting in the Users acceptance of the Legal Text of the Website, in order to provide them all the information about Decidim and its technology, projects and activities, as well as to allow them participating in the projects and activities carried out by Decidim.
  • We may also process your personal data when you give us express consent to make publications about Decidim projects and activities in which you have participated, press releases or other forms of communication and dissemination of Decidim's activities, as well as to receive particular information on a regular basis and/or when you contact us through the website contact form or by e-mail.
  • Additionally, we may process your data on our legitimate interest to perform statistical studies or other knowledge generation techniques, implementing pseudonymization and, if possible, anonymization measures, such as data aggregation, in order to protect the privacy of Users, in accordance with art. 89 GDPR.

In certain circumstances, we may process your data in accordance with this policy to comply with a legal or regulatory obligation to which we are subject.

section-4: + paragraph: '

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

' title: Data disclosure - paragraph: >- -

We process your personal data confidentially in accordance with the applicable legislation. Unless stated otherwise, your personal data will not be provided to third parties.

Specifically, we disclose your data as follows:

  • We can give access to your personal data to our IT service providers under contracts for the provision of services in favour of Decidim. Among the others, Netlify, Inc., an American entity who provide to Us web hosting services. Decidim has subscribed with Netlify a Data Processing Agreement, including the Standard Contractual Clauses currently approved by the European Commission, in order to ensure that your personal data are processed with all adequate guarantees. More information about how Netlify use your personal data may be consulted here: https://www.netlify.com/gdpr-ccpa.
  • We can make the data available to the public administration or authorities to investigate suspicions of fraud, harassment or other violations of any law, rule or regulation, or the policies of the website.

For more information about our service providers who make international transfers, please contact us at privacy@decidim.org.

section-5: + paragraph: "

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

" title: Data retention - paragraph: >- -

We only keep your personal data for as long as it is necessary to fulfil the purposes for which we have collected them, even to comply with legal, accounting or information requirements.

To determine the appropriate retention period for personal data, we consider the amount, nature and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your personal data, the purposes for which we process your personal data, if we can achieve those purposes through other means and the applicable legal requirements.

section-6: + paragraph: "

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

" title: Security measures - paragraph: >- -

We implement security measures and personal data protection schemes as required by law to maintain the confidentiality and integrity of your data and protection against unauthorised access, modification or destruction.

section-7: + paragraph: '

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data''s accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain.' title: Your rights - paragraph: >- -

You have rights under data protection laws in relation to your personal data. Specifically, you have the right to:

  • Request access to your personal data (commonly known as a "data subject access request"). This enables you to receive a copy of the personal data we hold about you and to check that we are lawfully processing it.
  • Request correction of the personal data that we hold about you. This enables you to have any incomplete or inaccurate data we hold about you corrected, though we may need to verify the accuracy of the new data you provide to us.
  • Request erasure of your personal data. This enables you to ask us to delete or remove personal data where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal data where you have successfully exercised your right to object to processing (see below), where we may have processed your information unlawfully or where we are required to erase your personal data to comply with local law. Note, however, that we may not always be able to comply with your request of erasure for specific legal reasons which will be notified to you, if applicable, at the time of your request.
  • Object to processing of your personal data where we are relying on a legitimate interest (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground as you feel it impacts on your fundamental rights and freedoms. You also have the right to object where we are processing your personal data for direct marketing purposes. In some cases, we may demonstrate that we have compelling legitimate grounds to process your information which override your rights and freedoms.
  • Request restriction of processing of your personal data. This enables you to ask us to suspend the processing of your personal data in the following scenarios: (a) if you want us to establish the data's accuracy; (b) where our use of the data is unlawful but you do not want us to erase it; (c) where you need us to hold the data even if we no longer require it as you need it to establish, exercise or defend legal claims; or (d) you have objected to our use of your data but we need to verify whether we have overriding legitimate grounds to use it.
  • Request the transfer of your personal data to you or to a third party (right to data portability). We will provide to you, or a third party you have chosen, your personal data in a structured, commonly used, machine-readable format. Note that this right only applies to automated information which you initially provided consent for us to use or where we used the information to perform a contract with you.
  • Withdraw consent at any time where we are relying on consent to process your personal data. However, this will not affect the lawfulness of any processing carried out before you withdraw your consent. If you withdraw your consent, we may not be able to provide certain products or services to you. We will advise you if this is the case at the time you withdraw your consent.

The aforementioned rights may be effective by contacting us at privacy@decidim.org.

You also have the right to make any complaint to the competent authority, in this case the Spanish Data Protection Agency (Agencia Española de Protección de Datos), C/. Jorge Juan, 6, 28001 Madrid, Spain. section-8: + paragraph: "

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

" title: General - paragraph: >- -

We reserve the right to amend the terms of this Privacy Policy and will notify you by providing a clear notice of these changes by email or on our Website, and in this Privacy Policy. If you continue to use our services after such update, you will be deemed to accept the new terms. If you do not accept the update, please terminate your account or notify us and we will terminate your Account and remove any of your personal data (except as required to be maintained for legal purposes), and you will not be able to continue to use our services.

Unless a specific local regulation sets forth to the contrary, the Privacy Policy is governed by the laws of Spain.

Last update: February 2022.

+ title: Privacy policy + testimonials: + n1: + org: Barcelona City Hall (2015-2019) + quote: Thanks to Decidim, in Barcelona we have managed to co-produce a strategic city plan together with the citizens. In 2016 we inaugurated the Municipal Action Plan in the form of a participatory process through Decidim Barcelona. Currently, this plan includes almost 7 thousand citizen proposals. One of the advantages of using this platform is that you can monitor at all times the state of implementation of the approved proposals. + n2: + org: Som Energia + quote: With the implementation of Decidim in Som Energia we have generated a kinder space for participation. We released the tool in 2018, hosting the General Assembly of the Cooperative and months later we debated the Image Redesign and collaborative development of the School of Som Energia, among other participatory processes. In a few months, more than 3,500 participant people have registered, 5 participatory processes, 3 assemblies operating and more than 1,300 votes in the last General Assembly vote. + n3: + org: Municipal President of Mérida Yucatán, Mexico. City Council of Mérida Yucatán, Mexico + quote: The Decide Mérida digital platform was an opportunity that opened as never before the mechanisms of citizen participation for the elaboration of the Municipal Development Plan of Mérida 2018-2021. We had more than 3,000 citizen interactions including proposals, comments, suggestions and support that achieving the highest consensus possible about what is best for our city. Undoubtedly, the Decide Mérida platform will continue to be our ally in making Mérida an increasingly participative society. + n4: + org: City of Helsinki + quote: What we appreciate is that it’s built with democracy in mind and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. + n5: + org: Open Government of Mexico City + quote: Almost every participatory process that has come to our table, we have been able to solve it using Decidim's business rules. As a tool, it is a very strong one. However, the part that seems strongest and most important to us is its community, both developers and those who use it for participatory processes. Coexisting with them has made us appreciate the challenges involved in implementing participatory democracy in the real world. + n6: + org: Mozilla Foundation + quote: We suffer under a lack of public space. It's particularly important that we reclaim these public spaces for us. Open platforms such as Decidim do exactly that. Is not only that is open source so other people can fork it, reuse it and build a process. It also has these values that we want to reflect in our society encoded in the way it's designed. + n7: + org: OpenForum Europe Research Director, European Union + quote: The process started in October 2019 at the European Commission’s DG Communication and eDemocracy unit at the Joint Research Centre, the European Commission's science and knowledge service. An analysis of the needs of the Conference and which tools fit those, lead to choosing the open source tool Decidim for its technical maturity, broad community and adaptability. + n8: + org: Pipeline to Power, working for NYC Civic Engagement Commission + quote: Part of what makes Decidim so powerful is that it adds a level of abstraction to the work separating out the steps of a process and the activities associated with the process. That’s part of the information architecture, so that not only you are saying what is happening at each step but different parts of Decidim behave differently depending on when you are doing or depending on what step in the process you are in. The fact that that’s customizable really allows Decidim to be moulded to how we are doing our work and not our work to be moulded. + thanks: + message: Thank you for contacting us, we will get back to you soon. + title: Thanks for your email + trademark: + examples-1: + l1: Including the Decidim logo on product pages to say "we work with Decidim" (e.g., hosting, consultancy services, developments based on Decidim). + l2: Use of the trademark "Decidim" in book titles and research articles. + l3: Use of the Decidim logo in the footer of an instance (“Powered by Decidim”). + title: Examples of use that do not need permission + examples-2: + l1: Selling merchandise (stickers, t-shirts, mugs, etc). + l2: Use of the Decidim logo on a book cover. + l3: Use of the Decidim logo in a header in a website, implying that you’re the Decidim organization. + title: Examples of use that do need permission + examples-3: + l1: Naming your company or product after Decidim, like "The Decidim Consultants". + title: Examples of use that will not get permission + goals: + l1: We’d like to make it easy for anyone to use the Decidim name or logo for community-oriented efforts that help spread and improve Decidim. + l2: We’d like to make it clear how Decidim-related businesses and projects can (and cannot) use the Decidim name and logo. + l3: We’d like to make it hard for anyone to use the Decidim name and logo to unfairly profit from, trick or confuse people who are looking for official Decidim resources. + p1: '"Decidim" and the Decidim logo are registered trademarks of Associació de Software Lliure Decidim. You may not use these trademarks in a commercial setting to infer that your product or service is endorsed or associated with Decidim without permission. You may use these marks to refer to Decidim in a way where it''s clear that you''re simply referring to the project, not claiming endorsement or association.' + p2: 'If you’re using the Decidim logo in any way you need to add the following text: "Decidim name and logo is a registered trademark of the Associació de Software Lliure Decidim."' + p3: 'We have developed this trademark usage policy with the following goals in mind:' + p4: You can request permission by emailing associacio@decidim.org. + p5: This trademark policy page was based in Ruby on Rails and Wordpress Foundation. + title: Trademark policy + used_by: + cta: Get started + disclaimer: Logos are the intellectual property of their respective copyright holders.
They do not fall under the Creative Commons By-SA license the rest of the site's contents are licensed with. + facts: + f1: instances + f2: countries + f3: institutions + f4: organizations + f5: participants + f6: processes + f7: proposals + f8: comments + f9: meetings + subtitle: Decidim keeps growing and being adopted by organizations and the community. + title: Facts & Figures + intro: You can use Decidim in a public or private organisation, with hundreds or thousands of potential participants, such as a city council, an association, a university, an NGO, a trade union, a neighbourhood collective or a cooperative... + join: Over 400 entities, 250 governamental and 150 grass root communities have chosen Decidim for their democratic processes. + subtitle: These cities, regions and organizations are already using Decidim + title: Decidim in use diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..af5c8b7e --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2093 @@ +{ + "name": "decidim.org", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@tailwindcss/typography": "^0.5.2", + "autoprefixer": "^10.4.4", + "postcss": "^8.4.12", + "postcss-import": "^14.0.2", + "tailwindcss": "^3.0.23" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@tailwindcss/typography": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.2.tgz", + "integrity": "sha512-coq8DBABRPFcVhVIk6IbKyyHUt7YTEC/C992tatFB+yEx5WGBQrCgsSFjxHUr8AWXphWckadVJbominEduYBqw==", + "dev": true, + "dependencies": { + "lodash.castarray": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || insiders" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.4", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.4.tgz", + "integrity": "sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.20.2", + "caniuse-lite": "^1.0.30001317", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.20.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz", + "integrity": "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001317", + "electron-to-chromium": "^1.4.84", + "escalade": "^3.1.1", + "node-releases": "^2.0.2", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001402", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001402.tgz", + "integrity": "sha512-Mx4MlhXO5NwuvXGgVb+hg65HZ+bhUYsz8QtDGDo2QmaJS2GBX47Xfi2koL86lc8K+l+htXeTEB/Aeqvezoo6Ew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + }, + "node_modules/detective": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", + "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", + "dev": true, + "dependencies": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + }, + "bin": { + "detective": "bin/detective.js" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.89", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.89.tgz", + "integrity": "sha512-z1Axg0Fu54fse8wN4fd+GAINdU5mJmLtcl6bqIcYyzNVGONcfHAeeJi88KYMQVKalhXlYuVPzKkFIU5VD0raUw==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/lilconfig": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz", + "integrity": "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lodash.castarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", + "integrity": "sha1-wCUTUV4wna3dTCTGDP3c9ZdtkRU=", + "dev": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.12", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz", + "integrity": "sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.1", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz", + "integrity": "sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", + "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.3.tgz", + "integrity": "sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.4", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", + "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.6" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.0.23", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.23.tgz", + "integrity": "sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==", + "dev": true, + "dependencies": { + "arg": "^5.0.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "cosmiconfig": "^7.0.1", + "detective": "^5.2.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "normalize-path": "^3.0.0", + "object-hash": "^2.2.0", + "postcss": "^8.4.6", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.0", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.22.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "autoprefixer": "^10.0.2", + "postcss": "^8.0.9" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dev": true, + "requires": { + "@babel/highlight": "^7.16.7" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true + }, + "@babel/highlight": { + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@tailwindcss/typography": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.2.tgz", + "integrity": "sha512-coq8DBABRPFcVhVIk6IbKyyHUt7YTEC/C992tatFB+yEx5WGBQrCgsSFjxHUr8AWXphWckadVJbominEduYBqw==", + "dev": true, + "requires": { + "lodash.castarray": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2" + } + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, + "requires": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==", + "dev": true + }, + "autoprefixer": { + "version": "10.4.4", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.4.tgz", + "integrity": "sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==", + "dev": true, + "requires": { + "browserslist": "^4.20.2", + "caniuse-lite": "^1.0.30001317", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.20.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz", + "integrity": "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001317", + "electron-to-chromium": "^1.4.84", + "escalade": "^3.1.1", + "node-releases": "^2.0.2", + "picocolors": "^1.0.0" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001402", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001402.tgz", + "integrity": "sha512-Mx4MlhXO5NwuvXGgVb+hg65HZ+bhUYsz8QtDGDo2QmaJS2GBX47Xfi2koL86lc8K+l+htXeTEB/Aeqvezoo6Ew==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + }, + "detective": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", + "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", + "dev": true, + "requires": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + } + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.89", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.89.tgz", + "integrity": "sha512-z1Axg0Fu54fse8wN4fd+GAINdU5mJmLtcl6bqIcYyzNVGONcfHAeeJi88KYMQVKalhXlYuVPzKkFIU5VD0raUw==", + "dev": true + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "lilconfig": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz", + "integrity": "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==", + "dev": true + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "lodash.castarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", + "integrity": "sha1-wCUTUV4wna3dTCTGDP3c9ZdtkRU=", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "nanoid": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "dev": true + }, + "node-releases": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "dev": true + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "postcss": { + "version": "8.4.12", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz", + "integrity": "sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==", + "dev": true, + "requires": { + "nanoid": "^3.3.1", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-import": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz", + "integrity": "sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-js": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", + "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "dev": true, + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-load-config": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.3.tgz", + "integrity": "sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==", + "dev": true, + "requires": { + "lilconfig": "^2.0.4", + "yaml": "^1.10.2" + } + }, + "postcss-nested": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", + "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.6" + } + }, + "postcss-selector-parser": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "dev": true, + "requires": { + "pify": "^2.3.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dev": true, + "requires": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "tailwindcss": { + "version": "3.0.23", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.23.tgz", + "integrity": "sha512-+OZOV9ubyQ6oI2BXEhzw4HrqvgcARY38xv3zKcjnWtMIZstEsXdI9xftd1iB7+RbOnj2HOEzkA0OyB5BaSxPQA==", + "dev": true, + "requires": { + "arg": "^5.0.1", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "cosmiconfig": "^7.0.1", + "detective": "^5.2.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "normalize-path": "^3.0.0", + "object-hash": "^2.2.0", + "postcss": "^8.4.6", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.0", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.22.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 00000000..bee0a69c --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "devDependencies": { + "@tailwindcss/typography": "^0.5.2", + "autoprefixer": "^10.4.4", + "postcss": "^8.4.12", + "postcss-import": "^14.0.2", + "tailwindcss": "^3.0.23" + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 00000000..565f70cf --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,8 @@ +module.exports = { + plugins: { + 'postcss-import': {}, + 'tailwindcss/nesting': {}, + tailwindcss: {}, + autoprefixer: {}, + } +} diff --git a/source/admin/config.yml b/source/admin/config.yml index 1a7b6868..d432fef8 100644 --- a/source/admin/config.yml +++ b/source/admin/config.yml @@ -26,6 +26,7 @@ collections: - {label: "Title", name: "title", widget: "string", required: true} - {label: "URL", name: "url", widget: "string", required: true} - {label: "Image", name: "image", widget: "image", required: true} + - {label: "Home Image", name: "home_image", widget: "image"} - {label: "Type", name: "type", widget: "select", options: ["city", "org", "region"], required: true} - label: "Priority" name: "priority" diff --git a/source/blog/en/2017-07-17-release-0.4.0.html.md b/source/blog/en/2017-07-17-release-0.4.0.html.md index b4e7cd9a..8bc3e31b 100644 --- a/source/blog/en/2017-07-17-release-0.4.0.html.md +++ b/source/blog/en/2017-07-17-release-0.4.0.html.md @@ -1,6 +1,5 @@ --- title: Novetats versió 0.4.0 -date: 2017-07-17 tags: ["releases"] --- diff --git a/source/blog/en/2017-08-29-release-0.5.0.html.md b/source/blog/en/2017-08-29-release-0.5.0.html.md index dd2e3882..5df371ce 100644 --- a/source/blog/en/2017-08-29-release-0.5.0.html.md +++ b/source/blog/en/2017-08-29-release-0.5.0.html.md @@ -1,6 +1,5 @@ --- title: Novetats versió 0.5.0 -date: 2017-08-29 tags: ["releases"] --- diff --git a/source/blog/en/2017-09-21-release-0.6.0.html.md b/source/blog/en/2017-09-21-release-0.6.0.html.md index 1a66d7a8..67051562 100644 --- a/source/blog/en/2017-09-21-release-0.6.0.html.md +++ b/source/blog/en/2017-09-21-release-0.6.0.html.md @@ -1,6 +1,5 @@ --- title: Novetats versió 0.6.0 -date: 2017-09-21 tags: ["releases"] --- diff --git a/source/blog/en/2017-10-09-estreno-web.html.md b/source/blog/en/2017-10-09-estreno-web.html.md index 6aa04ed0..cb7fcb14 100644 --- a/source/blog/en/2017-10-09-estreno-web.html.md +++ b/source/blog/en/2017-10-09-estreno-web.html.md @@ -1,6 +1,5 @@ --- title: Decidim's website is live! -date: 2017-10-09 --- * [Veure post a Català](/blog/2017-10-09-estreno-web/#cat) diff --git a/source/blog/en/2017-11-21-release-0.7.0.html.md b/source/blog/en/2017-11-21-release-0.7.0.html.md index 29fbbcd5..aa46bec4 100644 --- a/source/blog/en/2017-11-21-release-0.7.0.html.md +++ b/source/blog/en/2017-11-21-release-0.7.0.html.md @@ -1,6 +1,5 @@ --- title: News version 0.7.0 -date: 2017-11-21 tags: ["releases"] --- diff --git a/source/blog/en/2017-12-21-release-0.8.0.html.md b/source/blog/en/2017-12-21-release-0.8.0.html.md index ac47a2d2..5dd80f28 100644 --- a/source/blog/en/2017-12-21-release-0.8.0.html.md +++ b/source/blog/en/2017-12-21-release-0.8.0.html.md @@ -1,6 +1,5 @@ --- title: News version 0.8.0 -date: 2017-12-21 tags: ["releases"] --- diff --git a/source/blog/en/2018-02-06-release-0.9.0.html.md b/source/blog/en/2018-02-06-release-0.9.0.html.md index 6b954504..866c58e4 100644 --- a/source/blog/en/2018-02-06-release-0.9.0.html.md +++ b/source/blog/en/2018-02-06-release-0.9.0.html.md @@ -1,6 +1,5 @@ --- title: News version 0.9.0 -date: 2018-02-06 tags: ["releases"] --- diff --git a/source/blog/en/2018-03-29-release-0.10.0.html.md b/source/blog/en/2018-03-29-release-0.10.0.html.md index c4cbd53c..875beb38 100644 --- a/source/blog/en/2018-03-29-release-0.10.0.html.md +++ b/source/blog/en/2018-03-29-release-0.10.0.html.md @@ -1,6 +1,5 @@ --- title: News version 0.10.0 -date: 2018-03-29 tags: ["releases"] --- diff --git a/source/blog/en/2018-04-27-release-0.11.0.html.md b/source/blog/en/2018-04-27-release-0.11.0.html.md index a2b4f82a..7a714a2d 100644 --- a/source/blog/en/2018-04-27-release-0.11.0.html.md +++ b/source/blog/en/2018-04-27-release-0.11.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.11.0 -date: 2018-04-27 tags: ["releases"] --- diff --git a/source/blog/en/2018-06-13-release-0.12.0.html.md b/source/blog/en/2018-06-13-release-0.12.0.html.md index dc8a1d32..5b0d5480 100644 --- a/source/blog/en/2018-06-13-release-0.12.0.html.md +++ b/source/blog/en/2018-06-13-release-0.12.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.12.0 -date: 2018-06-13 tags: ["releases"] --- diff --git a/source/blog/en/2018-07-11-release-0.13.0.html.md b/source/blog/en/2018-07-11-release-0.13.0.html.md index 67b6e6b1..984aef19 100644 --- a/source/blog/en/2018-07-11-release-0.13.0.html.md +++ b/source/blog/en/2018-07-11-release-0.13.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.13.0 -date: 2018-07-11 tags: ["releases"] --- diff --git a/source/blog/en/2018-08-30-release-0.14.0.html.md b/source/blog/en/2018-08-30-release-0.14.0.html.md index 03cd414f..2a24bd5e 100644 --- a/source/blog/en/2018-08-30-release-0.14.0.html.md +++ b/source/blog/en/2018-08-30-release-0.14.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.14.0 -date: 2018-08-30 tags: ["releases"] --- diff --git a/source/blog/en/2018-12-13-release-0.15.0.html.md b/source/blog/en/2018-12-13-release-0.15.0.html.md index 139b5d7c..5e6f4969 100644 --- a/source/blog/en/2018-12-13-release-0.15.0.html.md +++ b/source/blog/en/2018-12-13-release-0.15.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.15.0 -date: 2018-12-13 tags: ["releases"] --- diff --git a/source/blog/en/2019-01-14-consul-comparison.html.md b/source/blog/en/2019-01-14-consul-comparison.html.md index f0ba57bd..733aeed4 100644 --- a/source/blog/en/2019-01-14-consul-comparison.html.md +++ b/source/blog/en/2019-01-14-consul-comparison.html.md @@ -1,6 +1,5 @@ --- title: Comparison of Decidim and Consul -date: 2019-01-14 --- ![consulproject.org](/uploads/consul_comparison.png) diff --git a/source/blog/en/2019-01-14-release-0.16.0.html.md b/source/blog/en/2019-01-14-release-0.16.0.html.md index 9288fee0..dee0ac53 100644 --- a/source/blog/en/2019-01-14-release-0.16.0.html.md +++ b/source/blog/en/2019-01-14-release-0.16.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.16.0 -date: 2019-01-14T09:02:16.204Z tags: ["releases"] --- ## New Features diff --git a/source/blog/en/2019-03-25-release-0.17.0.html.md b/source/blog/en/2019-03-25-release-0.17.0.html.md index 2a2a8890..c2f33709 100644 --- a/source/blog/en/2019-03-25-release-0.17.0.html.md +++ b/source/blog/en/2019-03-25-release-0.17.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.17.0 -date: 2019-03-25 tags: ["releases"] --- diff --git a/source/blog/en/2019-07-03-release-0.18.0.html.md b/source/blog/en/2019-07-03-release-0.18.0.html.md index 9fe85506..c096c2de 100644 --- a/source/blog/en/2019-07-03-release-0.18.0.html.md +++ b/source/blog/en/2019-07-03-release-0.18.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.18.0 -date: 2019-07-03 tags: ["releases"] --- diff --git a/source/blog/en/2019-10-21-release-0.19.0.html.md b/source/blog/en/2019-10-21-release-0.19.0.html.md index 50bee8d4..8be65dac 100644 --- a/source/blog/en/2019-10-21-release-0.19.0.html.md +++ b/source/blog/en/2019-10-21-release-0.19.0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.19.0 -date: 2019-10-21 tags: ["releases"] --- diff --git a/source/blog/en/2019-12-20-not-with-decidim-support.html.md b/source/blog/en/2019-12-20-not-with-decidim-support.html.md index f3a1d377..0d7a2ae9 100644 --- a/source/blog/en/2019-12-20-not-with-decidim-support.html.md +++ b/source/blog/en/2019-12-20-not-with-decidim-support.html.md @@ -1,6 +1,5 @@ --- title: Not with Decidim (support) -date: 2019-12-20T15:01:47.276Z --- * [Veure post a Català](/blog/2019-12-20-not-with-decidim-support/#cat) diff --git a/source/blog/en/2020-02-06-developers-grant-decidimfem-dev-programme.html.md b/source/blog/en/2020-02-06-developers-grant-decidimfem-dev-programme.html.md index b21e6a2c..7ba2f382 100644 --- a/source/blog/en/2020-02-06-developers-grant-decidimfem-dev-programme.html.md +++ b/source/blog/en/2020-02-06-developers-grant-decidimfem-dev-programme.html.md @@ -1,6 +1,5 @@ --- title: 'Developers grant: DECIDIMFEM DEV PROGRAMME' -date: 2020-02-06T15:11:37.772Z --- * [Ver post en Castellano](/blog/2020-02-06-developers-grant-decidimfem-dev-programme/#cast) diff --git a/source/blog/en/2020-02-06-new-version-0-20-0.html.md b/source/blog/en/2020-02-06-new-version-0-20-0.html.md index fea7f3b9..7f510e99 100644 --- a/source/blog/en/2020-02-06-new-version-0-20-0.html.md +++ b/source/blog/en/2020-02-06-new-version-0-20-0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.20.0 -date: 2020-02-06T09:22:37.706Z tags: ["releases"] --- ## Improvements to existing features diff --git a/source/blog/en/2020-04-12-new-version-0-21-0.html.md b/source/blog/en/2020-04-12-new-version-0-21-0.html.md index bb40dda9..9a76827f 100644 --- a/source/blog/en/2020-04-12-new-version-0-21-0.html.md +++ b/source/blog/en/2020-04-12-new-version-0-21-0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.21.0 -date: 2020-04-12T08:54:08.987Z tags: ["releases"] --- ## Improvements to existing features diff --git a/source/blog/en/2020-07-01-decidimfem-dev-programme-ii-developers-grants-are-back.html.md b/source/blog/en/2020-07-01-decidimfem-dev-programme-ii-developers-grants-are-back.html.md index a110dcfc..fb5c617e 100644 --- a/source/blog/en/2020-07-01-decidimfem-dev-programme-ii-developers-grants-are-back.html.md +++ b/source/blog/en/2020-07-01-decidimfem-dev-programme-ii-developers-grants-are-back.html.md @@ -1,6 +1,5 @@ --- title: "DECIDIMFEM DEV PROGRAMME 2: Developers grants are back " -date: 2020-07-01T09:25:05.638Z --- * [Ver post en Castellano](/blog/2020-07-01-decidimfem-dev-programme-ii-developers-grants-are-back/#cast) diff --git a/source/blog/en/2020-09-02-new-version-0-22-0.html.md b/source/blog/en/2020-09-02-new-version-0-22-0.html.md index 9ce15ab9..7e65d686 100644 --- a/source/blog/en/2020-09-02-new-version-0-22-0.html.md +++ b/source/blog/en/2020-09-02-new-version-0-22-0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.22.0 -date: 2020-09-02T14:29:08.731Z tags: ["releases"] --- ## Improvements to existing features diff --git a/source/blog/en/2020-11-12-new-version-0-23-0.html.md b/source/blog/en/2020-11-12-new-version-0-23-0.html.md index a72b575b..7d7b14bc 100644 --- a/source/blog/en/2020-11-12-new-version-0-23-0.html.md +++ b/source/blog/en/2020-11-12-new-version-0-23-0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.23.0 -date: 2020-11-12T14:52:09.431Z tags: ["releases"] --- ## Improvements to existing features diff --git a/source/blog/en/2021-02-09-the-government-of-catalonia-barcelona-city-council-and-the-free-software-association-decidim-sign-a-collaboration-agreement-to-promote-democratic-participation-with-free-and-open-technologies.html.md b/source/blog/en/2021-02-09-the-government-of-catalonia-barcelona-city-council-and-the-free-software-association-decidim-sign-a-collaboration-agreement-to-promote-democratic-participation-with-free-and-open-technologies.html.md index d9549e12..991745a4 100644 --- a/source/blog/en/2021-02-09-the-government-of-catalonia-barcelona-city-council-and-the-free-software-association-decidim-sign-a-collaboration-agreement-to-promote-democratic-participation-with-free-and-open-technologies.html.md +++ b/source/blog/en/2021-02-09-the-government-of-catalonia-barcelona-city-council-and-the-free-software-association-decidim-sign-a-collaboration-agreement-to-promote-democratic-participation-with-free-and-open-technologies.html.md @@ -2,7 +2,6 @@ title: The Government of Catalonia, Barcelona City Council and the Free Software Association Decidim sign a collaboration agreement to promote democratic participation with free and open technologies -date: 2021-02-09T12:03:03.097Z --- The Free Software Association Decidim has signed a collaboration agreement between the Department of External Action, Institutional Relations and Transparency of the Generalitat de Catalunya and the Barcelona City Council. diff --git a/source/blog/en/2021-03-26-new-version-0-24-0.html.md b/source/blog/en/2021-03-26-new-version-0-24-0.html.md index 8902b7e4..5ca12f65 100644 --- a/source/blog/en/2021-03-26-new-version-0-24-0.html.md +++ b/source/blog/en/2021-03-26-new-version-0-24-0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.24.0 -date: 2021-03-26T11:41:33.093Z tags: ["releases"] --- ## Release highlights diff --git a/source/blog/en/2021-06-22-job-offer-community-coordinator.html.md b/source/blog/en/2021-06-22-job-offer-community-coordinator.html.md index 302ca34e..bde0b132 100644 --- a/source/blog/en/2021-06-22-job-offer-community-coordinator.html.md +++ b/source/blog/en/2021-06-22-job-offer-community-coordinator.html.md @@ -1,6 +1,5 @@ --- title: "Job offer: Community coordinator" -date: 2021-06-22T11:44:13.388Z --- ## What’s the job diff --git a/source/blog/en/2021-06-22-job-offer-senior-ror-developer.html.md b/source/blog/en/2021-06-22-job-offer-senior-ror-developer.html.md index b2acd2ad..f3532139 100644 --- a/source/blog/en/2021-06-22-job-offer-senior-ror-developer.html.md +++ b/source/blog/en/2021-06-22-job-offer-senior-ror-developer.html.md @@ -1,6 +1,5 @@ --- title: "Job offer: Senior RoR developer" -date: 2021-06-22T11:51:55.728Z --- ## What’s the job diff --git a/source/blog/en/2021-07-19-job-offer-project-manager.html.md b/source/blog/en/2021-07-19-job-offer-project-manager.html.md index ed727382..40775df7 100644 --- a/source/blog/en/2021-07-19-job-offer-project-manager.html.md +++ b/source/blog/en/2021-07-19-job-offer-project-manager.html.md @@ -1,6 +1,5 @@ --- title: "Job offer: Project Manager" -date: 2021-07-19T07:23:24.322Z --- ## What’s the job diff --git a/source/blog/en/2021-10-07-new-version-0-25-0.html.md b/source/blog/en/2021-10-07-new-version-0-25-0.html.md index 64225a2f..288f19e5 100644 --- a/source/blog/en/2021-10-07-new-version-0-25-0.html.md +++ b/source/blog/en/2021-10-07-new-version-0-25-0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.25.0 -date: 2021-10-07T10:18:54.011Z tags: ["releases"] --- ## Release highlights diff --git a/source/blog/en/2021-10-19-decidimfem-dev-programme-3-developers-grants-are-back.html.md b/source/blog/en/2021-10-19-decidimfem-dev-programme-3-developers-grants-are-back.html.md index 96f2e45f..ee7dd486 100644 --- a/source/blog/en/2021-10-19-decidimfem-dev-programme-3-developers-grants-are-back.html.md +++ b/source/blog/en/2021-10-19-decidimfem-dev-programme-3-developers-grants-are-back.html.md @@ -1,6 +1,5 @@ --- title: "DECIDIMFEM DEV PROGRAMME 3: Developers grants are back " -date: 2021-10-19T22:54:53.379Z --- * [Ver post en Castellano](https://decidim.org/blog/2021-10-19-decidimfem-dev-programme-3-developers-grants-are-back/#cast) diff --git a/source/blog/en/2021-12-15-decidim-is-not-affected-by-the-log4j-vulnerability-cve-2021-44228.html.md b/source/blog/en/2021-12-15-decidim-is-not-affected-by-the-log4j-vulnerability-cve-2021-44228.html.md index 51dee4c6..710d23bb 100644 --- a/source/blog/en/2021-12-15-decidim-is-not-affected-by-the-log4j-vulnerability-cve-2021-44228.html.md +++ b/source/blog/en/2021-12-15-decidim-is-not-affected-by-the-log4j-vulnerability-cve-2021-44228.html.md @@ -1,6 +1,5 @@ --- title: Decidim is not affected by the Log4j vulnerability (CVE- 2021-44228) -date: 2021-12-15T17:18:15.510Z --- Security researchers recently found out an extremely critical level vulnerability in the Log4j Java library. This vulnerability was publicly announced on 10th December 2021 as CVE-2021-44228 diff --git a/source/blog/en/2022-02-01-decidim-celebrates-5-years-as-a-key-infrastructure-for-citizen-participation.html.md b/source/blog/en/2022-02-01-decidim-celebrates-5-years-as-a-key-infrastructure-for-citizen-participation.html.md index fe580fc1..fca374b8 100644 --- a/source/blog/en/2022-02-01-decidim-celebrates-5-years-as-a-key-infrastructure-for-citizen-participation.html.md +++ b/source/blog/en/2022-02-01-decidim-celebrates-5-years-as-a-key-infrastructure-for-citizen-participation.html.md @@ -1,6 +1,5 @@ --- title: Decidim celebrates 5 years as a key infrastructure for citizen participation -date: 2022-02-01T09:36:03.718Z --- [Ver post en castellano](/blog/2022-02-01-decidim-celebrates-5-years-as-a-key-infrastructure-for-citizen-participation/#cast) diff --git a/source/blog/en/2022-02-22-new-version-0-26-0.html.md b/source/blog/en/2022-02-22-new-version-0-26-0.html.md index c30bc605..f3a42e09 100644 --- a/source/blog/en/2022-02-22-new-version-0-26-0.html.md +++ b/source/blog/en/2022-02-22-new-version-0-26-0.html.md @@ -1,6 +1,5 @@ --- title: New version 0.26.0 -date: 2022-02-22T09:10:42.537Z tags: ["releases"] --- ## Improvements to existing features diff --git a/source/blog/en/2022-06-01-decidim-and-the-city-of-helsinki.html.md b/source/blog/en/2022-06-01-decidim-and-the-city-of-helsinki.html.md new file mode 100644 index 00000000..c9a98b6e --- /dev/null +++ b/source/blog/en/2022-06-01-decidim-and-the-city-of-helsinki.html.md @@ -0,0 +1,22 @@ +--- +title: Decidim and the city of Helsinki +tags: ["casestudy"] +--- + + +OmaStadi Helsinki screenshot + +*Sanna Moisala, Project manager of participatory services at the The Helsinki City Executive Office. Digitalisation Unit* + +In 2017 City Council of Helsinki decided that participatory budgeting would be one of the tools for residents' participation. We evaluated seven different kinds of participatory budgeting options to find the right platform to support Helsinki's process with an easy to use interface and required modularity for different kinds of needs. Decidim won the evaluation and first instances were built in 2018. Modularity was the requirement that cemented Decidim's first place in the evaluation. + +What we appreciate in Helsinki is that **Decidim is built with democracy in mind** and therefore democracy is a big focus. Democratic principles such as accountability, equality and transparency are in the core of the design. + +The first deployment was the **Youth's participatory budgeting** and at the moment we have four different kinds of Decidim websites with different kinds of setup up and running. + +Over the years we've done a lot of development to make sure that the city's participatory budgeting [OmaStadi](https://omastadi.hel.fi/) serves our processes as inclusively as possible with different devices so that everyone can be involved. + +Helsinki has made various improvements to the Decidim core as well as **built around 20 modules and integrations to support the local needs and to improve the process for various stakeholders involved in it**. We have also greatly invested in the local redesign of the platform to improve the end-user experience and simplify the platform for all types of citizens through interviews, prototyping, user testing and accessibility evaluation. + +Helsinki's experiences with Decidim have inspired other cities and towns in Finland to use Decidim as well in their participatory processes. + diff --git a/source/blog/en/2022-06-01-the-conference-on-the-future-of-europe.html.md b/source/blog/en/2022-06-01-the-conference-on-the-future-of-europe.html.md new file mode 100644 index 00000000..6fcc1362 --- /dev/null +++ b/source/blog/en/2022-06-01-the-conference-on-the-future-of-europe.html.md @@ -0,0 +1,42 @@ +--- +title: The Conference on the Future of Europe, UE +tags: ["casestudy"] +--- + +The Conference on the Future of Europe screenshot + +*Paulo Rosa, Policy Analyst at the European Commission* + +The European Commission used Decidim to implement the multilingual digital platform of the [Conference on the Future of Europe](https://futureu.europa.eu/). + +The Conference on the Future of Europe was a pan-European initiative composed of multiple interlinked events and debates where citizens, civil society and all other stakeholders (including local, regional and national authorities) from Europe were able to share and discuss their ideas, in all official EU languages, on what they expect from the European Union. It provided a unique opportunity for EU Institutions to directly hear from citizens on Europe’s challenges and priorities. While based on a Commission proposal, the Conference was a joint EU initiative, piloted by the European Parliament, the Council and the Commission. + +The multilingual digital platform functioned both as the Conference (i) main information hub, providing relevant information to citizens about the conference format, topics under discussion, planned events, and outcomes, and (ii) main participation space, enabling citizens to contribute online, individually or collectively, with concrete ideas for EU policies around the Conference's headline topics defined in the Joint Declaration, and to comment on other people’s ideas. Another important way of contributing to the Conference was to organise events (virtual, in-person or hybrid), announce them on the platform, report on their outcome and link them to ideas. + +The digital platform was launched on 19 April 2021 and was open to contributions until 9 of May 2022. During this period, 18 859 ideas and 22 167 comments were submitted and 6 661 events were organised. Contributions gathered through the digital platform were taken on board by the European Citizens’ Panels and debated and discussed in the Conference Plenary - the the Conference’s other two main pillars. + +This one-year journey of discussion, debate and collaboration between citizens and politicians culminated in a report centred around 49 proposals that include concrete objectives and more than 320 measures for the EU institutions to follow up. + +## Why did you choose Decidim? + +Decidim was chosen following an in-depth analysing of relevant leading proprietary and open source online citizen engagement platforms. The analysis assessed the suitability and technical capacities of approximately 20 different platforms, using a pre-defined set of criteria, which included deliberative potential, moderation tools, analysis and synthesis of participants contributions, multilingualism, user authentication mechanisms, scalability, interoperability, accessibility and GDPR compliance, data ownership, security, and licencing model. + +Overall, Decidim offered a wide range of modules for participatory activities (e.g. initiatives, consultations, assembly management, participatory budgeting etc.). These modules could be customised and combined to tailor the overall engagement process of the Conference, complementing or facilitating also the planned face-to-face engagement activities. Moreover, as Decidim is open-source, the platform could be easily hosted on the European Commission servers (Europa) and could be moderated by the Commission. The deployment of an "in-house" platform was key to the Conference since data ownership, transparency and traceability were crucial aspects, as in any democratic process. Deploying an open source solution also meant that the source code was available and all actions were accountable. The multilingual capabilities of Decidim were also fundamental as it provided the initial ground for the setup of a genuine pan-European online debate. + +## What were you looking for when deploying a Decidim + +The European Commission was interested in having a digital platform that: + +* ensured a broader engagement of citizens, beyond the usual suspects. The digital platform needed to be easily accessible to all citizens, from all walks of life (e.g. young people, older people, people with disabilities (e.g. with visual impairments), economically or geographically disadvantaged communities, etc.). +* allowed to go beyond providing information to citizens and one-way citizen engagement processes such as online surveys and consultations to implement deliberative approaches that made possible for citizens to debate and choose between competing policy options and / or propose new ones. +* fostered a pan-European debate by allowing multilingual content and interaction in the 24 EU official languages, using mixed approaches based on the manual creation of multi-language content for official information (e.g. topics factsheets) and automatic (contextual) translation for participant’s content/submissions. +* uphold the transparency of the Conference and all Conference-related events. Outcomes from the face-to-face debates, as well as participants' contributions needed to be made promptly available to everyone, and the platform should be the main hub for this. Hosting the digital platform on Europa, at inter-institutional level with EU branding, supported this objective. + +## What did you learn from this experience? + +The Conference on the Future of Europe was a pioneering participatory event at the European level in terms of scale, interactivity and multilingualism. The COVID-19 pandemic impacted the initial planning of the Conference, highlighting the importance of a digital platform as a way to provide alternatives to face-to-face events. In this way, the digital platform was key in increasing the opportunities for citizens to play their part and be involved in EU policy making. The multilingualism aspect was crucial to ensure that there were no language barriers to participate - participants could submit their ideas and comment in their own language as well as read other participants contributions in any EU language. + +Throughout the entire process, in order to give voice to wider publics and improve the participants' experience, the platform was continuously improved, for example by adding functionalities or visual materials. The platform was also made more accessible to people with disabilities. + +It was also important in the process to show participants that their contributions mattered. Frequent reports were produced based on the analysis of the contributions submitted to the digital platform. + diff --git a/source/blog/en/2022-06-01-the-japanese-case.html.md b/source/blog/en/2022-06-01-the-japanese-case.html.md new file mode 100644 index 00000000..014e7d5d --- /dev/null +++ b/source/blog/en/2022-06-01-the-japanese-case.html.md @@ -0,0 +1,29 @@ +--- +title: The Japanese case +tags: ["casestudy"] +--- + +Metadecidim Japan screenshot + +*Hal Seki. Founder of Code for Japan* + +The first Decidim instance in the Pacific island was deployed on the year 2020 at [Kakosawa](https://kakogawa.diycities.jp), later came [Yosano](https://yosano.makeour.city), [Nishiaizu](https://nishiaizu.makeour.city), [Kamaishi](https://kamaishi.makeour.city) and the community instance [Meta](https://meta.diycities.jp). + +## Why did you choose Decidim? + +First, Decidim was open-source software and Code for Japan is a community that promotes public-private partnerships through open data and open-source software. + +Second, Decidim was very actively updated among other tools that checked. Third, Decidim provides customize-friendly architecture so that we can adapt it to our domestic situation. + +## What were you looking for when deploying a Decidim + +* **Robustness**: Our clients are primarily governments. Robustness is essential for them. +* **i18n support**: It's important to be used in Japanese. +* **User interface**: It should be easy to use for non-technical people. +* **Accessibility**: We should cover various types of people. + +## What did you learn from this experience? + +Open-Government in Japan is halfway down the road. But, we feel the potential of our fellow in each region, especially future generations, for developing digital competencies: In a depopulated town, a group of junior high school students uses Decidim to make a proposal for community development. Adults in and outside the town make efforts to implement their proposals. Those experiences will create a new base of citizenship for the young generation. + + diff --git a/source/blog/index.html.erb b/source/blog/index.html.erb index 7e071a57..7a65c142 100644 --- a/source/blog/index.html.erb +++ b/source/blog/index.html.erb @@ -2,11 +2,19 @@ nav: blog --- -
-
+
+
+

<%= t("blog.title") %>

+

+ <%= t("blog.subtitle") %> +

+
+ +
<% blog.articles.each do |article| %> - <%= partial "partials/article_preview", locals: {article: article} %> +
+ <%= partial "partials/article_preview", locals: {article: article} %> +
<% end %> -
diff --git a/source/blog/tag.html.erb b/source/blog/tag.html.erb index 21137a48..f6407320 100644 --- a/source/blog/tag.html.erb +++ b/source/blog/tag.html.erb @@ -2,10 +2,19 @@ pageable: true per_page: 10 --- -
-

Articles by tag "<%= tagname %>"

- <% page_articles.each_with_index do |article| %> - <%= partial "partials/article_preview", locals: {article: article} %> - <% end %> - +
+
+

<%= t("blog.title") %>

+

+ <%= t("blog.tags.title") %> <%= tagname %> +

+
+ +
+ <% page_articles.each_with_index do |article| %> +
+ <%= partial "partials/article_preview", locals: {article: article} %> +
+ <% end %> +
diff --git a/source/fonts/barlow-light.woff b/source/fonts/barlow-light.woff new file mode 100644 index 00000000..096d900d Binary files /dev/null and b/source/fonts/barlow-light.woff differ diff --git a/source/fonts/barlow-light.woff2 b/source/fonts/barlow-light.woff2 new file mode 100644 index 00000000..c2b74488 Binary files /dev/null and b/source/fonts/barlow-light.woff2 differ diff --git a/source/images/case_studies/conference_future_of_europe.png b/source/images/case_studies/conference_future_of_europe.png new file mode 100644 index 00000000..c2e00e11 Binary files /dev/null and b/source/images/case_studies/conference_future_of_europe.png differ diff --git a/source/images/case_studies/metadecidim_japan.png b/source/images/case_studies/metadecidim_japan.png new file mode 100644 index 00000000..dfd162df Binary files /dev/null and b/source/images/case_studies/metadecidim_japan.png differ diff --git a/source/images/case_studies/omastadi_helsinki.png b/source/images/case_studies/omastadi_helsinki.png new file mode 100644 index 00000000..a34727cc Binary files /dev/null and b/source/images/case_studies/omastadi_helsinki.png differ diff --git a/source/images/cityhalls/logo_aj_barcelona.jpg b/source/images/cityhalls/logo_aj_barcelona.jpg deleted file mode 100644 index 381d6234..00000000 Binary files a/source/images/cityhalls/logo_aj_barcelona.jpg and /dev/null differ diff --git a/source/images/community-picture.jpg b/source/images/community-picture.jpg index 64effbfd..6dadf162 100644 Binary files a/source/images/community-picture.jpg and b/source/images/community-picture.jpg differ diff --git a/source/images/decidim-logo-claim.svg b/source/images/decidim-logo-claim.svg new file mode 100644 index 00000000..61da515d --- /dev/null +++ b/source/images/decidim-logo-claim.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/images/decidim-logo-topbar.svg b/source/images/decidim-logo-topbar.svg deleted file mode 100644 index 503788e2..00000000 --- a/source/images/decidim-logo-topbar.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/source/images/decidim-logo.svg b/source/images/decidim-logo.svg index 8e2efcf9..ca763fdf 100644 --- a/source/images/decidim-logo.svg +++ b/source/images/decidim-logo.svg @@ -1,26 +1,12 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + - diff --git a/source/images/decidim-symbol.svg b/source/images/decidim-symbol.svg new file mode 100644 index 00000000..0cbddb52 --- /dev/null +++ b/source/images/decidim-symbol.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/source/images/features/accountability.svg b/source/images/features/accountability.svg deleted file mode 100644 index f7b40ce8..00000000 --- a/source/images/features/accountability.svg +++ /dev/null @@ -1 +0,0 @@ -processing \ No newline at end of file diff --git a/source/images/features/assemblies.png b/source/images/features/assemblies.png new file mode 100644 index 00000000..d1c5d308 Binary files /dev/null and b/source/images/features/assemblies.png differ diff --git a/source/images/features/assemblies.svg b/source/images/features/assemblies.svg deleted file mode 100644 index 4c38c5f7..00000000 --- a/source/images/features/assemblies.svg +++ /dev/null @@ -1 +0,0 @@ -work chat \ No newline at end of file diff --git a/source/images/features/blog.svg b/source/images/features/blog.svg deleted file mode 100644 index e697ba93..00000000 --- a/source/images/features/blog.svg +++ /dev/null @@ -1 +0,0 @@ -blog \ No newline at end of file diff --git a/source/images/features/bug.svg b/source/images/features/bug.svg deleted file mode 100644 index a5627e27..00000000 --- a/source/images/features/bug.svg +++ /dev/null @@ -1 +0,0 @@ -bug fixing \ No newline at end of file diff --git a/source/images/features/comments.svg b/source/images/features/comments.svg deleted file mode 100644 index 3eaba719..00000000 --- a/source/images/features/comments.svg +++ /dev/null @@ -1 +0,0 @@ -Posts \ No newline at end of file diff --git a/source/images/features/conference.svg b/source/images/features/conference.svg deleted file mode 100644 index ceb8f2ed..00000000 --- a/source/images/features/conference.svg +++ /dev/null @@ -1 +0,0 @@ -presentation1 \ No newline at end of file diff --git a/source/images/features/consultations.png b/source/images/features/consultations.png new file mode 100644 index 00000000..b8dbb5a1 Binary files /dev/null and b/source/images/features/consultations.png differ diff --git a/source/images/features/consultations.svg b/source/images/features/consultations.svg deleted file mode 100644 index 50b0ae9a..00000000 --- a/source/images/features/consultations.svg +++ /dev/null @@ -1 +0,0 @@ -questions \ No newline at end of file diff --git a/source/images/features/features.svg b/source/images/features/features.svg deleted file mode 100644 index faa6d3a2..00000000 --- a/source/images/features/features.svg +++ /dev/null @@ -1 +0,0 @@ -checking boxes \ No newline at end of file diff --git a/source/images/features/initiatives.png b/source/images/features/initiatives.png new file mode 100644 index 00000000..f165cae7 Binary files /dev/null and b/source/images/features/initiatives.png differ diff --git a/source/images/features/initiatives.svg b/source/images/features/initiatives.svg deleted file mode 100644 index adc4994b..00000000 --- a/source/images/features/initiatives.svg +++ /dev/null @@ -1 +0,0 @@ -status update \ No newline at end of file diff --git a/source/images/features/landing-budget.svg b/source/images/features/landing-budget.svg deleted file mode 100644 index e9486996..00000000 --- a/source/images/features/landing-budget.svg +++ /dev/null @@ -1 +0,0 @@ -data \ No newline at end of file diff --git a/source/images/features/landing-collaboration.svg b/source/images/features/landing-collaboration.svg deleted file mode 100644 index d789575d..00000000 --- a/source/images/features/landing-collaboration.svg +++ /dev/null @@ -1 +0,0 @@ -in sync \ No newline at end of file diff --git a/source/images/features/landing-community.svg b/source/images/features/landing-community.svg deleted file mode 100644 index ace1fa87..00000000 --- a/source/images/features/landing-community.svg +++ /dev/null @@ -1 +0,0 @@ -product tour \ No newline at end of file diff --git a/source/images/features/landing-modular.svg b/source/images/features/landing-modular.svg deleted file mode 100644 index dd5b7bc9..00000000 --- a/source/images/features/landing-modular.svg +++ /dev/null @@ -1 +0,0 @@ -product teardown \ No newline at end of file diff --git a/source/images/features/landing-open.svg b/source/images/features/landing-open.svg deleted file mode 100644 index d4a03be4..00000000 --- a/source/images/features/landing-open.svg +++ /dev/null @@ -1 +0,0 @@ -version control \ No newline at end of file diff --git a/source/images/features/landing-security.svg b/source/images/features/landing-security.svg deleted file mode 100644 index 8afd0ef4..00000000 --- a/source/images/features/landing-security.svg +++ /dev/null @@ -1 +0,0 @@ -security \ No newline at end of file diff --git a/source/images/features/meetings.svg b/source/images/features/meetings.svg deleted file mode 100644 index 2496602c..00000000 --- a/source/images/features/meetings.svg +++ /dev/null @@ -1 +0,0 @@ -brainstorming \ No newline at end of file diff --git a/source/images/features/newsletter.svg b/source/images/features/newsletter.svg deleted file mode 100644 index 64597293..00000000 --- a/source/images/features/newsletter.svg +++ /dev/null @@ -1 +0,0 @@ -mail \ No newline at end of file diff --git a/source/images/features/notifications.svg b/source/images/features/notifications.svg deleted file mode 100644 index c9131304..00000000 --- a/source/images/features/notifications.svg +++ /dev/null @@ -1,125 +0,0 @@ - - - - -mail_2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/source/images/features/participatory_processes.png b/source/images/features/participatory_processes.png new file mode 100644 index 00000000..f20cd4ce Binary files /dev/null and b/source/images/features/participatory_processes.png differ diff --git a/source/images/features/processes.svg b/source/images/features/processes.svg deleted file mode 100644 index 1aa0714c..00000000 --- a/source/images/features/processes.svg +++ /dev/null @@ -1 +0,0 @@ -group chat \ No newline at end of file diff --git a/source/images/features/proposals.svg b/source/images/features/proposals.svg deleted file mode 100644 index 4690a479..00000000 --- a/source/images/features/proposals.svg +++ /dev/null @@ -1 +0,0 @@ -organizing projects1 \ No newline at end of file diff --git a/source/images/features/results.svg b/source/images/features/results.svg deleted file mode 100644 index a35fad0c..00000000 --- a/source/images/features/results.svg +++ /dev/null @@ -1 +0,0 @@ -confirmation \ No newline at end of file diff --git a/source/images/features/sortition.svg b/source/images/features/sortition.svg deleted file mode 100644 index 1f685bc0..00000000 --- a/source/images/features/sortition.svg +++ /dev/null @@ -1 +0,0 @@ -team \ No newline at end of file diff --git a/source/images/features/survey.svg b/source/images/features/survey.svg deleted file mode 100644 index 75122e77..00000000 --- a/source/images/features/survey.svg +++ /dev/null @@ -1 +0,0 @@ -customer survey \ No newline at end of file diff --git a/source/images/features/texts.svg b/source/images/features/texts.svg deleted file mode 100644 index 92159268..00000000 --- a/source/images/features/texts.svg +++ /dev/null @@ -1 +0,0 @@ -content \ No newline at end of file diff --git a/source/images/features/voting.svg b/source/images/features/voting.svg deleted file mode 100644 index 9655d6f9..00000000 --- a/source/images/features/voting.svg +++ /dev/null @@ -1 +0,0 @@ -booking \ No newline at end of file diff --git a/source/images/hero_cover.jpg b/source/images/hero_cover.jpg new file mode 100644 index 00000000..4ed7dcf2 Binary files /dev/null and b/source/images/hero_cover.jpg differ diff --git a/source/images/icons/budget.svg b/source/images/icons/budget.svg deleted file mode 100644 index 6a82c8b0..00000000 --- a/source/images/icons/budget.svg +++ /dev/null @@ -1 +0,0 @@ -charts \ No newline at end of file diff --git a/source/images/icons/budget1.svg b/source/images/icons/budget1.svg deleted file mode 100644 index 070f21ff..00000000 --- a/source/images/icons/budget1.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/source/images/icons/com-issue.svg b/source/images/icons/com-issue.svg deleted file mode 100644 index 475c3907..00000000 --- a/source/images/icons/com-issue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/source/images/icons/com-plan.svg b/source/images/icons/com-plan.svg deleted file mode 100644 index 4f7bc7a7..00000000 --- a/source/images/icons/com-plan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/source/images/icons/com-proposal.svg b/source/images/icons/com-proposal.svg deleted file mode 100644 index bd429136..00000000 --- a/source/images/icons/com-proposal.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/source/images/icons/com-pub.svg b/source/images/icons/com-pub.svg deleted file mode 100644 index c0aceab1..00000000 --- a/source/images/icons/com-pub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/source/images/icons/com-pull.svg b/source/images/icons/com-pull.svg deleted file mode 100644 index ee67fefe..00000000 --- a/source/images/icons/com-pull.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/source/images/icons/com-validate.svg b/source/images/icons/com-validate.svg deleted file mode 100644 index 86240c41..00000000 --- a/source/images/icons/com-validate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/source/images/icons/debate.svg b/source/images/icons/debate.svg deleted file mode 100644 index a1ee3aeb..00000000 --- a/source/images/icons/debate.svg +++ /dev/null @@ -1 +0,0 @@ -development \ No newline at end of file diff --git a/source/images/icons/debate1.svg b/source/images/icons/debate1.svg deleted file mode 100644 index 3647fded..00000000 --- a/source/images/icons/debate1.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/source/images/icons/decision.svg b/source/images/icons/decision.svg deleted file mode 100644 index 95fe53e8..00000000 --- a/source/images/icons/decision.svg +++ /dev/null @@ -1 +0,0 @@ -chat \ No newline at end of file diff --git a/source/images/icons/decision1.svg b/source/images/icons/decision1.svg deleted file mode 100644 index de56fe5b..00000000 --- a/source/images/icons/decision1.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/source/images/icons/network.svg b/source/images/icons/network.svg deleted file mode 100644 index bfc3b651..00000000 --- a/source/images/icons/network.svg +++ /dev/null @@ -1 +0,0 @@ -connected \ No newline at end of file diff --git a/source/images/icons/network1.svg b/source/images/icons/network1.svg deleted file mode 100644 index b4bfe902..00000000 --- a/source/images/icons/network1.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/source/images/icons/play.svg b/source/images/icons/play.svg deleted file mode 100644 index 8165dbe0..00000000 --- a/source/images/icons/play.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - diff --git a/source/images/icons/process.svg b/source/images/icons/process.svg deleted file mode 100644 index 89e06cad..00000000 --- a/source/images/icons/process.svg +++ /dev/null @@ -1 +0,0 @@ -live collaboration \ No newline at end of file diff --git a/source/images/icons/process1.svg b/source/images/icons/process1.svg deleted file mode 100644 index 716f588d..00000000 --- a/source/images/icons/process1.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/source/images/icons/quote.svg b/source/images/icons/quote.svg deleted file mode 100644 index 7a8721ef..00000000 --- a/source/images/icons/quote.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/source/images/icons/strategy.svg b/source/images/icons/strategy.svg deleted file mode 100644 index 12a9afbe..00000000 --- a/source/images/icons/strategy.svg +++ /dev/null @@ -1,199 +0,0 @@ - - - - -control panel1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/source/images/icons/strategy1.svg b/source/images/icons/strategy1.svg deleted file mode 100644 index 916c6c48..00000000 --- a/source/images/icons/strategy1.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/source/images/index/accountability.png b/source/images/index/accountability.png new file mode 100644 index 00000000..6978ec6f Binary files /dev/null and b/source/images/index/accountability.png differ diff --git a/source/images/index/assemblies.png b/source/images/index/assemblies.png new file mode 100644 index 00000000..95a04cd1 Binary files /dev/null and b/source/images/index/assemblies.png differ diff --git a/source/images/index/budgets.png b/source/images/index/budgets.png new file mode 100644 index 00000000..2e51f267 Binary files /dev/null and b/source/images/index/budgets.png differ diff --git a/source/images/index/conversations.png b/source/images/index/conversations.png new file mode 100644 index 00000000..ccdf7119 Binary files /dev/null and b/source/images/index/conversations.png differ diff --git a/source/images/index/initiatives.png b/source/images/index/initiatives.png new file mode 100644 index 00000000..64b340e0 Binary files /dev/null and b/source/images/index/initiatives.png differ diff --git a/source/images/index/participatory_processes.png b/source/images/index/participatory_processes.png new file mode 100644 index 00000000..1eb2b562 Binary files /dev/null and b/source/images/index/participatory_processes.png differ diff --git a/source/images/partners/logo_footer_barcelona.png b/source/images/partners/logo_footer_barcelona.png deleted file mode 100755 index c2a88e12..00000000 Binary files a/source/images/partners/logo_footer_barcelona.png and /dev/null differ diff --git a/source/images/partners/logo_header_barcelona.png b/source/images/partners/logo_header_barcelona.png deleted file mode 100755 index 51e24018..00000000 Binary files a/source/images/partners/logo_header_barcelona.png and /dev/null differ diff --git a/source/images/partners/logo_partner_adab1ts.png b/source/images/partners/logo_partner_adab1ts.png deleted file mode 100644 index ba995b23..00000000 Binary files a/source/images/partners/logo_partner_adab1ts.png and /dev/null differ diff --git a/source/images/partners/logo_partner_afroleadership.jpg b/source/images/partners/logo_partner_afroleadership.jpg deleted file mode 100644 index 59bfb2bb..00000000 Binary files a/source/images/partners/logo_partner_afroleadership.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_agoravoting.png b/source/images/partners/logo_partner_agoravoting.png deleted file mode 100644 index 8fda0304..00000000 Binary files a/source/images/partners/logo_partner_agoravoting.png and /dev/null differ diff --git a/source/images/partners/logo_partner_ajbcn.jpg b/source/images/partners/logo_partner_ajbcn.jpg deleted file mode 100755 index 381d6234..00000000 Binary files a/source/images/partners/logo_partner_ajbcn.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_alabs.png b/source/images/partners/logo_partner_alabs.png deleted file mode 100644 index c55ecb54..00000000 Binary files a/source/images/partners/logo_partner_alabs.png and /dev/null differ diff --git a/source/images/partners/logo_partner_aspgems.png b/source/images/partners/logo_partner_aspgems.png deleted file mode 100644 index e6cba584..00000000 Binary files a/source/images/partners/logo_partner_aspgems.png and /dev/null differ diff --git a/source/images/partners/logo_partner_bitlab.jpg b/source/images/partners/logo_partner_bitlab.jpg deleted file mode 100644 index 034e46b8..00000000 Binary files a/source/images/partners/logo_partner_bitlab.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_codegram.png b/source/images/partners/logo_partner_codegram.png deleted file mode 100755 index c2bc338a..00000000 Binary files a/source/images/partners/logo_partner_codegram.png and /dev/null differ diff --git a/source/images/partners/logo_partner_coditramuntana.svg b/source/images/partners/logo_partner_coditramuntana.svg deleted file mode 100755 index 4a1ea614..00000000 --- a/source/images/partners/logo_partner_coditramuntana.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/source/images/partners/logo_partner_colectic.jpg b/source/images/partners/logo_partner_colectic.jpg deleted file mode 100644 index e102afa3..00000000 Binary files a/source/images/partners/logo_partner_colectic.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_coopdevs.png b/source/images/partners/logo_partner_coopdevs.png deleted file mode 100644 index d8928c1a..00000000 Binary files a/source/images/partners/logo_partner_coopdevs.png and /dev/null differ diff --git a/source/images/partners/logo_partner_decode.png b/source/images/partners/logo_partner_decode.png deleted file mode 100644 index bd0b66d3..00000000 Binary files a/source/images/partners/logo_partner_decode.png and /dev/null differ diff --git a/source/images/partners/logo_partner_digidemlab.svg b/source/images/partners/logo_partner_digidemlab.svg deleted file mode 100644 index 84c1c6d6..00000000 --- a/source/images/partners/logo_partner_digidemlab.svg +++ /dev/null @@ -1 +0,0 @@ -Namnlöst-1 \ No newline at end of file diff --git a/source/images/partners/logo_partner_digitalfems.jpg b/source/images/partners/logo_partner_digitalfems.jpg deleted file mode 100644 index a07cb60d..00000000 Binary files a/source/images/partners/logo_partner_digitalfems.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_elder.jpg b/source/images/partners/logo_partner_elder.jpg deleted file mode 100644 index 7942a15c..00000000 Binary files a/source/images/partners/logo_partner_elder.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_ethicoo.png b/source/images/partners/logo_partner_ethicoo.png deleted file mode 100644 index 3903c5b6..00000000 Binary files a/source/images/partners/logo_partner_ethicoo.png and /dev/null differ diff --git a/source/images/partners/logo_partner_eticas.jpg b/source/images/partners/logo_partner_eticas.jpg deleted file mode 100644 index fdc9b5e8..00000000 Binary files a/source/images/partners/logo_partner_eticas.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_eurecat.png b/source/images/partners/logo_partner_eurecat.png deleted file mode 100755 index 68263a24..00000000 Binary files a/source/images/partners/logo_partner_eurecat.png and /dev/null differ diff --git a/source/images/partners/logo_partner_ffg.png b/source/images/partners/logo_partner_ffg.png deleted file mode 100644 index 550defc4..00000000 Binary files a/source/images/partners/logo_partner_ffg.png and /dev/null differ diff --git a/source/images/partners/logo_partner_gencat.png b/source/images/partners/logo_partner_gencat.png new file mode 100644 index 00000000..490d8f7b Binary files /dev/null and b/source/images/partners/logo_partner_gencat.png differ diff --git a/source/images/partners/logo_partner_in3.png b/source/images/partners/logo_partner_in3.png deleted file mode 100755 index 5e965499..00000000 Binary files a/source/images/partners/logo_partner_in3.png and /dev/null differ diff --git a/source/images/partners/logo_partner_liquidvoting.jpg b/source/images/partners/logo_partner_liquidvoting.jpg deleted file mode 100644 index 46b7f2ac..00000000 Binary files a/source/images/partners/logo_partner_liquidvoting.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_macba.jpg b/source/images/partners/logo_partner_macba.jpg deleted file mode 100644 index 1e2d8283..00000000 Binary files a/source/images/partners/logo_partner_macba.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_mainio_tech.svg b/source/images/partners/logo_partner_mainio_tech.svg deleted file mode 100644 index 2e2c1228..00000000 --- a/source/images/partners/logo_partner_mainio_tech.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/source/images/partners/logo_partner_marsbased.png b/source/images/partners/logo_partner_marsbased.png deleted file mode 100644 index edd7e16d..00000000 Binary files a/source/images/partners/logo_partner_marsbased.png and /dev/null differ diff --git a/source/images/partners/logo_partner_mitgestalten.jpg b/source/images/partners/logo_partner_mitgestalten.jpg deleted file mode 100644 index 60ed992c..00000000 Binary files a/source/images/partners/logo_partner_mitgestalten.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_octree.png b/source/images/partners/logo_partner_octree.png deleted file mode 100644 index f13b31b7..00000000 Binary files a/source/images/partners/logo_partner_octree.png and /dev/null differ diff --git a/source/images/partners/logo_partner_opensourcepolitics.jpg b/source/images/partners/logo_partner_opensourcepolitics.jpg deleted file mode 100644 index a0ae9caa..00000000 Binary files a/source/images/partners/logo_partner_opensourcepolitics.jpg and /dev/null differ diff --git a/source/images/partners/logo_partner_platoniq.png b/source/images/partners/logo_partner_platoniq.png deleted file mode 100644 index 3354a5a5..00000000 Binary files a/source/images/partners/logo_partner_platoniq.png and /dev/null differ diff --git a/source/images/partners/logo_partner_populate-tools.png b/source/images/partners/logo_partner_populate-tools.png deleted file mode 100755 index 72a22952..00000000 Binary files a/source/images/partners/logo_partner_populate-tools.png and /dev/null differ diff --git a/source/images/partners/logo_partner_puzzle.svg b/source/images/partners/logo_partner_puzzle.svg deleted file mode 100644 index 67d90b96..00000000 --- a/source/images/partners/logo_partner_puzzle.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - logo_classic - Created with Sketch. - - - - - - - - \ No newline at end of file diff --git a/source/images/partners/logo_partner_soko.png b/source/images/partners/logo_partner_soko.png deleted file mode 100644 index 3e429a41..00000000 Binary files a/source/images/partners/logo_partner_soko.png and /dev/null differ diff --git a/source/images/partners/logo_partner_swwweet.svg b/source/images/partners/logo_partner_swwweet.svg deleted file mode 100644 index dce38b12..00000000 --- a/source/images/partners/logo_partner_swwweet.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - Swwweet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/source/images/partners/logo_partner_tecnopolitica.png b/source/images/partners/logo_partner_tecnopolitica.png deleted file mode 100644 index a380ad68..00000000 Binary files a/source/images/partners/logo_partner_tecnopolitica.png and /dev/null differ diff --git a/source/images/partners/logo_partner_tremend.png b/source/images/partners/logo_partner_tremend.png deleted file mode 100644 index 39832995..00000000 Binary files a/source/images/partners/logo_partner_tremend.png and /dev/null differ diff --git a/source/images/partners/logo_partner_upf.png b/source/images/partners/logo_partner_upf.png deleted file mode 100755 index c3eff4e6..00000000 Binary files a/source/images/partners/logo_partner_upf.png and /dev/null differ diff --git a/source/images/remixicon.symbol.svg b/source/images/remixicon.symbol.svg new file mode 100644 index 00000000..2522b6cf --- /dev/null +++ b/source/images/remixicon.symbol.svg @@ -0,0 +1,11356 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/images/signal.svg b/source/images/signal.svg deleted file mode 100644 index df7ea70a..00000000 --- a/source/images/signal.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - signal - Created with Sketch. - - - - - - - diff --git a/source/images/testimonials/francisco_tena.jpg b/source/images/testimonials/francisco_tena.jpg new file mode 100644 index 00000000..0031abe6 Binary files /dev/null and b/source/images/testimonials/francisco_tena.jpg differ diff --git a/source/images/video-cover.jpg b/source/images/video-cover.jpg deleted file mode 100644 index 1bf861d7..00000000 Binary files a/source/images/video-cover.jpg and /dev/null differ diff --git a/source/images/world-map.png b/source/images/world-map.png new file mode 100644 index 00000000..80817e9b Binary files /dev/null and b/source/images/world-map.png differ diff --git a/source/javascripts/accordion.js b/source/javascripts/accordion.js new file mode 100644 index 00000000..599abd28 --- /dev/null +++ b/source/javascripts/accordion.js @@ -0,0 +1,30 @@ +/** + * Use [data-accordion] tag in the parent node of every element + * + * @example + *
+ *
...
+ *
...
+ *
...
+ *
+ */ + +function accordion() { + const selectors = document.querySelectorAll("[data-accordion]"); + selectors.forEach((container) => { + const details = Array.from(container.querySelectorAll("details")); + + if (details.length) { + details.forEach((detail) => + detail.addEventListener("click", (e) => { + const active = details.find((d) => d.open); + if (!e.currentTarget.open && active) { + active.open = false; + } + }) + ); + } + }); +} + +accordion() diff --git a/source/javascripts/closest-polyfill.js b/source/javascripts/closest-polyfill.js deleted file mode 100644 index 0d21966f..00000000 --- a/source/javascripts/closest-polyfill.js +++ /dev/null @@ -1,13 +0,0 @@ -if (window.Element && !Element.prototype.closest) { - Element.prototype.closest = - function(s) { - var matches = (this.document || this.ownerDocument).querySelectorAll(s), - i, - el = this; - do { - i = matches.length; - while (--i >= 0 && matches.item(i) !== el) {}; - } while ((i < 0) && (el = el.parentElement)); - return el; - }; -} diff --git a/source/javascripts/display-topbar.js b/source/javascripts/display-topbar.js deleted file mode 100644 index 0480b0b0..00000000 --- a/source/javascripts/display-topbar.js +++ /dev/null @@ -1,22 +0,0 @@ -function displayTopbar() { - var homePage = document.querySelector('.home'), - topBar = document.querySelector('.topbar'), - scrollElement = document.querySelector('.hero'), - visibleClass = 'topbar--is-visible' - - if (!homePage) { - return - } - function checkTopBar() { - var scrollPosition = scrollElement.getBoundingClientRect().bottom - if (scrollPosition <= 0) { - topBar.classList.add(visibleClass) - } else { - topBar.classList.remove(visibleClass) - } - } - - window.addEventListener('scroll', checkTopBar) -} - -displayTopbar() diff --git a/source/javascripts/filter-by-content.js b/source/javascripts/filter-by-content.js new file mode 100644 index 00000000..16b00dde --- /dev/null +++ b/source/javascripts/filter-by-content.js @@ -0,0 +1,29 @@ +/** + * Use [data-filter] tag in some parent node relative of the input search and the content to filter + * Use [data-filter-target] tag in the nodes to filter + * + * @example + *
+ * + *
...
+ *
...
+ *
...
+ *
+ */ +function handleClick({ target }) { + const parent = target.closest(`[data-filter]`); + const { value } = target; + + if (parent) { + [...parent.querySelectorAll(`[data-filter-target]`)].map((x) => + !x.textContent.match(new RegExp(value, "i")) ? x.setAttribute("hidden", true) : x.removeAttribute("hidden") + ); + } +} + +function filterContent() { + const selectors = document.querySelectorAll("[data-filter]"); + selectors.forEach(container => container.addEventListener("input", handleClick)); +} + +filterContent(); diff --git a/source/javascripts/header.js b/source/javascripts/header.js new file mode 100644 index 00000000..c6a83150 --- /dev/null +++ b/source/javascripts/header.js @@ -0,0 +1,11 @@ +function header() { + const selector = document.querySelector("[data-toggle-header]") + const ACTIVE_CLASS = "is-active" + + selector.addEventListener("click", () => { + const selector = document.querySelector("header") + selector.classList.toggle(ACTIVE_CLASS) + }) +} + +header() diff --git a/source/javascripts/image-switch.js b/source/javascripts/image-switch.js deleted file mode 100644 index bb5ae29a..00000000 --- a/source/javascripts/image-switch.js +++ /dev/null @@ -1,21 +0,0 @@ -function imageSwitch() { - var featureItem = document.querySelectorAll('.feature-item') - if (!featureItem) { - return - } - function changeImage() { - var featureContainer = this.parentNode.parentNode, - selectedImage = this.getAttribute('data-feature-image') - featureContainer.querySelectorAll('.active').forEach(function(e) { - e.classList.remove('active') - }) - this.classList.add('active') - document.querySelector(selectedImage).classList.add('active') - } - - featureItem.forEach(function(e) { - e.addEventListener('mouseover', changeImage) - }) -} - -// imageSwitch(); diff --git a/source/javascripts/lang-toggle.js b/source/javascripts/lang-toggle.js deleted file mode 100644 index 7b543f7a..00000000 --- a/source/javascripts/lang-toggle.js +++ /dev/null @@ -1,25 +0,0 @@ -function langToggle() { - - document.querySelector("body").classList.add("is-lang-active"); - - function toggleLangClass(e){ - e.preventDefault(); - document.querySelector(".lang-wrapper").classList.toggle("is-lang-open"); - } - - function langToggleClickOut(e) { - var targetElements, - targetTriggers, - i; - - if (!e.target.closest(".lang-wrapper")) { - targetElements = document.querySelector(".lang-wrapper").classList.remove("is-lang-open"); - } - } - - document.querySelector(".lang-trigger").addEventListener("click", toggleLangClass); - document.querySelector("body").addEventListener("click", langToggleClickOut); - -} - -langToggle(); diff --git a/source/javascripts/nav-toggle.js b/source/javascripts/nav-toggle.js deleted file mode 100644 index 896266c7..00000000 --- a/source/javascripts/nav-toggle.js +++ /dev/null @@ -1,12 +0,0 @@ -function navToggle() { - document.querySelector('body').classList.add('is-nav-active') - function toggleNavClass(e) { - e.preventDefault() - document.querySelector('body').classList.toggle('is-nav-open') - } - document - .querySelector('.main-nav__trigger') - .addEventListener('click', toggleNavClass) -} - -navToggle() diff --git a/source/javascripts/paginate-blog.js b/source/javascripts/paginate-blog.js deleted file mode 100644 index 676722a2..00000000 --- a/source/javascripts/paginate-blog.js +++ /dev/null @@ -1,41 +0,0 @@ -function paginateBlog() { - var paginateNumber = 5; - var paginateControl = document.querySelector('#paginate-control'); - var posts = document.querySelectorAll('.post-preview'); - - if (posts.length <= paginateNumber) { - return; - } - - paginateControl.classList.remove('is-paginate-control-hidden'); - - posts.forEach(function(e, index) { - if (index < paginateNumber) { - return; - } - e.classList.add('is-post-hidden'); - }); - - function loadMorePosts() { - var hiddenPosts = document.querySelectorAll('.is-post-hidden'); - for (var i = 0; i < paginateNumber; i++) { - if (hiddenPosts[i]) { - hiddenPosts[i].classList.remove('is-post-hidden'); - } - } - checkHiddenPosts(); - } - - function checkHiddenPosts() { - var hiddenPosts = document.querySelectorAll('.is-post-hidden'); - if (hiddenPosts.length === 0) { - document - .querySelector('#paginate-control') - .classList.add('is-paginate-control-hidden'); - } - } - - paginateControl.addEventListener('click', loadMorePosts); -} - -paginateBlog(); diff --git a/source/javascripts/play-video.js b/source/javascripts/play-video.js deleted file mode 100644 index caaa77e8..00000000 --- a/source/javascripts/play-video.js +++ /dev/null @@ -1,40 +0,0 @@ -function playVideo() { - var videoWrapper = document.querySelector('[data-video-wrapper]'); - - if (!videoWrapper) { - return; - } - var videoSrc = videoWrapper.dataset.src, - videoIframe; - videoWrapper.appendChild(document.createElement('iframe')); - videoIframe = videoWrapper.querySelector('iframe'); - videoIframe.setAttribute('allowfullscreen', 'true'); - - function showVideo(e) { - e.preventDefault(); - videoWrapper.classList.add('is-video-active'); - videoIframe.src = videoSrc; - document.body.classList.add('is-video-playing'); - videoWrapper.tabIndex = -1; - videoWrapper.style.outline = 0; - videoWrapper.focus(); - } - - function hideVideo(e) { - e.preventDefault(); - videoWrapper.classList.remove('is-video-active'); - videoIframe.src = ''; - document.body.classList.remove('is-video-playing'); - } - document - .querySelector('[data-playvideo-button]') - .addEventListener('click', showVideo); - document - .querySelector('[data-closevideo]') - .addEventListener('click', hideVideo); - document - .querySelector('[data-video-wrapper]') - .addEventListener('click', hideVideo); -} - -playVideo(); diff --git a/source/javascripts/site.js b/source/javascripts/site.js deleted file mode 100644 index 9de6ff3f..00000000 --- a/source/javascripts/site.js +++ /dev/null @@ -1 +0,0 @@ -// This is where it all goes :) diff --git a/source/javascripts/tabs.js b/source/javascripts/tabs.js new file mode 100644 index 00000000..f06ab223 --- /dev/null +++ b/source/javascripts/tabs.js @@ -0,0 +1,74 @@ +/** + * Use [data-tabs] tag in some parent node relative of the tabs and their contents + * Use [data-filter-id=UNIQUE_ID] tag in the tabs, setting the unique id + * Use [data-filter-content=UNIQUE_ID] tag in content relative to the tab id + * + * @example + *
+ *
    + *
  • ...
  • + *
  • ...
  • + *
  • ...
  • + *
+ *
...
+ *
...
+ *
...
+ *
+ */ + +function getTabId(node) { + const { dataset: { tabId, tabContent } = {}} = node || {} + return tabId || tabContent +} + +function setSelection({ parent, activeId }) { + const ids = parent.querySelectorAll(`[data-tab-id]`) + const contents = parent.querySelectorAll(`[data-tab-content]`) + const ACTIVE_CSS_CLASS = "is-selected" + + ids.forEach((node) => getTabId(node) === activeId ? node.classList.add(ACTIVE_CSS_CLASS) : node.classList.remove(ACTIVE_CSS_CLASS)) + contents.forEach((node) => getTabId(node) === activeId ? node.classList.add(ACTIVE_CSS_CLASS) : node.classList.remove(ACTIVE_CSS_CLASS)) +} + +function handleTabClick({ event: { target }, type }) { + const parent = target.closest(`[data-tabs=${type}]`); + const activeId = getTabId(target.closest("[data-tab-id]")); + + if (parent && activeId) { + setSelection({ parent, activeId }); + } +} + +function handleTouch({ event: { target }, startX, endX, type }) { + const parent = target.closest(`[data-tabs=${type}]`); + const activeId = getTabId(target.closest("[data-tab-id]") || target.closest("[data-tab-content]")); + const slides = [...new Set(Array.from(parent.querySelectorAll("[data-tab-id]")).map(getTabId))] + + if (!parent || !activeId || !slides.length) return false + + const i = slides.findIndex(x => x === activeId) + const prev = slides[i == 0 ? slides.length - 1 : i - 1]; + const next = slides[i == slides.length - 1 ? 0 : i + 1]; + return endX - startX < 0 + ? setSelection({ parent, activeId: next }) + : setSelection({ parent, activeId: prev }); +} + +function tabs() { + const selectors = document.querySelectorAll("[data-tabs]") + selectors.forEach(container => { + container.addEventListener("click", (event) => handleTabClick({ event, type: container.dataset.tabs })); + container.addEventListener("pointerover", (event) => handleTabClick({ event, type: container.dataset.tabs })); + container.addEventListener("keydown", (event) => event.key === "Enter" && handleTabClick({ event, type: container.dataset.tabs })); + + let startX; + let endX; + container.addEventListener("touchstart", event => (startX = event.touches[0].clientX)); + container.addEventListener("touchend", function (event) { + endX = event.changedTouches[0].clientX; + handleTouch({ event, startX, endX, type: container.dataset.tabs }); + }); + }) +} + +tabs() diff --git a/source/layouts/blog_layout.erb b/source/layouts/blog_layout.erb new file mode 100644 index 00000000..1bebe1ce --- /dev/null +++ b/source/layouts/blog_layout.erb @@ -0,0 +1,26 @@ +<% wrap_layout :layout do %> +
+
+ + <%= icon "ri-arrow-left-line", class: "w-4 h-4 flex-none" %> + <%= t("nav.blog") %> + +

<%= current_article.title %>

+
+ + <% if current_article.tags.present? && current_article.tags.length > 0 %> +  —  + + <% current_article.tags.each_with_index do |tag, index| %> + <%= link_to "#{tag}", tag_path(tag) %> <%= "- " unless index+1 == current_article.tags.length %> + <% end %> + + <% end %> +
+
+ +
+ <%= yield %> +
+
+<% end %> diff --git a/source/layouts/layout-blog.erb b/source/layouts/layout-blog.erb deleted file mode 100644 index 314f6fd0..00000000 --- a/source/layouts/layout-blog.erb +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - <%= current_article.title unless current_article.nil? %> | Blog | Decidim - <%= stylesheet_link_tag "site" %> - - <%= feed_tag :atom, "#{blog.options.prefix.to_s}/blog/feed.xml", title: "Atom Feed" %> - - - <%= partial "partials/navigation" %> - <%= partial "partials/topbar" %> -
-
-

-
- <%= current_article.title %> -
- -

- <%= yield %> -
-
- - <%= partial "partials/footer" %> - <%= javascript_include_tag "nav-toggle", :async => "async" %> - <%= javascript_include_tag "closest-polyfill", :async => "async" %> - <%= javascript_include_tag "lang-toggle", :async => "async" %> - <%= javascript_include_tag "image-switch", :async => "async" %> - - diff --git a/source/layouts/layout.erb b/source/layouts/layout.erb index 486d6851..d8eea318 100644 --- a/source/layouts/layout.erb +++ b/source/layouts/layout.erb @@ -3,27 +3,25 @@ - + <%= page_title current_page %> - <%= stylesheet_link_tag "site" %> + <%= stylesheet_link_tag "tailwind" %> - "> - <%# partial "partials/alert" %> - <%# partial "partials/alert--expanded" %> - <%= partial "partials/topbar" %> -
+ "> + + <%= partial "partials/header" %> + +
<%= yield %>
+ <%= partial "partials/footer" %> - <%= javascript_include_tag "display-topbar", :async => "async" %> - <%= javascript_include_tag "nav-toggle", :async => "async" %> - <%= javascript_include_tag "closest-polyfill", :async => "async" %> - <%= javascript_include_tag "lang-toggle", :async => "async" %> - <%= javascript_include_tag "image-switch", :async => "async" %> - <%= javascript_include_tag "play-video", :async => "async" %> - <%= javascript_include_tag "paginate-blog", :async => "async" %> + + <%= javascript_include_tag "header", :async => "async" %> + <%= javascript_include_tag "tabs", :async => "async" %> + <%= javascript_include_tag "filter-by-content", :async => "async" %> + <%= javascript_include_tag "accordion", :async => "async" %> diff --git a/source/localizable/404.html.erb b/source/localizable/404.html.erb new file mode 100644 index 00000000..487fcacc --- /dev/null +++ b/source/localizable/404.html.erb @@ -0,0 +1,26 @@ +--- +description: +--- + +
+
+
+

+ <%= t("404.title") %> +

+

+ <%= t("404.subtitle") %> +

+

+ <%= t("404.intro") %> +

+
+ +
+ <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-home-line", text: t("nav.home"), url: "#{t(:path)}/" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-mail-line", text: t("nav.contact"), url: "#{t(:path)}/contact" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-book-3-line", text: t("nav.docs.title"), url: "https://docs.decidim.org/" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-pages-line", text: t("nav.demo"), url: "https://try.decidim.org/" } %> +
+
+
diff --git a/source/localizable/about.html.erb b/source/localizable/about.html.erb new file mode 100644 index 00000000..c0dad162 --- /dev/null +++ b/source/localizable/about.html.erb @@ -0,0 +1,72 @@ +--- +nav: about +description: +--- + +
+
+
+

+ <%= t("about.title") %> +

+

+ <%= t("about.subtitle") %> +

+

+ <%= t("about.intro") %> +

+
+ +
+ <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-hand-heart-line", text: t("about.about")[0], url: "#{t(:path)}/about#support" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-mail-line", text: t("about.about")[1], url: "#{t(:path)}/contact" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-team-line", text: t("about.about")[2], url: "https://meta.decidim.org" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-newspaper-line", text: t("about.about")[3], url: "#{t(:path)}/press" } %> +
+
+
+ +
+
+
+
<%= t("about.values_title") %>
+
<%= t("about.values_intro") %>
+ <%= t("about.values_cta") %> +
+
+ <% texts = t("about.values").map {|_k,v| v} %> + <% if texts.length > 0 %> + <% chunks = texts.each_slice((texts.length / 2) + 1).to_a %> + <% chunk0 = (chunks[0] * 4) + chunks[0].take(2) %> + <% chunk1 = (chunks[1] * 4) + chunks[1].take(2) %> +
+ <% chunk0.each do |value| %> +
<%= value %>
+ <% end %> +
+
+ <% chunk1.each do |value| %> +
<%= value %>
+ <% end %> +
+ <% end %> +
+
+
+ +
+
+
+

<%= t("about.support_title") %>

+

<%= t("about.support_subtitle") %>

+

<%= t("about.support_intro") %>

+ + <%= t("about.support_at_opencollective") %> + +
+
+
+ +<%= partial "/partials/faq" %> + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/community.html.erb b/source/localizable/community.html.erb index 3d820a51..5fdf85c1 100644 --- a/source/localizable/community.html.erb +++ b/source/localizable/community.html.erb @@ -3,23 +3,48 @@ nav: community description: --- -
-

<%= t('community.title') %>

-

<%= t('community.subtitle') %>

-
-

<%= t('community.intro') %>

- <%= t('community.cta') %> -
-
+
+
+
+

+ <%= t("community.title") %> +

+

+ <%= t("community.subtitle") %> +

+
+ <%= t("community.intro") %> +
+
-<%= partial "/partials/community-process" %> +
+ <%= partial "partials/cta-bare", locals: { classes: "text-red-500", text: t("community.cta"), url: "https://meta.decidim.org/" } %> +
+
+
-
-
- <%= partial "/partials/community-item", locals: {type: "features", url: "https://meta.decidim.org/processes/roadmap"} %> - <%= partial "/partials/community-item", locals: {type: "bug", url: "https://meta.decidim.org/processes/bug-report"} %> +
+
+ <% data.community.each do |community| %> +
+ <%= icon community.icon, class: "w-8 h-8 flex-none text-red-500" %> +
<%= t("community.#{community.title}") %>
+
+ <% end %>
-
- <%= t('community.img_alt') %> +
+ +
+
+
+
+ community-picture +
+
<%= t("community.figcaption") %>
+
-
+ + +<%= partial "/partials/faq" %> + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/contact.html.erb b/source/localizable/contact.html.erb index 65e8baad..efa003c3 100644 --- a/source/localizable/contact.html.erb +++ b/source/localizable/contact.html.erb @@ -3,43 +3,53 @@ nav: contact description: --- -
-
-

<%= t('contact.title') %>

-
-

- +

+
+
+

+ <%= t("contact.title") %> +

+

+ <%= t("contact.subtitle") %> hola@decidim.org

-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
+
+
+
+ +
+
+ + + + + +
-

<%= t('contact.privacy_policy.message') %>

-
- + + <%= t('contact.privacy_policy.message') %> +
+
-
+ + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/css.html.erb b/source/localizable/css.html.erb new file mode 100644 index 00000000..af8ff923 --- /dev/null +++ b/source/localizable/css.html.erb @@ -0,0 +1,82 @@ +--- +nav: css +description: +--- + +
+ +
+
+

button colors

+
+
.button
+
.button.hollow
+
.button.white
+
.button.white.hollow
+
.button.black
+
.button.hollow.black
+
+
+ +
+

button sizes

+
+
.button
+
.button.small
+
+
+
+ +
+

headings and paragraphs

+ +
+
+

.h1

+

.h2

+

.h3

+

.h4

+
.h5
+
.h6
+
+ +
+

.par-xl

+

.par-lg

+

.par-md

+

.par-sm

+

.par-xs

+
+
+
+ +
+
+

icons size

+
+ <% [["w-4", "h-4"], ["w-6", "h-6"], ["w-12", "h-12"], ["w-20", "h-20"], ["w-24", "h-24"], ["w-48", "h-48"]].each do |size| %> +
+ <%= icon "ri-football-fill", class: size.join(" ") %> + .<%= size.join(".") %> +
+ <% end %> +
+ +
+
+

icons list

+ +
+
+ <% list_icons.each do |i| %> +
+ <%= icon i, class: "w-6 h-6" %> + <%= i %> +
+ <% end %> +
+
+
+
+ +
diff --git a/source/localizable/demo.html.erb b/source/localizable/demo.html.erb deleted file mode 100644 index 3d2013db..00000000 --- a/source/localizable/demo.html.erb +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: - en: Demo - es: Demo - ca: Demo -description: ---- -
-
-

<%= t('demo.title') %>

-

<%= t('demo.p1') %>

-

<%= t('demo.p2') %>

-

<%= t('demo.p3') %>

-

<%= t('demo.p4') %>

- -
- -
diff --git a/source/localizable/faqs.html.erb b/source/localizable/faqs.html.erb index 19bb954e..1e784fee 100644 --- a/source/localizable/faqs.html.erb +++ b/source/localizable/faqs.html.erb @@ -2,15 +2,40 @@ nav: faqs description: --- -
-

<%= t('faqs.title') %>

-
- <% (01..24).each do |n| %> -
-
<%= t("faqs.q#{"%02d" % n}.question") %>
-
<%= markdown(t("faqs.q#{"%02d" % n}.answer")) %>
-
+
+
+
+

+ <%= t("faqs.title") %> +

+

+ <%= t("faqs.subtitle") %> +

+
+
+
+ +
+
+ <% data.faqs.types.each do |type| %> + <% questions = t("faqs.questions").select {|_key, question| question[:type] == type } %> + <% if questions.length > 0 %> +
+
+
<%= t("faqs.types.#{type}") %>
+ +
+ +
+ <% questions.each do |key, item| %> + <%= partial "partials/faq-item", locals: { item: item, classes: "bg-gray-100" } %> + <% end %> +
+
<% end %> + <% end %>
-
\ No newline at end of file + + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/features.html.erb b/source/localizable/features.html.erb index 5ebfa6ae..98b7e1d4 100644 --- a/source/localizable/features.html.erb +++ b/source/localizable/features.html.erb @@ -3,4 +3,129 @@ nav: features description: --- -<%= partial "/partials/features-page" %> \ No newline at end of file +
+
+
+

+ <%= t("features.title") %> +

+

+ <%= t("features.subtitle") %> +

+
+ <%= t("features.intro") %> +
+
+ +
+ <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-book-3-line", text: t("nav.docs.title"), url: "https://docs.decidim.org" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-collage-line", text: t("nav.modules"), url: "#{t(:path)}/modules" } %> + <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-window-line", text: t("demo.title"), url: "https://try.decidim.org/" } %> +
+
+
+ +
+
+

+ <%= t("features.type1.title") %> +

+ + + +
+ <% data.features.spaces.each_with_index do |use, i| %> +
+ + <%= icon use.icon, class: "w-5 h-5 no-toggle" %> + + <%= t("features.page.#{use.id}.title") %> + + +
+
+

+ <%= t("features.page.#{use.id}.title") %> <%= t("features.page.#{use.id}.subtitle") %> +

+

+ <%= t("features.page.#{use.id}.text") %> +

+
+
+ +
+
+
+ <% end %> +
+
+
+ +
+
+

+ <%= t("features.type2.title") %> +

+ +
+ <% data.features.components.each do |use| %> +
+ <%= icon use.icon, class: "text-red-500 w-7 h-7" %> +
+ <%= I18n.t("features.page.#{use.id}.title") %> +
+

+ <%= I18n.t("features.page.#{use.id}.subtitle") %> +

+

+ <%= I18n.t("features.page.#{use.id}.text") %> +

+
+ <% end %> +
+
+
+ +
+
+

+ <%= t("features.type3.title") %> +

+

+ <%= t("features.type3.subtitle") %> +

+ + <%= t("features.type3.cta") %> + +
+
+ +<%= partial "/partials/faq" %> + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/first-steps.html.erb b/source/localizable/first-steps.html.erb new file mode 100644 index 00000000..ce677ef2 --- /dev/null +++ b/source/localizable/first-steps.html.erb @@ -0,0 +1,121 @@ +--- +nav: first-steps +description: +--- + +
+
+
+

+ <%= t("first-steps.title") %> +

+

+ <%= t("first-steps.subtitle") %> +

+
+ <%= t("first-steps.intro") %> +
+
+ +
+ <% data.first_steps.each do |item| %> +
+
+ <%= icon item.icon, class: "w-8 h-8" %> + <%= t("first-steps.#{item.pre}") %> +
+
<%= t("first-steps.#{item.title}") %>
+

<%= t("first-steps.#{item.content}") %>

+
+ <%= partial "partials/arrow-link", locals: { text: t("first-steps.#{item.link1}"), url: url(item.url1), classes: "text-gray-500" } %> +
+
+ <% end %> +
+
+
+ +
+
+
+

+ <%= t("first-steps.section2.title") %> +

+

+ <%= t("first-steps.section2.subtitle") %> +

+ <%= partial "partials/arrow-link", locals: { text: t("first-steps.section2.link"), url: "#{t(:path)}/features" } %> +
+ +
+ <% texts = t_with_default("features.page", []).to_a ||= [] %> + <% if texts.length > 0 %> + <% chunks = texts.each_slice((texts.length / 3) + 1).to_a %> + <% chunk0 = (chunks[0] * 4) + chunks[0].take(2) %> + <% chunk1 = (chunks[1] * 4) + chunks[1].take(2) %> + <% chunk2 = (chunks[2] * 4) + chunks[2].take(2) %> +
+ <% chunk0.each do |f| %> +
+ <%= icon "ri-check-line", class: "w-5 h-4" %> + <%= f[1][:title] %> +
+ <% end %> +
+
+ <% chunk1.each do |f| %> +
+ <%= icon "ri-check-line", class: "w-5 h-4" %> + <%= f[1][:title] %> +
+ <% end %> +
+
+ <% chunk2.each do |f| %> +
+ <%= icon "ri-check-line", class: "w-5 h-4" %> + <%= f[1][:title] %> +
+ <% end %> +
+ <% end %> +
+
+
+ +
+
+

<%= t("first-steps.section3.title") %>

+ <%= partial "/partials/testimonial-cards" %> +
+
+ +
+
+

+ <%= t("first-steps.section4.title") %> +

+

+ <%= t("first-steps.section4.subtitle") %> +

+

+ <%= t("first-steps.section4.intro") %> +

+ +
+
+ +<%= partial "/partials/testimonials" %> + +
+
+ <%= partial "partials/main_installations" %> +
+
+ +<%= partial "/partials/faq" %> + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/index.html.erb b/source/localizable/index.html.erb index 9d384a98..da4d41b9 100644 --- a/source/localizable/index.html.erb +++ b/source/localizable/index.html.erb @@ -2,5 +2,109 @@ description: pageClass: home --- -<%= partial "/partials/index" %> +
+
+
+
+

<%= t("index.hero.subheading") %>

+

<%= t("index.hero.intro") %>

+
+ <%= t("index.hero.cta") %> +
+
+ <% if alert_enabled? && is_homepage? %> + <%= partial "/partials/alert-banner" %> + <% end %> + +
+ +
+
+
+ <% data.index.features.each_with_index do |feat, i| %> + + <% end %> +
+
+
+ <% data.index.features.each_with_index do |feat, i| %> +
+ <% end %> +
+
    + <% data.index.features.each_with_index do |feat, i| %> + + <% end %> +
+ <%= t("index.subhero.cta") %> +
+
+
+ +
+
+

<%= t("index.subhero.intro") %>

+
+
+ +
+
+ <% data.index.cards.each do |item| %> +
+
+ <%= icon item.icon, class: "w-10 h-10 text-red-500 flex-none" %> +
<%= t("index.cards.#{item.title}") %>
+
+

<%= t("index.cards.#{item.content}") %>

+ <%= partial "partials/arrow-link", locals: { text: t("index.cards.#{item.link}"), url: url(item.url), classes: "text-red-500 mt-auto block" } %> +
+ <% end %> +
+
+ +<%= partial "/partials/testimonials" %> + +
+
+
<%= t('index.used_by.title') %>
+

<%= t('index.used_by.heading') %>

+ <%= t('index.used_by.link') %> + +
+ <% installations = data_sort_by_priority(data_select_home(data.installations)) %> +
+ <% installations.each do |id, use| %> + + <%= use.title %> + + <% end %> +
+
+
+
+ +
+
+
+
<%= t("blog.latest") %>
+ +
+
+ <% blog.articles.take(2)&.each do |article| %> +
+ <%= partial "partials/article_preview", locals: { article: article, strip: true } %> +
+ <% end %> +
+
+
+ +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/legal-notice.html.erb b/source/localizable/legal-notice.html.erb index 00007548..5e320789 100644 --- a/source/localizable/legal-notice.html.erb +++ b/source/localizable/legal-notice.html.erb @@ -2,16 +2,26 @@ nav: legal-notice description: --- -
-

<%= t('legal-notice.title') %>

-
- <% (1..9).each do |n| %> -
-

<%= t("legal-notice.section-#{n}.title") %>

-
<%= t("legal-notice.section-#{n}.paragraph", privacy_policy_url: "#{t(:path)}/privacy-policy") %>
-
+
+
+
+

+ <%= t('legal-notice.title') %> +

+
+
+
+ +
+
+ <% (1..9)&.each do |n| %> +
<%= t("legal-notice.section-#{n}.title") %>
+
<%= t("legal-notice.section-#{n}.paragraph", privacy_policy_url: "#{t(:path)}/privacy-policy") %>
<% end %>
-
+ + +<%= partial "/partials/faq" %> +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/modules.html.erb b/source/localizable/modules.html.erb index 4bf88d4e..20d44c24 100644 --- a/source/localizable/modules.html.erb +++ b/source/localizable/modules.html.erb @@ -2,15 +2,72 @@ nav: modules description: --- -
-

<%= t('nav.modules') %>

-

<%= t('modules.explanation') %>

+
+
+
+

+ <%= t("modules.title") %> +

+

+ <%= t("modules.subtitle") %> +

+
- <%= partial "partials/modules_by_type", locals: {type: "community", title: t('modules.type.community') } %> +
+ <%= partial "/partials/cta-bare", locals: { classes: "text-red-500", icon: "ri-book-3-line", text: t("nav.docs.title"), url: "https://docs.decidim.org" } %> +
+
+
- <%= partial "partials/modules_by_type", locals: {type: "auth", title: t('modules.type.auth') } %> +
+
+
+ +
+ + <%= icon "ri-search-line", class: "text-gray-500 absolute top-1/2 -translate-y-1/2 left-3 w-4 h-4" %> +
+
+
+ <% modules = data_sort_by_title(data.modules) %> + <% official = data_select_by_type(modules, "official") %> + <% community = data_select_by_type(modules, "community") %> + <% auth = data_select_by_type(modules, "auth") %> - <%= partial "partials/modules_by_type", locals: {type: "official", title: t('modules.type.official') } %> +

<%= t("modules.official") %>

+
+ <% official.each do |id, m| %> + <%= partial "/partials/module-item", locals: { item: m } %> + <% end %> +
-
\ No newline at end of file + + +

<%= t("modules.community") %>

+
+ <% community.each do |id, m| %> + <%= partial "/partials/module-item", locals: { item: m } %> + <% end %> +
+ +

<%= t("modules.auth") %>

+
+ <% auth.each do |id, m| %> + <%= partial "/partials/module-item", locals: { item: m } %> + <% end %> +
+
+
+ + +<%= partial "/partials/faq" %> + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/newsletter.html.erb b/source/localizable/newsletter.html.erb new file mode 100644 index 00000000..1ec97336 --- /dev/null +++ b/source/localizable/newsletter.html.erb @@ -0,0 +1,26 @@ +--- +nav: newsletter +description: +--- + +
+
+
+

+ <%= t("newsletter.title") %> +

+

+ <%= t("newsletter.subtitle") %> +

+
+
+
+ +
+
+

<%= t("newsletter.past") %>

+ <%= partial "/partials/newsletter-widget" %> +
+
+ +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/partners.html.erb b/source/localizable/partners.html.erb index e4ffa3a6..815e9547 100644 --- a/source/localizable/partners.html.erb +++ b/source/localizable/partners.html.erb @@ -2,17 +2,34 @@ nav: partners description: --- -
-

<%= t('nav.partners') %>

- <% @partners = data.partners %> - + + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/partnership-policy.html.erb b/source/localizable/partnership-policy.html.erb new file mode 100644 index 00000000..887ebbba --- /dev/null +++ b/source/localizable/partnership-policy.html.erb @@ -0,0 +1,41 @@ +--- +nav: partnership-policy +description: +--- + +
+
+
+

+ <%= t("partnership-policy.title") %> +

+

+ <%= t("partnership-policy.subtitle") %> +

+ <% (1..3).each do |i| %> +

+ <%= t("partnership-policy.explanation.p#{i}", main_website_url: "#{t(:path)}/partners", readme_url: "https://github.com/decidim/decidim/blob/develop/README.adoc") %> +

+ <% end %> +

<%= t("partnership-policy.how_to.title") %>

+
    +
  1. <%= t("partnership-policy.how_to.steps.step1") %>
  2. +
  3. <%= t("partnership-policy.how_to.steps.step2") %>
  4. +
  5. <%= t("partnership-policy.how_to.steps.step3") %>
  6. +
+

<%= t("partnership-policy.requirements.title") %>

+

+ <%= t("partnership-policy.requirements.p1", social_contract_url: "/contract") %> +

+
    +
  • <%= t("partnership-policy.requirements.l1") %>
  • +
  • <%= t("partnership-policy.requirements.l2") %>
  • + +

    + <%= t("partnership-policy.requirements.p2", metadecidim_partners_url: "https://meta.decidim.org/assemblies/QuieroSerSocia?locale=en") %> +

    +
+
+
+ +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/press.ca.html.erb b/source/localizable/press.ca.html.erb deleted file mode 100644 index f20ea50e..00000000 --- a/source/localizable/press.ca.html.erb +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: Centre de premsa | Decidim -description: ---- -
- -

Centre de premsa

- -
- -

Si ets periodista i estàs interessada en conèixer millor decidim.org, si us plau escriu-nos al formulari de Contacte.

-
- -

Història

-

Decidim neix a Barcelona el 2016, promogut per l'Ajuntament de Barcelona. Com a projecte de programari lliure està inspirat en el moviment 15M, que reclamava una democràcia directa. -Decidim és gestionat per l'associació del mateix nom que fa servir el codi, les seves extensions i governança.

- -

Què fem

-

Som un programari de codi lliure per a ciutats i organitzacions. Som una infraestructura participativa. Treballem per una democràcia més forta i transparent.

- -

On trobar-nos

-

Canòdrom. Parc de Recerca Creativa
-Carrer de Concepción Arenal, 165, 08027 Barcelona

- -

Xifres

-

Decidim és utilitzat en més de 100 ciutats, en 20 països del mon. Mira Ja fan servir Decidim.

- - -

Destacats de premsa

- - - -

FAQs

-

Fes clic aquí.

- -

Recursos de comunicació

- - - -
diff --git a/source/localizable/press.es.html.erb b/source/localizable/press.es.html.erb deleted file mode 100644 index 76e40157..00000000 --- a/source/localizable/press.es.html.erb +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: Centro de prensa | Decidim -description: ---- -
- -

Centro de prensa

- -
-

Si eres periodista y estás interesada en conocer mejor decidim.org, por favor escríbenos en el formulario de contacto.

-
- -

Historia

-

Decidim nació en Barcelona en 2016, promovido por el Ayuntamiento de Barcelona. Como proyecto de software libre está inspirado en el movimiento 15M, que reclamaba una democracia directa. -Decidim es gestionado por la asociación del mismo nombre que maneja el código, sus extensiones y gobernanza.

- -

Qué hacemos

-

Somos un software de código libre para ciudades y organizaciones. Somos una infraestructura participativa. Trabajamos por una democracia más fuerte y transparente.

- -

Dónde encontrarnos

-

Canòdrom. Centro de Investigación Creativa
-Carrer de Concepción Arenal, 165, 08027 Barcelona

- -

Cifras

-

Decidim se utiliza en más de 100 ciudades, en 20 países del mundo. Mira Ya usan Decidim.

- - -

Artículos de prensa destacados

- - - -

FAQs

-

Haz click aquí.

- -

Recursos de comunicación

- - - -
diff --git a/source/localizable/press.html.erb b/source/localizable/press.html.erb index 12f05530..8d5b37de 100644 --- a/source/localizable/press.html.erb +++ b/source/localizable/press.html.erb @@ -1,54 +1,81 @@ --- -title: Press | Decidim +title: Press description: --- -
- -

Press center

- -
-

If you are a journalist interested in knowing more of decidim.org please feel free to contact us at the contact form.

-
- -

History

-

Decidim was born in Barcelona in 2016, thanks to the Barcelona City Council. As a software project is deeply inspired by the 15M movement who reclaimed democracy for the people. -Decidim is run by an association, who manage the code, its extension and governance.

- -

What we do

-

We are a free-open source software aimed at cities and organizations. We are a participatory infrastructure. We work for a stronger and transparent democracy.

- -

Where to find us

-

Canòdrom. Creative research park.
Carrer de Concepción Arenal, 165, 08027 Barcelona

- -

Stats

-

Decidim is being used in more than 100 cities in 20 countries of the world. See Used by.

- -

Media highlights

- - - -

FAQs

-

Click here.

- -

Comm assets

- - - -
+ +
+
+
+

+ <%= t("press.title") %> +

+

+ <%= t("press.subtitle") %> hola@decidim.org +

+
+
+
+ +
+
+
+

<%= t("press.highlights") %>

+ +
+
+
+ +<%= partial "/partials/facts" %> + +
+
+ world map +
+
+ +
+
+

<%= t("press.kit") %>

+
+ <% data.press.kit.each_with_index do |item, i| %> +
+ <%= icon item.icon, class: "w-10 h-10 text-red-500 flex-none" %> +
+
<%= t("press.links.link#{i+1}.title") %>
+ <%= partial "partials/arrow-link", locals: { text: t("press.links.link#{i+1}.link"), url: item.url, classes: "text-red-500 mt-auto block" } %> +
+
+ <% end %> +
+
+
+ +
+
+

<%= t("press.social_media") %>

+
+ <% data.links.social_media.each do |link| %> + + <%= icon link.icon, class: "text-gray-300 w-10 h-10" %> +
<%= link.name %>
+
+ <% end %> +
+
+
+ +<%= partial "/partials/faq" %> + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/privacy-policy.html.erb b/source/localizable/privacy-policy.html.erb index 920df5f3..fba7f97d 100644 --- a/source/localizable/privacy-policy.html.erb +++ b/source/localizable/privacy-policy.html.erb @@ -2,17 +2,28 @@ nav: privacy-policy description: --- -
-

<%= t('privacy-policy.title') %>

-
- <% (1..8).each do |n| %> -
-

<%= t("privacy-policy.section-#{n}.title") %>

-
<%= t("privacy-policy.section-#{n}.paragraph", decidim_url: "#{t(:path)}/legal-notice#decidim", legal_notice_url: "#{t(:path)}/legal-notice") %>
-
+
+
+
+

+ <%= t("privacy-policy.title") %> +

+
+
+
+ +
+
+ <% (1..8)&.each do |n| %> +
+

<%= t("privacy-policy.section-#{n}.title") %>

+ <%= t("privacy-policy.section-#{n}.paragraph", decidim_url: "#{t(:path)}/legal-notice#decidim", legal_notice_url: "#{t(:path)}/legal-notice") %> +
<% end %>
-
+ +<%= partial "/partials/faq" %> +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/trademark-policy.html.erb b/source/localizable/trademark-policy.html.erb new file mode 100644 index 00000000..d895139a --- /dev/null +++ b/source/localizable/trademark-policy.html.erb @@ -0,0 +1,51 @@ +--- +nav: trademark +description: +--- + +
+
+
+

+ <%= t("trademark.title") %> +

+
+
+
+ +
+
+ + <% (1..3)&.each do |n| %> +
<%= t("trademark.p#{n}") %>
+ <% end %> + +
+
    + <% (1..3)&.each do |n| %> +
  1. <%= t("trademark.goals.l#{n}") %>
  2. + <% end %> +
+
+ + <% (1..3)&.each do |n| %> +
<%= t("trademark.examples-#{n}.title") %>
+
+
    + <% (1..3)&.each do |i| %> + <% unless t("trademark.examples-#{n}.l#{i}").start_with?("translation missing") %> +
  • <%= t("trademark.examples-#{n}.l#{i}") %>
  • + <% end %> + <% end %> +
+
+ <% end %> + +
<%= t("trademark.p4") %>
+
<%= t("trademark.p5", rails_url: "https://rubyonrails.org/trademarks", wordpress_url: "https://wordpressfoundation.org/trademark-policy/") %>
+
+
+ +<%= partial "/partials/faq" %> + +<%= partial "/partials/cta-banner" %> diff --git a/source/localizable/usedby.html.erb b/source/localizable/usedby.html.erb index 0a4fb933..e471f8b2 100644 --- a/source/localizable/usedby.html.erb +++ b/source/localizable/usedby.html.erb @@ -2,9 +2,79 @@ nav: used_by description: --- -
-

<%= t('used_by.explain') %>

- <%= partial "partials/used_by_type", locals: {type: "city", title: t('used_by.type.city') } %> - <%= partial "partials/used_by_type", locals: {type: "region", title: t('used_by.type.region') } %> - <%= partial "partials/used_by_type", locals: {type: "org", title: t('used_by.type.organizations') } %> -
\ No newline at end of file + +
+
+
+

+ <%= t("used_by.title") %> +

+

+ <%= t("used_by.subtitle") %> +

+
+ <%= t("used_by.intro") %> +
+
+
+
+ +
+
+ <%= partial "partials/main_installations" %> +
+
+ +
+
+ <%= partial "/partials/testimonial-cards" %> +
+
+ +<%= partial "/partials/facts" %> + +
+
+ <% installations = data_sort_by_priority(data.installations) %> + <% region = data_select_by_type(installations, "region") %> + <% city = data_select_by_type(installations, "city") %> + <% org = data_select_by_type(installations, "org") %> + <% filters = [installations, region, city, org] %> + +
    + <% filters.each_with_index do |filter, i| %> + + <% end %> +
+ <% filters.each_with_index do |filter, i| %> + + <% end %> + +
+ <%= t("used_by.disclaimer") %> +
+
+
+ +<%= partial "/partials/testimonials" %> + +
+
+

<%= t("used_by.join") %>

+ <%= t("used_by.cta") %> +
+
+ +<%= partial "/partials/cta-banner" %> diff --git a/source/partials/_alert-banner.html.erb b/source/partials/_alert-banner.html.erb new file mode 100644 index 00000000..7afd5533 --- /dev/null +++ b/source/partials/_alert-banner.html.erb @@ -0,0 +1,12 @@ +
+
+ + + <%= t("alert.strong") %> + — <%= t("alert.p1") %> + + + <%= t("alert.button") %> + +
+
diff --git a/source/partials/_arrow-link.html.erb b/source/partials/_arrow-link.html.erb new file mode 100644 index 00000000..938b2311 --- /dev/null +++ b/source/partials/_arrow-link.html.erb @@ -0,0 +1,4 @@ + + <%= text %> + <%= icon "ri-arrow-right-line", class: "w-4 h-4 flex-none" %> + diff --git a/source/partials/_article_preview.html.erb b/source/partials/_article_preview.html.erb index e56e8136..b998c053 100644 --- a/source/partials/_article_preview.html.erb +++ b/source/partials/_article_preview.html.erb @@ -1,8 +1,18 @@ -
-

- <%= article.title %> - -

- <%= article.summary %> - Read more +<% strip = strip ||= false %> +
+
+
+ <%= article.title %> +
+ +
+
+ <% if strip %> + <%= strip_img article.summary %> + <% else %> + <%= article.summary %> + <% end %> +
+ + <%= partial "partials/arrow-link", locals: { text: t("blog.read_more"), url: article.url } %>
diff --git a/source/partials/_community-item.html.erb b/source/partials/_community-item.html.erb deleted file mode 100644 index 0e4e29e2..00000000 --- a/source/partials/_community-item.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -
- -
-

<%= t("community.#{type}.title") %>

-

<%= t("community.#{type}.subtitle") %>

-

<%= t("community.#{type}.text") %>

- <%= t("community.#{type}.cta") %> -
-
- diff --git a/source/partials/_cta-banner.html.erb b/source/partials/_cta-banner.html.erb new file mode 100644 index 00000000..03937d54 --- /dev/null +++ b/source/partials/_cta-banner.html.erb @@ -0,0 +1,12 @@ +
+
+ + + <%= t("demo.strong") %> + — <%= t("demo.p1") %> + + + <%= t("demo.button") %> + +
+
diff --git a/source/partials/_cta-bare.html.erb b/source/partials/_cta-bare.html.erb new file mode 100644 index 00000000..cfd72b6c --- /dev/null +++ b/source/partials/_cta-bare.html.erb @@ -0,0 +1,10 @@ +<% icon_name = icon ||= nil %> + + <% if icon_name %> + <%= icon icon_name, class: "w-9 h-10" %> + <% end %> +
+ <%= text ||= '' %> + <%= icon "ri-arrow-right-line", class: "w-5 h-5" %> +
+
diff --git a/source/partials/_facts.html.erb b/source/partials/_facts.html.erb new file mode 100644 index 00000000..9195dc29 --- /dev/null +++ b/source/partials/_facts.html.erb @@ -0,0 +1,16 @@ +
+
+
<%= t("used_by.facts.title") %>
+

<%= t("used_by.facts.subtitle") %>

+
+
+ <% data.facts.each_with_index do |use, ix| %> +
+

<%= use.value %>

+
<%= t("used_by.facts.#{use.text}") %>
+
+ <% end %> +
+
+
+
diff --git a/source/partials/_faq-item.html.erb b/source/partials/_faq-item.html.erb new file mode 100644 index 00000000..858df2d5 --- /dev/null +++ b/source/partials/_faq-item.html.erb @@ -0,0 +1,14 @@ +<% if item.is_a?(Hash) %> +
+ +
<%= item[:question] %>
+
+ <%= icon "ri-add-line", class: "absolute w-5 h-5 animate-fade-in" %> + <%= icon "ri-subtract-line", class: "absolute w-5 h-5 animate-fade-out" %> +
+
+
+ <%= item && markdown(item[:answer]) %> +
+
+<% end %> diff --git a/source/partials/_faq.html.erb b/source/partials/_faq.html.erb new file mode 100644 index 00000000..d01dd966 --- /dev/null +++ b/source/partials/_faq.html.erb @@ -0,0 +1,18 @@ +
+
+
+
<%= t("faqs.title") %>
+ +
+ +
+ <% t("faqs.questions").to_a.sample(4).each do |_key, item| %> + <%= partial "partials/faq-item", locals: { item: item, classes: "bg-white" } %> + <% end %> +
+ +
+ <%= partial "partials/arrow-link", locals: { text: t("faqs.cta"), url: "#{t(:path)}/faqs", classes: "text-gray-500" } %> +
+
+
diff --git a/source/partials/_language-selector.html.erb b/source/partials/_language-selector.html.erb new file mode 100644 index 00000000..91b1f36f --- /dev/null +++ b/source/partials/_language-selector.html.erb @@ -0,0 +1,19 @@ +<% direction = direction ||= "down" %> + +<% if show_language_switcher? %> +
+ + <%= icon "ri-global-line", class: "w-5 h-5 no-toggle" %> <%= I18n.locale %> + +
    + <% data.languages.each do |lang| %> +
  • + <% link_to(current_path_for_locale(lang.path), relative: true, class: "flex items-center justify-end space-x-2 px-6 hover:bg-gray-300") do %> + <%= icon "ri-check-fill", class: "text-red-500 w-5 h-5" if I18n.locale.to_s == lang.path.to_s %> + <%= lang.name %> + <% end %> +
  • + <% end %> +
+
+<% end %> diff --git a/source/partials/_main_installations.html.erb b/source/partials/_main_installations.html.erb new file mode 100644 index 00000000..f3f933b9 --- /dev/null +++ b/source/partials/_main_installations.html.erb @@ -0,0 +1,7 @@ +
+ <% data_sort_by_priority(data_select_home(data.installations)).take(6).each_with_index do |logo, i| %> + + <%= logo[1][:name] %> + + <% end %> +
diff --git a/source/partials/_module-item.html.erb b/source/partials/_module-item.html.erb new file mode 100644 index 00000000..2b59c748 --- /dev/null +++ b/source/partials/_module-item.html.erb @@ -0,0 +1,12 @@ +
+ <% if item.image %> + + <% end %> +
+
<%= item.title %>
+

<%= item.description %>

+ <%= t("modules.more_info") %> +
+
diff --git a/source/partials/_modules_by_type.erb b/source/partials/_modules_by_type.erb deleted file mode 100644 index d4ef15dd..00000000 --- a/source/partials/_modules_by_type.erb +++ /dev/null @@ -1,27 +0,0 @@ -

<%= title %>

- - - - - - - - - - - <% modules = data_sort_by_title(data_select_by(data.modules, type)) %> - <% modules.each do |id, m| %> - - - - - - <% end %> - -
<%= t 'modules.name' %><%= t 'modules.description' %><%= t 'modules.image' %>
<%= link_to m.title, m.url, target: '_blank' %><%= m.description %> - <% if m.image %> - <% link_to m.image do %> - <% image_tag m.image, alt: m.title, class: "module-list__image", resize: "300x300" %> - <% end %> - <% end %> -
diff --git a/source/partials/_newsletter-widget.html.erb b/source/partials/_newsletter-widget.html.erb new file mode 100644 index 00000000..1af1895b --- /dev/null +++ b/source/partials/_newsletter-widget.html.erb @@ -0,0 +1,19 @@ + diff --git a/source/partials/_testimonial-cards.html.erb b/source/partials/_testimonial-cards.html.erb new file mode 100644 index 00000000..a3c78c24 --- /dev/null +++ b/source/partials/_testimonial-cards.html.erb @@ -0,0 +1,14 @@ +
+ <% data.case_studies.sample(2)&.each do |case_study| %> +
+
<%= case_study.name %>
+
<%= t("case_study.#{case_study.id}.org") %>
+

<%= t("case_study.#{case_study.id}.quote").truncate(120, separator: ' ') %>

+ <%= partial "partials/arrow-link", locals: { text: t("first-steps.section3.link"), url: case_study.url, classes: "text-red-500 mt-auto block" } %> +
+ <% end %> + +

<%= t("first-steps.section3.cta") %>

+ <%= icon "ri-arrow-right-line", class: "w-7 h-7 mt-4" %> +
+
diff --git a/source/partials/_used_by_type.html.erb b/source/partials/_used_by_type.html.erb deleted file mode 100644 index 566cb2aa..00000000 --- a/source/partials/_used_by_type.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -<% installations = data_sort_by_priority(data_select_by(data.installations, type)) %> - -

<%= title %>

-
- <% installations.each do |id, i| %> - - <%= i.title %> - - <% end %> -
\ No newline at end of file diff --git a/source/partials/alert--expanded.html.erb b/source/partials/alert--expanded.html.erb deleted file mode 100644 index afe3eb5a..00000000 --- a/source/partials/alert--expanded.html.erb +++ /dev/null @@ -1,10 +0,0 @@ -
- -
diff --git a/source/partials/alert.html.erb b/source/partials/alert.html.erb deleted file mode 100644 index 3e3256d3..00000000 --- a/source/partials/alert.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -
- -
diff --git a/source/partials/cityhalls.html.erb b/source/partials/cityhalls.html.erb deleted file mode 100644 index 756c5caa..00000000 --- a/source/partials/cityhalls.html.erb +++ /dev/null @@ -1,20 +0,0 @@ - -
-
-

<%= t('index.used_by.title') %>

-
- <% installations = data_sort_by_priority(data_select_home(data.installations)) %> -
- <% installations.each do |id, use| %> - - <%= use.title %> - - <% end %> -
-
- -
-
- diff --git a/source/partials/community-process.html.erb b/source/partials/community-process.html.erb deleted file mode 100644 index 1eb99b6b..00000000 --- a/source/partials/community-process.html.erb +++ /dev/null @@ -1,58 +0,0 @@ -
-
-

<%= t('community.timeline.title') %>

-
-
-

- Metadecidim -

-
-
- -

<%= t('community.timeline.step1.title') %>

-

<%= t('community.timeline.step1.text') %>

-
-
- -

<%= t('community.timeline.step2.title') %>

-

<%= t('community.timeline.step2.text') %>

-
-
- -

<%= t('community.timeline.step3.title') %>

-

<%= t('community.timeline.step3.text') %>

-
-
-
-
-

- Github -

-
-
- -

<%= t('community.timeline.step4.title') %>

-

<%= t('community.timeline.step4.text') %>

-
-
- -

<%= t('community.timeline.step5.title') %>

-

<%= t('community.timeline.step5.text') %>

-
-
-
-
-

- Decidim -

-
-
- -

<%= t('community.timeline.step6.title') %>

-

<%= t('community.timeline.step6.text') %>

-
-
-
-
-
-
diff --git a/source/partials/cta.html.erb b/source/partials/cta.html.erb deleted file mode 100644 index 80eb8b29..00000000 --- a/source/partials/cta.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -
- -
diff --git a/source/partials/features-page.html.erb b/source/partials/features-page.html.erb deleted file mode 100644 index ecb32752..00000000 --- a/source/partials/features-page.html.erb +++ /dev/null @@ -1,63 +0,0 @@ -<% @spaces = data.features.select {|feature| feature[:type] == "spaces"} %> -<% @components = data.features.select {|feature| feature[:type] == "components"} %> -<% @other = data.features.select {|feature| feature[:type] == "other"} %> - -
-

<%= t("features.title") %>

-
- <%= t("features.intro") %> -
-

- <%= t("features.type1.title") %> - <%= t("features.type1.subtitle") %> -

-
- <% @spaces.each do |use| %> -
- -
-

<%= I18n.t("features.page.#{use.id}.title") %>

-

<%= I18n.t("features.page.#{use.id}.subtitle") %>

-

<%= I18n.t("features.page.#{use.id}.text") %>

-
-
- <% end %> -
-

- <%= t("features.type2.title") %> - <%= t("features.type2.subtitle") %> -

-
- <% @components.each do |use| %> -
- -
-

<%= I18n.t("features.page.#{use.id}.title") %>

-

<%= I18n.t("features.page.#{use.id}.subtitle") %>

-

<%= I18n.t("features.page.#{use.id}.text") %>

-
-
- <% end %> -
-

- <%= t("features.other.subtitle") %> -

-
- <% @other.each do |use| %> -
- -
-

<%= I18n.t("features.page.#{use.id}.title") %>

-

<%= I18n.t("features.page.#{use.id}.subtitle") %>

-

<%= I18n.t("features.page.#{use.id}.text") %>

-
-
- <% end %> -
-
-

<%= t("features.cta.title") %>

- - <%= t("features.cta.button") %> - -
-
\ No newline at end of file diff --git a/source/partials/features.html.erb b/source/partials/features.html.erb deleted file mode 100644 index 206f653b..00000000 --- a/source/partials/features.html.erb +++ /dev/null @@ -1,32 +0,0 @@ -
-
-
- -
-
-

<%= t("features.list.n3.title") %>

-

<%= t("features.list.n3.content") %>

-
-
-
-
- -
-
-

<%= t("features.list.n2.title") %>

-

<%= t("features.list.n2.content") %>

-
-
-
-
- -
-
-

<%= t("features.list.n1.title") %>

-

<%= t("features.list.n1.content") %>

-
-
- -
diff --git a/source/partials/features3.html.erb b/source/partials/features3.html.erb deleted file mode 100644 index 28bde36c..00000000 --- a/source/partials/features3.html.erb +++ /dev/null @@ -1,28 +0,0 @@ -
-
-
-
- -
-
-

<%= t(:feature7Title) %>

-

<%= t(:feature7Content) %>

-
-
- -
-
-

<%= t(:feature8Title) %>

-

<%= t(:feature8Content) %>

-
-
-
-
- -
-
- -
-
-
-
diff --git a/source/partials/footer.html.erb b/source/partials/footer.html.erb index 1e6249fa..cc75a2e6 100644 --- a/source/partials/footer.html.erb +++ b/source/partials/footer.html.erb @@ -1,50 +1,186 @@ -