29 Commits

Author SHA1 Message Date
07ae40d703 SearchformVue e.selected bug fix (slim-select filters) 2025-04-28 17:38:15 +02:00
7ec7d99554 updated asset_cache_bust and dependencies 2025-04-28 17:37:15 +02:00
cf7221e4d4 changed release 2025-03-22 15:56:28 +01:00
ed8a224885 removed glitchtip test error 2025-03-21 17:27:16 +01:00
ccbf8e9cfc activated sourcemap in prod build, activated sentry sourcemap upload to glitchtip 2025-03-21 17:11:07 +01:00
e8a7c0d190 included glitchtip/sentry 2025-03-21 14:27:08 +01:00
8b2c26774f user_materio user_block cache max-age 0 2024-10-28 14:59:57 +01:00
5c40959059 fixed user logout bug 2024-10-19 22:37:12 +02:00
81ab0ccfd7 fixed user logout bug 2024-10-19 22:29:49 +02:00
b5fc279340 patched pwa for empty <p> in head 2024-10-19 15:58:59 +02:00
f9c28306e6 updated some contrib modules 2024-10-19 15:41:15 +02:00
1096ac5408 updated some contrib modules, pwa themecolor setting 2024-10-19 15:35:11 +02:00
7759cc5637 updated some contrib modules 2024-10-19 12:46:19 +02:00
8d488a4ef0 updated core 2024-10-19 12:38:07 +02:00
0054045a33 updated commerce modules (<p> in header bug fix), patched advancedqueue 2024-10-19 12:31:35 +02:00
2c6e2b6230 rolled back taxonomy_term_list track_list patch 2024-09-05 12:48:45 +02:00
85a73c742a thesaurus straw 2024-09-03 13:02:22 +02:00
0de38a8a24 improved amdin user views 2024-08-28 15:46:00 +02:00
49565d70f6 thesaurus hierarchical_select replace taxonomy_term_tree 2024-08-27 19:25:08 +02:00
702492f3b3 workflow widget fix 2024-08-27 19:12:10 +02:00
8ad1a55180 deletes migration workflow 2024-08-24 22:48:43 +02:00
3369e860d0 deleted all workflow_migration fields 2024-08-24 22:43:34 +02:00
4384f6315d removed all field permission on migration workflow 2024-08-24 22:36:01 +02:00
1838132e54 removed ultimate_cron.job.google_analytics 2024-08-24 22:21:12 +02:00
150fd4be4c cloneable entities config 2024-08-24 22:12:55 +02:00
9821e593db removed language field from workflows form #bugfix 2024-08-24 21:55:41 +02:00
07b267a964 enabled dblog 2024-08-24 21:53:24 +02:00
49cc0fb328 removed dblog from starterkit 2024-08-23 22:18:41 +02:00
b4a5480cf1 new config files right after updb D10 2024-08-22 19:37:24 +02:00
231 changed files with 13336 additions and 10728 deletions

View File

@ -5,13 +5,13 @@ module.exports = {
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'plugin:vue-a11y/base',
// 'plugin:vue-a11y/base',
'standard',
// 'plugin:prettier/recommended'
],
plugins: [
'vue',
'vue-a11y',
// 'vue-a11y',
'no-autofix'
],
rules: {

View File

@ -53,18 +53,18 @@ module.exports = merge(baseConfig, {
new BundleAnalyzerPlugin({
'analyzerMode': 'static'
}),
new WebpackShellPluginNext({
// onBuildStart:{
// scripts: ['echo "Webpack Start"'],
// blocking: true,
// parallel: false
// },
// drush is not installed in this container so we have to ssh on the php container
onAfterDone:{
scripts: ['echo "Clearing drupal cache $USER_UNAME $DRUPAL_ROOT"', 'sshpass -p "$USER_UNAME" ssh $USER_UNAME@php "cd $DRUPAL_ROOT && drush cc css-js"', 'echo "Done"'],
blocking: true,
parallel: false
}
})
// new WebpackShellPluginNext({
// // onBuildStart:{
// // scripts: ['echo "Webpack Start"'],
// // blocking: true,
// // parallel: false
// // },
// // drush is not installed in this container so we have to ssh on the php container
// onAfterDone:{
// scripts: ['echo "Clearing drupal cache $USER_UNAME $DRUPAL_ROOT"', 'sshpass -p "$USER_UNAME" ssh $USER_UNAME@php "cd $DRUPAL_ROOT && drush cc css-js"', 'echo "Done"'],
// blocking: true,
// parallel: false
// }
// })
]
})

View File

@ -6,6 +6,11 @@ const baseConfig = require('./webpack.config.base')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const TerserPlugin = require("terser-webpack-plugin");
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const { sentryWebpackPlugin } = require("@sentry/webpack-plugin");
require('dotenv').config();
// console.log(process.env);
module.exports = merge(baseConfig, {
mode: 'production',
@ -68,12 +73,25 @@ module.exports = merge(baseConfig, {
})
],
},
devtool: 'source-map', // Ensure source maps are generated
plugins: [
sentryWebpackPlugin({
org: "figures-libres",
project: "materio.com",
authToken: process.env.SENTRY_AUTH_TOKEN,
url: "https://frontlog.figli.io",
release: {
name: process.env.RELEASE
},
// urlPrefix: '~/', // Adjust based on your deployment setup
// include: './dist', // Adjust based on your output directory
// ignore: ['node_modules', 'build'],
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
}),
new BundleAnalyzerPlugin({
'analyzerMode': 'static'
}),
})
]
})

View File

@ -68,6 +68,7 @@
"drupal/advancedqueue": "^1.1",
"drupal/allowed_formats": "^3.0",
"drupal/amswap": "^3.0",
"drupal/asset_cache_bust": "^1.0",
"drupal/audiofield": "^1.10",
"drupal/auto_entitylabel": "^3.1",
"drupal/better_messages": "^2.0@alpha",
@ -113,6 +114,7 @@
"drupal/jsonapi_extras": "^3.21",
"drupal/login_history": "^2.0",
"drupal/login_tracker": "^2.0",
"drupal/logout_token": "^1.0",
"drupal/mailjet": "^4.0",
"drupal/maillog": "^1.1",
"drupal/masquerade": "^2.0",
@ -138,6 +140,7 @@
"drupal/simplenews": "^4.0",
"drupal/simplenews_mailjet_subscriptions": "^1.3",
"drupal/social_media_links": "^2.8",
"drupal/straw": "^2.0@beta",
"drupal/string_translation_ui": "^2.0",
"drupal/structure_sync": "^2.0",
"drupal/symfony_mailer": "^1",
@ -236,7 +239,8 @@
"migrate_drupal getsetting on null" : "https://www.drupal.org/files/issues/2019-02-13/migrate_drupal-getsetting_on_null.patch",
"ConfigImporter->checkOp() https://www.drupal.org/project/drupal/issues/3198715": "https://www.drupal.org/files/issues/2021-02-16/error-running-config-import-delete-on-null-3198715-3.patch",
"Entity view/form mode formatter/widget settings have no translation UI 1 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168-actions.patch",
"Entity view/form mode formatter/widget settings have no translation UI 2 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168.patch"
"Entity view/form mode formatter/widget settings have no translation UI 2 https://www.drupal.org/project/drupal/issues/2546212": "https://www.drupal.org/files/issues/2020-12-04/2546212-168.patch",
"Allow to validate Apache/Nginx configuration requirement for aggregation folder before enabling aggregation. https://www.drupal.org/project/drupal/issues/3384272":"https://www.drupal.org/files/issues/2024-08-22/4673.diff"
},
"drupal/email_registration": {
"allow email login through REST https://www.drupal.org/project/email_registration/issues/2856542": "https://www.drupal.org/files/issues/2021-06-11/2856542-13.patch"
@ -257,7 +261,8 @@
},
"drupal/pwa": {
"Manifest doesn't have a maskable icon https://www.drupal.org/project/pwa/issues/3165433": "https://www.drupal.org/files/issues/2024-03-10/manifest-doesnt-have-a-maskable-icon-error-3165433-20.patch",
"Undefined array key name https://www.drupal.org/project/pwa/issues/3422906": "https://www.drupal.org/files/issues/2024-02-21/pwa-3422906-3.patch"
"Undefined array key name https://www.drupal.org/project/pwa/issues/3422906": "https://www.drupal.org/files/issues/2024-02-21/pwa-3422906-3.patch",
"The module adds white space at the top of the olivero theme https://www.drupal.org/project/pwa/issues/3427753" : "https://www.drupal.org/files/issues/2024-04-03/pwa-pwa_extras-decode_entities.patch"
},
"drupal/toolbar_theme": {
"Automated Drupal 9 compatibility fixes https://www.drupal.org/project/toolbar_themes/issues/3149099": "https://www.drupal.org/files/issues/2020-06-06/toolbar_themes.1.x-dev.rector.patch"
@ -276,6 +281,12 @@
},
"drupal/views_ef_fieldset": {
"Exposed operators are not included in fieldsets https://www.drupal.org/project/views_ef_fieldset/issues/3173822": "https://git.drupalcode.org/project/views_ef_fieldset/-/merge_requests/1/diffs.patch"
},
"drupal/term_reference_tree": {
"Term Reference Tree: Re-implement Track List https://www.drupal.org/project/term_reference_tree/issues/3064280": "https://www.drupal.org/files/issues/2024-08-26/term_reference_tree-3064280_bring_back_tracklist-22.patch"
},
"drupal/advancedqueue": {
"Issue with configuration schema advancedqueue.backend.[id] https://www.drupal.org/project/advancedqueue/issues/3469869": "https://git.drupalcode.org/project/advancedqueue/-/commit/a8864851cdfa40c9e38a3f5f64885baf1937375e.patch"
}
},
"archived-patches": {
@ -298,9 +309,6 @@
},
"drupal/mailjet": {
"https://www.drupal.org/project/mailjet/issues/3325412":"https://www.drupal.org/files/issues/2022-12-05/mailjet-list_instead_of_listid.patch"
},
"drupal/term_reference_tree": {
"Term Reference Tree: Re-implement Track List https://www.drupal.org/project/term_reference_tree/issues/3064280": "https://www.drupal.org/files/issues/2022-02-07/3064280_bring_back_tracklist-16.patch"
}
},
"drupal-scaffold": {

1709
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -16,8 +16,6 @@ cloneable_entities:
- commerce_payment
- commerce_payment_method
- commerce_currency
- commerce_pricelist_item
- commerce_pricelist
- commerce_product_variation
- commerce_product_attribute
- commerce_product_variation_type
@ -63,7 +61,7 @@ cloneable_entities:
- language_content_settings
- configurable_language
- linkit_profile
- mailjet_event
- event_entity
- message
- message_template
- node
@ -85,6 +83,7 @@ cloneable_entities:
- solr_cache
- solr_request_handler
- simplenews_newsletter
- simplenews_subscriber_history
- simplenews_subscriber
- simplenews_mailjet_subscription
- mailer_transport
@ -116,4 +115,3 @@ cloneable_entities:
- entity_view_display
- entity_form_display
- date_format
- simplenews_subscriber_history

View File

@ -0,0 +1,7 @@
adding:
dependencies:
module:
- google_analytics
permissions:
- 'opt-in or out of google analytics tracking'
removing: { }

View File

@ -0,0 +1 @@
row_limit: 10000

View File

@ -0,0 +1,17 @@
uuid: d9ee7697-3e37-489c-a8a1-e9901529a328
langcode: en
status: true
dependencies:
module:
- dblog
title: 'Remove expired log messages and flood control events'
id: dblog_cron
weight: 0
module: dblog
callback: dblog_cron
scheduler:
id: simple
launcher:
id: serial
logger:
id: database

View File

@ -1,26 +0,0 @@
_core:
default_config_hash: Vi3b7DLLNw5X1UX9XG8mnU-ysvyNgdyvAasxV9yck3I
css:
brotli: true
combine_media: false
fix_type: true
preserve_external: false
dns_prefetch: false
path:
convert:
absolute_to_protocol_relative: true
absolute: false
force_https: false
cache_level: 2
cron_frequency: 86400
enabled: true
global_counter: 0
immutable: true
js:
brotli: true
fix_type: true
preserve_external: false
skip_enabled_preprocess_check: false
show_bypass_cookie_message: true
symlinks: false
symlinksifownermatch: false

View File

@ -6,6 +6,7 @@ dependencies:
- commerce_order.commerce_order_type.recurring
- field.field.commerce_order.recurring.billing_period
- field.field.commerce_order.recurring.billing_schedule
- field.field.commerce_order.recurring.commerce_recurring_queued
- field.field.commerce_order.recurring.field_mailjet_campaign_id
module:
- commerce_order
@ -64,6 +65,8 @@ hidden:
billing_period: true
billing_schedule: true
cart: true
commerce_recurring_queued: true
customer_comments: true
ip_address: true
mail: true
order_number: true

View File

@ -7,7 +7,6 @@ dependencies:
- field.field.node.article.field_date
- field.field.node.article.field_linked_materials
- field.field.node.article.field_memo
- field.field.node.article.field_migration
- field.field.node.article.field_showroom
- field.field.node.article.field_source
- field.field.node.article.field_tags
@ -168,12 +167,6 @@ content:
rows: 5
placeholder: ''
third_party_settings: { }
field_migration:
type: workflow_default
weight: 6
region: content
settings: { }
third_party_settings: { }
field_showroom:
type: entity_reference_autocomplete
weight: 21

View File

@ -15,7 +15,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -35,7 +34,6 @@ dependencies:
- term_reference_tree
- text
- video_embed_field
- workflow
third_party_settings:
field_group:
group_htabs:
@ -168,7 +166,6 @@ third_party_settings:
- translation
- field_memo
- field_workflow
- field_migration
- created
label: Internal
region: content
@ -278,12 +275,6 @@ content:
rows: 5
placeholder: ''
third_party_settings: { }
field_migration:
type: workflow_default
weight: 16
region: content
settings: { }
third_party_settings: { }
field_reference:
type: computed_string_widget
weight: 4
@ -306,7 +297,7 @@ content:
third_party_settings: { }
field_tags:
type: entity_reference_autocomplete
weight: 12
weight: 36
region: content
settings:
match_operator: CONTAINS
@ -316,13 +307,14 @@ content:
third_party_settings: { }
field_thesaurus:
type: term_reference_tree
weight: 11
weight: 35
region: content
settings:
start_minimized: true
start_minimized: false
leaves_only: false
select_parents: false
cascading_selection: 0
track_list: true
max_depth: 0
third_party_settings: { }
field_video:
@ -332,7 +324,7 @@ content:
settings: { }
third_party_settings: { }
field_workflow:
type: workflow_default
type: options_buttons
weight: 15
region: content
settings: { }

View File

@ -6,7 +6,6 @@ dependencies:
- field.field.taxonomy_term.company.field_attachments
- field.field.taxonomy_term.company.field_infos_from_company
- field.field.taxonomy_term.company.field_memo
- field.field.taxonomy_term.company.field_migration
- field.field.taxonomy_term.company.field_note
- field.field.taxonomy_term.company.field_public_address
- field.field.taxonomy_term.company.field_public_email
@ -140,12 +139,6 @@ content:
rows: 5
placeholder: ''
third_party_settings: { }
field_migration:
type: workflow_default
weight: 5
region: content
settings: { }
third_party_settings: { }
field_note:
type: options_select
weight: 6

View File

@ -4,7 +4,6 @@ status: true
dependencies:
config:
- field.field.taxonomy_term.showroom.field_memo
- field.field.taxonomy_term.showroom.field_migration
- field.field.taxonomy_term.showroom.field_public_address
- field.field.taxonomy_term.showroom.field_public_email
- field.field.taxonomy_term.showroom.field_public_phone
@ -122,12 +121,6 @@ content:
rows: 5
placeholder: ''
third_party_settings: { }
field_migration:
type: workflow_default
weight: 7
region: content
settings: { }
third_party_settings: { }
field_public_address:
type: address_default
weight: 5

View File

@ -0,0 +1,46 @@
uuid: bdc1dc21-a187-46a0-87f6-5ff2fe102e12
langcode: fr
status: true
dependencies:
config:
- workflow.workflow.workflow
module:
- autocomplete_deluxe
id: workflow_transition.workflow.default
targetEntityType: workflow_transition
bundle: workflow
mode: default
content:
comment:
type: string_textarea
weight: 2
region: content
settings:
rows: 5
placeholder: ''
third_party_settings: { }
timestamp:
type: datetime_timestamp
weight: 1
region: content
settings: { }
third_party_settings: { }
to_sid:
type: autocomplete_deluxe
weight: 0
region: content
settings:
match_operator: CONTAINS
autocomplete_route_name: autocomplete_deluxe.autocomplete
size: 60
selection_handler: default
match_limit: 10
min_length: 0
delimiter: ''
not_found_message_allow: false
not_found_message: "The term '@term' will be added"
new_terms: false
no_empty_message: 'No terms could be found. Please type in order to add a new term.'
third_party_settings: { }
hidden:
langcode: true

View File

@ -65,6 +65,14 @@ content:
third_party_settings: { }
weight: 2
region: content
coupons:
label: above
type: entity_reference_label
settings:
link: true
region: content
weight: 10
third_party_settings: { }
ip_address:
type: string
label: inline

View File

@ -46,6 +46,14 @@ content:
third_party_settings: { }
weight: 2
region: content
coupons:
label: above
type: entity_reference_label
settings:
link: true
region: content
weight: 7
third_party_settings: { }
mail:
type: basic_string
label: inline

View File

@ -45,6 +45,14 @@ content:
third_party_settings: { }
weight: 3
region: content
coupons:
label: above
type: entity_reference_label
settings:
link: true
region: content
weight: 9
third_party_settings: { }
order_items:
type: commerce_order_item_table
label: above

View File

@ -55,6 +55,14 @@ content:
third_party_settings: { }
weight: 5
region: content
coupons:
label: above
type: entity_reference_label
settings:
link: true
region: content
weight: 15
third_party_settings: { }
field_mailjet_campaign_id:
type: number_integer
label: above

View File

@ -6,6 +6,7 @@ dependencies:
- commerce_order.commerce_order_type.recurring
- field.field.commerce_order.recurring.billing_period
- field.field.commerce_order.recurring.billing_schedule
- field.field.commerce_order.recurring.commerce_recurring_queued
- field.field.commerce_order.recurring.field_mailjet_campaign_id
module:
- commerce_order
@ -74,6 +75,22 @@ content:
third_party_settings: { }
weight: 3
region: content
coupons:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 12
region: content
customer_comments:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 13
region: content
field_mailjet_campaign_id:
type: number_integer
label: above
@ -148,6 +165,7 @@ content:
hidden:
billing_profile: true
billing_schedule: true
commerce_recurring_queued: true
order_number: true
search_api_excerpt: true
store_id: true

View File

@ -7,6 +7,7 @@ dependencies:
- core.entity_view_mode.commerce_order.user
- field.field.commerce_order.recurring.billing_period
- field.field.commerce_order.recurring.billing_schedule
- field.field.commerce_order.recurring.commerce_recurring_queued
- field.field.commerce_order.recurring.field_mailjet_campaign_id
module:
- commerce_order
@ -74,6 +75,22 @@ content:
third_party_settings: { }
weight: 4
region: content
coupons:
type: entity_reference_label
label: above
settings:
link: true
third_party_settings: { }
weight: 13
region: content
customer_comments:
type: string
label: above
settings:
link_to_entity: false
third_party_settings: { }
weight: 14
region: content
mail:
type: email_mailto
label: inline
@ -147,6 +164,7 @@ content:
hidden:
balance: true
billing_schedule: true
commerce_recurring_queued: true
field_mailjet_campaign_id: true
ip_address: true
search_api_excerpt: true

View File

@ -8,7 +8,6 @@ dependencies:
- field.field.node.article.field_date
- field.field.node.article.field_linked_materials
- field.field.node.article.field_memo
- field.field.node.article.field_migration
- field.field.node.article.field_showroom
- field.field.node.article.field_source
- field.field.node.article.field_tags
@ -70,7 +69,6 @@ hidden:
field_date: true
field_linked_materials: true
field_memo: true
field_migration: true
field_showroom: true
field_source: true
field_tags: true

View File

@ -7,7 +7,6 @@ dependencies:
- field.field.node.article.field_date
- field.field.node.article.field_linked_materials
- field.field.node.article.field_memo
- field.field.node.article.field_migration
- field.field.node.article.field_showroom
- field.field.node.article.field_source
- field.field.node.article.field_tags
@ -32,8 +31,8 @@ content:
settings:
timezone_override: ''
format_type: medium
separator: '-'
from_to: both
separator: '-'
third_party_settings: { }
weight: 3
region: content
@ -105,7 +104,6 @@ hidden:
body: true
field_linked_materials: true
field_memo: true
field_migration: true
field_showroom: true
field_source: true
field_tags: true

View File

@ -8,7 +8,6 @@ dependencies:
- field.field.node.article.field_date
- field.field.node.article.field_linked_materials
- field.field.node.article.field_memo
- field.field.node.article.field_migration
- field.field.node.article.field_showroom
- field.field.node.article.field_source
- field.field.node.article.field_tags
@ -58,7 +57,6 @@ hidden:
field_date: true
field_linked_materials: true
field_memo: true
field_migration: true
field_showroom: true
field_source: true
field_tags: true

View File

@ -16,7 +16,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -130,13 +129,6 @@ content:
third_party_settings: { }
weight: 112
region: content
field_migration:
type: list_default
label: above
settings: { }
third_party_settings: { }
weight: 117
region: content
field_reference:
type: computed_string
label: above

View File

@ -16,7 +16,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -130,13 +129,6 @@ content:
third_party_settings: { }
weight: 112
region: content
field_migration:
type: list_default
label: above
settings: { }
third_party_settings: { }
weight: 117
region: content
field_reference:
type: computed_string
label: above

View File

@ -16,7 +16,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -85,7 +84,6 @@ hidden:
field_localisation_old: true
field_manufacturer: true
field_memo: true
field_migration: true
field_reference: true
field_samples: true
field_tags: true

View File

@ -16,7 +16,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -80,7 +79,6 @@ hidden:
field_localisation_old: true
field_manufacturer: true
field_memo: true
field_migration: true
field_reference: true
field_samples: true
field_tags: true

View File

@ -16,7 +16,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -80,7 +79,6 @@ hidden:
field_localisation_old: true
field_manufacturer: true
field_memo: true
field_migration: true
field_reference: true
field_samples: true
field_tags: true

View File

@ -15,7 +15,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -162,7 +161,6 @@ hidden:
field_index: true
field_localisation_old: true
field_memo: true
field_migration: true
field_short_description: true
field_tags: true
field_thesaurus: true

View File

@ -16,7 +16,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -135,7 +134,6 @@ hidden:
field_linked_materials: true
field_localisation_old: true
field_memo: true
field_migration: true
field_tags: true
field_thesaurus: true
field_video: true

View File

@ -16,7 +16,6 @@ dependencies:
- field.field.node.materiau.field_manufacturer
- field.field.node.materiau.field_materiau_images
- field.field.node.materiau.field_memo
- field.field.node.materiau.field_migration
- field.field.node.materiau.field_reference
- field.field.node.materiau.field_samples
- field.field.node.materiau.field_short_description
@ -75,7 +74,6 @@ hidden:
field_localisation_old: true
field_manufacturer: true
field_memo: true
field_migration: true
field_reference: true
field_samples: true
field_tags: true

View File

@ -6,7 +6,6 @@ dependencies:
- field.field.taxonomy_term.company.field_attachments
- field.field.taxonomy_term.company.field_infos_from_company
- field.field.taxonomy_term.company.field_memo
- field.field.taxonomy_term.company.field_migration
- field.field.taxonomy_term.company.field_note
- field.field.taxonomy_term.company.field_public_address
- field.field.taxonomy_term.company.field_public_email
@ -55,13 +54,6 @@ content:
third_party_settings: { }
weight: 9
region: content
field_migration:
type: list_default
label: above
settings: { }
third_party_settings: { }
weight: 12
region: content
field_note:
type: list_default
label: above
@ -115,3 +107,4 @@ content:
hidden:
langcode: true
search_api_excerpt: true
synonyms: true

View File

@ -7,7 +7,6 @@ dependencies:
- field.field.taxonomy_term.company.field_attachments
- field.field.taxonomy_term.company.field_infos_from_company
- field.field.taxonomy_term.company.field_memo
- field.field.taxonomy_term.company.field_migration
- field.field.taxonomy_term.company.field_note
- field.field.taxonomy_term.company.field_public_address
- field.field.taxonomy_term.company.field_public_email
@ -56,13 +55,6 @@ content:
third_party_settings: { }
weight: 9
region: content
field_migration:
type: list_default
label: above
settings: { }
third_party_settings: { }
weight: 12
region: content
field_note:
type: list_default
label: above
@ -116,3 +108,4 @@ content:
hidden:
langcode: true
search_api_excerpt: true
synonyms: true

View File

@ -7,7 +7,6 @@ dependencies:
- field.field.taxonomy_term.company.field_attachments
- field.field.taxonomy_term.company.field_infos_from_company
- field.field.taxonomy_term.company.field_memo
- field.field.taxonomy_term.company.field_migration
- field.field.taxonomy_term.company.field_note
- field.field.taxonomy_term.company.field_public_address
- field.field.taxonomy_term.company.field_public_email
@ -54,9 +53,9 @@ hidden:
field_attachments: true
field_infos_from_company: true
field_memo: true
field_migration: true
field_note: true
field_public_phone: true
field_workflow: true
langcode: true
search_api_excerpt: true
synonyms: true

View File

@ -4,7 +4,6 @@ status: true
dependencies:
config:
- field.field.taxonomy_term.showroom.field_memo
- field.field.taxonomy_term.showroom.field_migration
- field.field.taxonomy_term.showroom.field_public_address
- field.field.taxonomy_term.showroom.field_public_email
- field.field.taxonomy_term.showroom.field_public_phone
@ -79,7 +78,6 @@ content:
region: content
hidden:
field_memo: true
field_migration: true
field_workflow: true
langcode: true
search_api_excerpt: true

View File

@ -5,7 +5,6 @@ dependencies:
config:
- core.entity_view_mode.taxonomy_term.home
- field.field.taxonomy_term.showroom.field_memo
- field.field.taxonomy_term.showroom.field_migration
- field.field.taxonomy_term.showroom.field_public_address
- field.field.taxonomy_term.showroom.field_public_email
- field.field.taxonomy_term.showroom.field_public_phone
@ -61,7 +60,6 @@ content:
hidden:
description: true
field_memo: true
field_migration: true
field_website: true
field_workflow: true
langcode: true

View File

@ -7,12 +7,12 @@ module:
admin_theme: 0
admin_toolbar: 0
admin_toolbar_links_access_filter: 0
advagg: 0
advanced_text_formatter: 0
advancedqueue: 0
allowed_formats: 0
amswap: 0
anonymizer: 0
asset_cache_bust: 0
audiofield: 0
autocomplete_deluxe: 0
autologout: 0
@ -97,7 +97,6 @@ module:
gdpr_fields: 0
gdpr_tasks: 0
genpass: 0
google_analytics: 0
graphql: 0
help: 0
honeypot: 0
@ -125,6 +124,7 @@ module:
locale: 0
login_history: 0
login_tracker: 0
logout_token: 0
mailjet: 0
mailjet_commerce: 0
mailjet_event: 0
@ -188,6 +188,7 @@ module:
social_media_links: 0
sophron: 0
state_machine: 0
straw: 0
string_translation_ui: 0
structure_sync: 0
symfony_mailer: 0

View File

@ -1 +1,3 @@
row_limit: 10000
_core:
default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
row_limit: 1000

View File

@ -0,0 +1,23 @@
uuid: 149949ee-88a4-4807-97b8-ce17ea87fbaf
langcode: en
status: true
dependencies:
config:
- commerce_order.commerce_order_type.recurring
- field.storage.commerce_order.commerce_recurring_queued
id: commerce_order.recurring.commerce_recurring_queued
field_name: commerce_recurring_queued
entity_type: commerce_order
bundle: recurring
label: Queued
description: ''
required: false
translatable: false
default_value:
-
value: 0
default_value_callback: ''
settings:
on_label: 'Yes'
off_label: 'No'
field_type: boolean

View File

@ -1,22 +0,0 @@
uuid: f590405a-6a57-4392-82f4-ca43719edf1f
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_migration
- node.type.article
module:
- workflow
id: node.article.field_migration
field_name: field_migration
entity_type: node
bundle: article
label: Migration
description: ''
required: true
translatable: false
default_value:
- { }
default_value_callback: ''
settings: { }
field_type: workflow

View File

@ -1,22 +0,0 @@
uuid: a5c7c4a2-77fc-45dc-810c-9b24ce496ea0
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_migration
- node.type.materiau
module:
- workflow
id: node.materiau.field_migration
field_name: field_migration
entity_type: node
bundle: materiau
label: Migration
description: ''
required: true
translatable: false
default_value:
- { }
default_value_callback: ''
settings: { }
field_type: workflow

View File

@ -25,13 +25,13 @@ translatable: false
default_value: { }
default_value_callback: ''
settings:
handler: 'default:taxonomy_term'
handler: straw
handler_settings:
target_bundles:
thesaurus: thesaurus
sort:
field: name
direction: asc
auto_create: false
auto_create: 0
auto_create_bundle: ''
field_type: entity_reference

View File

@ -1,22 +0,0 @@
uuid: c892412c-c984-46cd-bf0f-8b71c799832b
langcode: en
status: true
dependencies:
config:
- field.storage.taxonomy_term.field_migration
- taxonomy.vocabulary.company
module:
- workflow
id: taxonomy_term.company.field_migration
field_name: field_migration
entity_type: taxonomy_term
bundle: company
label: Migration
description: ''
required: true
translatable: false
default_value:
- { }
default_value_callback: ''
settings: { }
field_type: workflow

View File

@ -1,22 +0,0 @@
uuid: e0715174-5390-45ad-9254-2b074f67e774
langcode: en
status: true
dependencies:
config:
- field.storage.taxonomy_term.field_migration
- taxonomy.vocabulary.showroom
module:
- workflow
id: taxonomy_term.showroom.field_migration
field_name: field_migration
entity_type: taxonomy_term
bundle: showroom
label: Migration
description: ''
required: true
translatable: false
default_value:
- { }
default_value_callback: ''
settings: { }
field_type: workflow

View File

@ -0,0 +1,18 @@
uuid: 69712edc-46a8-4945-aa76-be9d9d77d5c2
langcode: en
status: true
dependencies:
module:
- commerce_order
id: commerce_order.commerce_recurring_queued
field_name: commerce_recurring_queued
entity_type: commerce_order
type: boolean
settings: { }
module: core
locked: true
cardinality: 1
translatable: true
indexes: { }
persist_with_no_fields: false
custom_storage: false

View File

@ -1,26 +0,0 @@
uuid: 1bb279d4-be78-4279-9f6d-4fbe6dab0eb7
langcode: en
status: true
dependencies:
module:
- field_permissions
- node
- workflow
third_party_settings:
field_permissions:
permission_type: custom
id: node.field_migration
field_name: field_migration
entity_type: node
type: workflow
settings:
workflow_type: migration
allowed_values: { }
allowed_values_function: ''
module: workflow
locked: false
cardinality: 1
translatable: true
indexes: { }
persist_with_no_fields: false
custom_storage: false

View File

@ -1,22 +0,0 @@
uuid: cc79be7b-8e34-46b7-886d-8d766d6def94
langcode: en
status: true
dependencies:
module:
- taxonomy
- workflow
id: taxonomy_term.field_migration
field_name: field_migration
entity_type: taxonomy_term
type: workflow
settings:
workflow_type: migration
allowed_values: { }
allowed_values_function: ''
module: workflow
locked: false
cardinality: 1
translatable: true
indexes: { }
persist_with_no_fields: false
custom_storage: false

View File

@ -239,7 +239,7 @@ bundles:
enabled: false
rta: 'no'
rtf: 'no'
anonymizer: ''
anonymizer: email_anonymizer
notes: ''
relationship: 0
sars_filename: ''

View File

@ -1,11 +0,0 @@
uuid: 49f2849f-c35b-47df-9413-1186158a7662
langcode: fr
status: true
dependencies:
config:
- workflow.workflow.migration
id: workflow_scheduled_transition.migration
target_entity_type_id: workflow_scheduled_transition
target_bundle: migration
default_langcode: site_default
language_alterable: false

View File

@ -1,11 +0,0 @@
uuid: f6547b7a-0713-4172-9c55-4de07a856d57
langcode: en
status: true
dependencies:
config:
- workflow.workflow.migration
id: workflow_transition.migration
target_entity_type_id: workflow_transition
target_bundle: migration
default_langcode: site_default
language_alterable: false

View File

@ -2,3 +2,4 @@ description: "L'inspiration par la matière"
lang: fr
start_url: /
scope: /
dir: auto

View File

@ -1 +1 @@
label: 'Supprimer un produit'
label: 'Supprimer le produit'

View File

@ -1 +1 @@
label: 'Publier un produit'
label: 'Publier le produit'

View File

@ -1 +1 @@
label: 'Supprimer une boutique'
label: 'Supprimer la boutique'

View File

@ -1 +1 @@
label: 'Dépublier un produit'
label: 'Dépublier le produit'

View File

@ -0,0 +1 @@
label: 'Edit content'

View File

@ -0,0 +1 @@
label: 'Delete submission'

View File

@ -0,0 +1 @@
label: 'Lock submission'

View File

@ -0,0 +1 @@
label: 'Star/Flag submission'

View File

@ -0,0 +1 @@
label: 'Unlock submission'

View File

@ -0,0 +1 @@
label: 'Unstar/unflag submission'

View File

@ -1,7 +1,10 @@
label: 'Custom block library'
description: 'Find and manage custom blocks.'
display:
default:
display_title: 'Par défaut'
display_options:
title: 'Custom block library'
fields:
info:
label: 'Description du bloc'
@ -29,6 +32,9 @@ display:
exposed_sorts_label: 'Trier par'
sort_asc_label: Asc
sort_desc_label: Desc
empty:
area_text_custom:
content: 'There are no custom blocks available.'
filters:
info:
expose:
@ -41,3 +47,4 @@ display:
display_options:
menu:
title: Blocs
description: 'Create and edit block content.'

View File

@ -12,6 +12,8 @@ display:
sort_desc_label: Desc
fields:
quantity:
alter:
text: '{{ quantity }}&nbsp;x'
separator: ', '
title:
separator: ', '

View File

@ -33,6 +33,9 @@ display:
exposed_sorts_label: 'Trier par'
sort_asc_label: Asc
sort_desc_label: Desc
empty:
area_text_custom:
content: "Aucune boutique n'est disponible."
filters:
type:
expose:

View File

@ -1,3 +1,5 @@
label: "Commandes de l'utilisateur"
description: 'Affiche une liste des commandes passées pour un utilisateur.'
display:
default:
display_title: Principal
@ -46,6 +48,7 @@ display:
exception:
title: Tout
order_page:
display_title: "Commandes de l'utilisateur"
display_options:
menu:
title: Commandes

View File

@ -26,6 +26,9 @@ display:
label: 'Date de modification'
count:
label: 'Utilisé dans'
alter:
path: 'admin/content/files/usage/{{ fid }}'
format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz
pager:
options:
expose:

View File

@ -25,6 +25,8 @@ display:
empty:
area_text_custom:
content: "Aucun contenu de page d'accueil n'a été créé pour l'instant. Suivre le <a href=\"https://www.drupal.org/fr/docs/user_guide/fr/index.html\">Guide utilisateur</a> pour démarrer la construction de votre site."
title:
title: 'Welcome to [site:name]'
feed_1:
display_title: Flux
page_1:

View File

@ -1,4 +1,5 @@
label: Rediriger
description: 'Liste des redirections'
display:
default:
display_title: Principal
@ -60,5 +61,8 @@ display:
expose:
label: 'Langue initiale'
title: Rediriger
empty:
area_text_custom:
content: "Il n'y a pas encore de redirection."
page_1:
display_title: Page

View File

@ -19,8 +19,14 @@ display:
label: Rôles
created:
label: 'Membre depuis'
settings:
future_format: '@interval'
past_format: '@interval'
access:
label: 'Dernier accès'
settings:
future_format: '@interval hence'
past_format: '@interval ago'
operations:
label: Actions
mail:

View File

@ -1,3 +1,5 @@
label: 'Webform submissions'
description: 'Default webform submissions views.'
display:
default:
display_title: Principal
@ -39,12 +41,22 @@ display:
header:
result:
content: 'Affichage de @start à @end sur @total'
empty:
area_text_custom:
content: 'No submissions available.'
arguments:
in_draft:
exception:
title: Tout
embed_administer:
title: 'Webform submissions'
embed_default:
display_title: 'Embed: Default'
display_options:
display_description: 'Display submissions.'
embed_administer:
display_title: 'Embed: Administer'
display_options:
display_description: 'Administer submissions.'
fields:
webform_submission_bulk_form:
action_title: Action
@ -72,6 +84,9 @@ display:
operations:
label: Actions
filters:
in_draft:
expose:
label: 'Is draft'
sticky:
expose:
label: 'Épinglé (en haut des listes)'
@ -79,7 +94,9 @@ display:
expose:
label: Verrouillé
embed_manage:
display_title: 'Embed: Manage'
display_options:
display_description: 'Manage submissions.'
fields:
webform_submission_bulk_form:
action_title: Action
@ -111,6 +128,9 @@ display:
label: Actions
text: modifier
filters:
in_draft:
expose:
label: 'Is draft'
sticky:
expose:
label: 'Épinglé (en haut des listes)'
@ -118,7 +138,9 @@ display:
expose:
label: Verrouillé
embed_review:
display_title: 'Embed: Review'
display_options:
display_description: 'Review submissions.'
fields:
sid:
label: '#'
@ -145,6 +167,9 @@ display:
label: Actions
text: voir
filters:
in_draft:
expose:
label: 'Is draft'
sticky:
expose:
label: 'Épinglé (en haut des listes)'

View File

@ -1,10 +1,36 @@
settings:
default_form_open_message: 'This form has not yet been opened to submissions.'
default_form_close_message: 'Sorry… This form is closed to new submissions.'
default_form_exception_message: 'Unable to display this webform. Please contact the site administrator.'
default_submit_button_label: Soumettre
default_reset_button_label: Réinitialiser
default_delete_button_label: Supprimer
default_form_confidential_message: 'This form is confidential. You must <a href="[site:login-url]/logout?destination=[current-page:url:relative]">Log out</a> to submit it.'
default_form_access_denied_message: 'Please login to access this form.'
default_form_required_label: 'Indicates required field'
default_wizard_prev_button_label: '< Previous'
default_wizard_next_button_label: 'Next >'
default_wizard_start_label: Start
default_wizard_confirmation_label: Terminé
default_wizard_toggle_show_label: 'Show all'
default_wizard_toggle_hide_label: 'Hide all'
default_preview_next_button_label: Aperçu
default_preview_prev_button_label: '< Previous'
default_preview_label: Aperçu
default_preview_title: '[webform:title]: Preview'
default_draft_button_label: 'Save Draft'
default_draft_saved_message: 'Submission saved. You may return to this form later and it will restore the current values.'
default_draft_loaded_message: 'A partially-completed form was found. Please complete the remaining portions.'
default_draft_pending_single_message: 'You have a pending draft for this webform. <a href="#">Load your pending draft</a>.'
default_draft_pending_multiple_message: 'You have pending drafts for this webform. <a href="#">View your pending drafts</a>.'
default_confirmation_message: 'New submission added to [webform:title].'
default_confirmation_back_label: 'Back to form'
default_submission_label: '[webform_submission:submitted-to]: Submission #[webform_submission:serial]'
default_submission_access_denied_message: 'Please login to access this submission.'
default_submission_locked_message: 'This submission has been locked.'
default_autofill_message: 'This submission has been autofilled with your previous submission.'
default_limit_total_message: 'No more submissions are permitted.'
default_limit_user_message: 'No more submissions are permitted.'
dialog_options:
narrow:
title: Étroit
@ -13,4 +39,95 @@ settings:
wide:
title: Large
element:
empty_message: '{Empty}'
default_more_title: Plus
default_section_title_tag: h2
file:
file_private_redirect_message: 'Please login to access the uploaded file.'
mail:
default_from_name: '[site:name]'
default_body_html: |
<p>Submitted on [webform_submission:created]</p>
<p>Submitted by: [webform_submission:user]</p>
<p>Submitted values are:</p>
[webform_submission:values]
test:
types: |
checkbox:
- true
color:
- '#ffffcc'
- '#ffffcc'
- '#ccffff'
email:
- 'example@example.com'
- 'test@test.com'
- 'random@random.com'
language_select:
- en
machine_name:
- 'loremipsum'
- 'oratione'
- 'dixisset'
tel:
- '123-456-7890'
- '098-765-4321'
textarea:
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.'
- 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;'
- 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.'
text_format:
- value: '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.</p>'
- value: '<p>Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;</p>'
- value: '<p>Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.</p>'
url:
- 'http://example.com'
- 'http://test.com'
webform_email_confirm:
- 'example@example.com'
- 'test@test.com'
- 'random@random.com'
webform_email_multiple:
- 'example@example.com, test@test.com, random@random.com'
webform_time:
- '09:00'
- '17:00'
names: |
first_name:
- 'John'
- 'Paul'
- 'Ringo'
- 'George'
last_name:
- 'Lennon'
- 'McCartney'
- 'Starr'
- 'Harrison'
address:
- '10 Main Street'
- '11 Brook Alley Road. APT 1'
zip:
- '11111'
- '12345'
- '12345-6789'
postal_code:
- '11111'
- '12345'
- '12345-6789'
phone:
- '123-456-7890'
- '098-765-4321'
fax:
- '123-456-7890'
- '098-765-4321'
city:
- 'Springfield'
- 'Pleasantville'
- 'Hill Valley'
url:
- 'http://example.com'
- 'http://test.com'
default:
- 'Loremipsum'
- 'Oratione'
- 'Dixisset'

View File

@ -2,3 +2,16 @@ title: Contact
settings:
confirmation_message: 'Votre message a été envoyé.'
confirmation_url: /privacy-policy
handlers:
email_confirmation:
label: 'Email confirmation'
settings:
from_name: _default
subject: '[webform_submission:values:subject:raw]'
body: '[webform_submission:values:message:value]'
email_notification:
label: 'Email notification'
settings:
from_name: '[webform_submission:values:name:raw]'
subject: '[webform_submission:values:subject:raw]'
body: '[webform_submission:values:message:value]'

View File

@ -0,0 +1,2 @@
label: 'Country codes'
category: Geographic

View File

@ -0,0 +1,2 @@
label: 'Country names'
category: Geographic

View File

@ -1,2 +1,10 @@
label: Jours
category: 'Date et heure'
options: |
Sunday: Sunday
Monday: Monday
Tuesday: Tuesday
Wednesday: Wednesday
Thursday: Thursday
Friday: Friday
Saturday: Saturday

View File

@ -0,0 +1,2 @@
label: Education
category: Demographic

View File

@ -0,0 +1 @@
category: Demographic

View File

@ -0,0 +1,2 @@
label: Ethnicity
category: Demographic

View File

@ -1 +1,2 @@
label: Sexe
category: Demographic

View File

@ -0,0 +1,2 @@
label: Industry
category: Demographic

View File

@ -0,0 +1,7 @@
category: Likert
options: |
1: 'Much Worse'
2: 'Somewhat Worse'
3: 'About the Same'
4: 'Somewhat Better'
5: 'Much Better'

View File

@ -0,0 +1,7 @@
category: Likert
options: |
1: Strongly Disagree
2: Disagree
3: Neutral
4: Agree
5: Strongly Agree

View File

@ -0,0 +1,7 @@
category: Likert
options: |
1: Not at all Important
2: Somewhat Important
3: Neutral
4: Important
5: Very Important

View File

@ -0,0 +1,7 @@
category: Likert
options: |
1: Poor
2: Fair
3: Good
4: Very good
5: Excellent

View File

@ -0,0 +1,7 @@
category: Likert
options: |
1: Very Unsatisfied
2: Unsatisfied
3: Neutral
4: Satisfied
5: Very Satisfied

View File

@ -0,0 +1,12 @@
category: Likert
options: |
1: 1
2: 2
3: 3
4: 4
5: 5
6: 6
7: 7
8: 8
9: 9
10: 10

View File

@ -0,0 +1,8 @@
label: 'Likert: Would You'
category: Likert
options: |
1: Definitely Not
2: Probably Not
3: Not Sure
4: Probably
5: Definitely

View File

@ -0,0 +1,7 @@
label: 'Marital status'
category: Demographic
options: |
Single: Single
Married: Married
Divorced: Divorced
Widowed: Widowed

View File

@ -1 +1,15 @@
label: Months
category: 'Date et heure'
options: |
January: January
February: February
March: March
April: April
May: May
June: June
July: July
August: August
September: September
October: October
November: November
December: December

View File

@ -0,0 +1,2 @@
label: 'Phone type'
category: Demographic

View File

@ -0,0 +1 @@
category: Geographic

View File

@ -0,0 +1 @@
category: Geographic

View File

@ -1 +1,2 @@
label: Relation
category: Demographic

View File

@ -0,0 +1,5 @@
label: Sex
category: Demographic
options: |
Male: Male
Female: Female

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