onoma 0.3.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +3 -0
- data/.gitlab-ci.yml +14 -0
- data/Gemfile +2 -0
- data/Rakefile +3 -6
- data/bin/rake +29 -0
- data/config/locales/arb.yml +0 -35
- data/config/locales/cmn.yml +0 -32
- data/config/locales/deu.yml +0 -15
- data/config/locales/eng.yml +178 -84
- data/config/locales/fra.yml +273 -283
- data/config/locales/ita.yml +0 -22
- data/config/locales/jpn.yml +0 -32
- data/config/locales/por.yml +0 -21
- data/config/locales/spa.yml +0 -30
- data/db/migrate/20170904223101_add_cultivable_zone_registry.xml +4 -0
- data/db/migrate/20190718130243_remove_services_expenses.xml +5 -0
- data/db/migrate/20190801142431_remove_accounts_from_pcg82.xml +5 -0
- data/db/migrate/20190807125202_add_nature_to_product_natures.xml +326 -0
- data/db/migrate/20190823091727_fix-cubic-meter-per-hectare-symbol.xml +5 -0
- data/db/migrate/20190909150402_add_staff_supply_stock_account.xml +4 -0
- data/db/migrate/20190913102036_add_caliber_indicator.xml +4 -0
- data/db/migrate/20190917161215_add_missing_mass_area_density_units.xml +21 -0
- data/db/migrate/20190917161216_update_quintal_symbol.xml +4 -0
- data/db/migrate/20190917161217_adds_more_info_to_units.xml +133 -0
- data/db/migrate/20190918074757_add_new_accounts.xml +8 -0
- data/db/migrate/20191001122750_add_accounts_fixed_assets_related.xml +10 -0
- data/db/migrate/20191016152118_add_missing_document_templates.xml +6 -0
- data/db/migrate/20191028175001_add_short_balance_sheet.xml +4 -0
- data/db/migrate/20191029131921_add_vine_equipments.xml +117 -0
- data/db/migrate/20191112132413_remove_roller_from_product_natures.xml +5 -0
- data/db/migrate/20191113134626_add_nature_to_new_product_natures.xml +11 -0
- data/db/migrate/20191125133327_add_missing_units_and_indicators.xml +5 -0
- data/db/migrate/20200107095554_add_signed_field_to_document_nature.xml +9 -0
- data/db/migrate/20200305160358_add_varieties_for_phytosanitary.xml +11 -0
- data/db/migrate/20200421123503_add_type_to_categories_and_variants.xml +1136 -0
- data/db/migrate/20200514092205_add_liter_per_hectoliter_unit.xml +4 -0
- data/db/migrate/20200722091859_triticale_derivative_of.xml +5 -0
- data/db/migrate/20200826000010_add_area_units.xml +4 -0
- data/db/migrate/20200826000020_change_trailer_indicators.xml +5 -0
- data/db/migrate/20200826000030_add_new_production_systems.xml +6 -0
- data/db/migrate/20200826000040_add_viti_abilities.xml +6 -0
- data/db/migrate/20200826000060_create_vine_farming_activity_famillies.xml +4 -0
- data/db/migrate/20200826000070_remove_certifications_and_vitis_varieties.xml +55 -0
- data/db/migrate/20200826000080_add_new_indicators.xml +14 -0
- data/db/migrate/20200826000100_add_viti_procedure_actions.xml +19 -0
- data/db/migrate/20200826000110_add_vine_puning_systems.xml +9 -0
- data/db/migrate/20200826000120_add_vine_procedure_categories.xml +10 -0
- data/db/migrate/20200826000130_update_viti_product_nauture_variant.xml +10 -0
- data/db/reference.xml +1479 -1356
- data/lib/onoma.rb +82 -24
- data/lib/onoma/item.rb +19 -3
- data/lib/onoma/migration/actions/base.rb +1 -5
- data/lib/onoma/migration/actions/item_change.rb +1 -5
- data/lib/onoma/migration/actions/item_creation.rb +2 -6
- data/lib/onoma/migration/actions/item_merging.rb +1 -5
- data/lib/onoma/migration/actions/item_removal.rb +1 -1
- data/lib/onoma/migration/actions/nomenclature_change.rb +1 -1
- data/lib/onoma/migration/actions/nomenclature_creation.rb +1 -1
- data/lib/onoma/migration/actions/nomenclature_removal.rb +1 -5
- data/lib/onoma/migration/actions/property_creation.rb +4 -4
- data/lib/onoma/migration/base.rb +38 -0
- data/lib/onoma/migrator.rb +13 -0
- data/lib/onoma/migrator/reference.rb +71 -0
- data/lib/onoma/migrator/translation.rb +76 -0
- data/lib/onoma/models/ability.rb +4 -0
- data/lib/onoma/models/account.rb +4 -0
- data/lib/onoma/models/accounting_system.rb +12 -0
- data/lib/onoma/models/activity_family.rb +4 -0
- data/lib/onoma/models/administrative_area.rb +4 -0
- data/lib/onoma/models/administrative_area_nature.rb +4 -0
- data/lib/onoma/models/analysis_nature.rb +4 -0
- data/lib/onoma/models/animal_life_state.rb +4 -0
- data/lib/onoma/models/cation_exchange_capacity_analysis_method.rb +4 -0
- data/lib/onoma/models/chemical_classification.rb +4 -0
- data/lib/onoma/models/chemical_element.rb +4 -0
- data/lib/onoma/models/country.rb +4 -0
- data/lib/onoma/models/crop_set.rb +4 -0
- data/lib/onoma/models/currency.rb +4 -0
- data/lib/onoma/models/delivery_mode.rb +4 -0
- data/lib/onoma/models/dimension.rb +4 -0
- data/lib/onoma/models/document_category.rb +4 -0
- data/lib/onoma/models/document_nature.rb +4 -0
- data/lib/onoma/models/entity_link_nature.rb +4 -0
- data/lib/onoma/models/event_nature.rb +4 -0
- data/lib/onoma/models/fence_perimeter.rb +4 -0
- data/lib/onoma/models/figure.rb +4 -0
- data/lib/onoma/models/fiscal_position.rb +4 -0
- data/lib/onoma/models/guide_nature.rb +4 -0
- data/lib/onoma/models/identifier_nature.rb +4 -0
- data/lib/onoma/models/indicator.rb +7 -0
- data/lib/onoma/models/issue_nature.rb +4 -0
- data/lib/onoma/models/language.rb +4 -0
- data/lib/onoma/models/mammalia_birth_condition.rb +4 -0
- data/lib/onoma/models/mammalia_reproduction_state.rb +4 -0
- data/lib/onoma/models/molecule.rb +4 -0
- data/lib/onoma/models/net_service.rb +4 -0
- data/lib/onoma/models/opportunity_origin.rb +4 -0
- data/lib/onoma/models/phosphorus_analysis_method.rb +4 -0
- data/lib/onoma/models/plant_life_state.rb +4 -0
- data/lib/onoma/models/plant_reproduction_state.rb +4 -0
- data/lib/onoma/models/plants_growth_level.rb +4 -0
- data/lib/onoma/models/procedure_action.rb +4 -0
- data/lib/onoma/models/procedure_category.rb +4 -0
- data/lib/onoma/models/procedure_nature.rb +4 -0
- data/lib/onoma/models/procedure_role.rb +4 -0
- data/lib/onoma/models/product_nature.rb +4 -0
- data/lib/onoma/models/product_nature_category.rb +4 -0
- data/lib/onoma/models/product_nature_variant.rb +4 -0
- data/lib/onoma/models/production_nature.rb +4 -0
- data/lib/onoma/models/production_system.rb +4 -0
- data/lib/onoma/models/production_usage.rb +4 -0
- data/lib/onoma/models/residue_elimination_method.rb +4 -0
- data/lib/onoma/models/role.rb +4 -0
- data/lib/onoma/models/running_cost.rb +4 -0
- data/lib/onoma/models/sex.rb +4 -0
- data/lib/onoma/models/soil_cultural_state.rb +4 -0
- data/lib/onoma/models/soil_nature.rb +4 -0
- data/lib/onoma/models/spatial_reference_system.rb +4 -0
- data/lib/onoma/models/tax.rb +4 -0
- data/lib/onoma/models/tax_nature.rb +4 -0
- data/lib/onoma/models/unit.rb +4 -0
- data/lib/onoma/models/variety.rb +31 -0
- data/lib/onoma/models/working_set.rb +4 -0
- data/lib/onoma/nomenclature.rb +19 -23
- data/lib/onoma/{database.rb → nomenclature_set.rb} +25 -57
- data/lib/onoma/{property.rb → property_nature.rb} +5 -8
- data/lib/onoma/record/base.rb +15 -0
- data/lib/onoma/reflection.rb +3 -3
- data/lib/onoma/version.rb +3 -1
- data/onoma.gemspec +16 -17
- metadata +126 -30
- data/db/db.xml +0 -0
- data/lib/onoma/migration.rb +0 -122
- data/lib/onoma/migration/actions.rb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bfda150190b63544024c77c56e5869326d299fa6a9390c3c633ef089e8b37dc4
|
4
|
+
data.tar.gz: ce108c6c2a377486485dfed6d4ff6c6a0144a172deea575dc685b7f4a543e35c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a30e439a731f0d0aaa783256d2249c2ba90df7bb69859c20d2312e051345b7a122f647415cdc3f6810661443f17e91ca3ecbd5b2c71885b639b75e26598515b
|
7
|
+
data.tar.gz: e9f54de370382e5213b2801c65564afb15c7f3e77e3e92371cff0be95fe0257330dac8434fe323bc869d9cc661d60edc663bd9f40caa252e8015882a0f44820f
|
data/.gitignore
CHANGED
data/.gitlab-ci.yml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
stages:
|
2
|
+
- test
|
3
|
+
|
4
|
+
test:
|
5
|
+
image: registry.gitlab.com/ekylibre/docker-base-images/ruby2.6:1
|
6
|
+
before_script:
|
7
|
+
- gem install bundler
|
8
|
+
- bundle install --path vendor/bundle
|
9
|
+
cache:
|
10
|
+
key: bundle
|
11
|
+
paths:
|
12
|
+
- vendor/bundle
|
13
|
+
script:
|
14
|
+
- bundle exec rake test
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -59,12 +59,6 @@ namespace :db do
|
|
59
59
|
puts "Create #{file.relative_path_from(Onoma.root).to_s.yellow}"
|
60
60
|
end
|
61
61
|
|
62
|
-
task :model do
|
63
|
-
Onoma.missing_migrations.each do |migration|
|
64
|
-
Onoma::Migrator::Model.run(migration)
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
62
|
task :translation do
|
69
63
|
Onoma.missing_migrations.each do |migration|
|
70
64
|
Onoma::Migrator::Translation.run(migration)
|
@@ -80,6 +74,9 @@ namespace :db do
|
|
80
74
|
|
81
75
|
desc 'Migrates data'
|
82
76
|
task :migrate do
|
77
|
+
I18n.available_locales = %i[arb cmn deu eng fra ita jpn por spa]
|
78
|
+
|
79
|
+
Onoma::load_locales
|
83
80
|
Onoma::Migrator.migrate
|
84
81
|
end
|
85
82
|
|
data/bin/rake
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rake' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("rake", "rake")
|
data/config/locales/arb.yml
CHANGED
@@ -700,33 +700,6 @@ arb:
|
|
700
700
|
name: "الدول الحياة الحيوانية"
|
701
701
|
cation_exchange_capacity_analysis_methods:
|
702
702
|
name: "طرق تحليل قدرة تبادل الأيونات الموجبة"
|
703
|
-
certification_labels:
|
704
|
-
items:
|
705
|
-
aop: "اوب"
|
706
|
-
aor: "منطقة المسؤولية"
|
707
|
-
bio: "السيرة الذاتية"
|
708
|
-
igp: "المفتش العام للشرطة"
|
709
|
-
label_rouge: "تسمية الحمر"
|
710
|
-
name: "ملصق شهادة"
|
711
|
-
certifications:
|
712
|
-
items:
|
713
|
-
bordeaux_blanc: "بوردو بلان"
|
714
|
-
bordeaux_blanc_avec_sucres: "بوردو بلان AVEC سوكر"
|
715
|
-
bordeaux_clairet: "بوردو clairet"
|
716
|
-
bordeaux_claret: "بوردو كلاريت"
|
717
|
-
bordeaux_haut_benauge: "بوردو أوت Benauge"
|
718
|
-
bordeaux_haut_benauge_avec_sucres: "بوردو أوت Benauge سوكر AVEC"
|
719
|
-
bordeaux_rose: "بوردو ردة"
|
720
|
-
bordeaux_rouge: "بوردو شفتين"
|
721
|
-
bordeaux_superieur_blanc: "بوردو العالي بلان"
|
722
|
-
bordeaux_superieur_rouge: "بوردو العالي للشفتين"
|
723
|
-
cognac: "كونياك"
|
724
|
-
eau_de_vie_de_cognac: "الاتحاد الأوراسي دي تتنافس كونياك دي"
|
725
|
-
eau_de_vie_des_charentes: "الاتحاد الأوراسي دي تتنافس قصر شارانت"
|
726
|
-
name: "الشهادات"
|
727
|
-
property_natures:
|
728
|
-
labels: "تسميات"
|
729
|
-
land: "أرض"
|
730
703
|
chemical_classifications:
|
731
704
|
items:
|
732
705
|
dsd_corrosive: "تآكل"
|
@@ -2382,14 +2355,6 @@ arb:
|
|
2382
2355
|
cause: "سبب"
|
2383
2356
|
target: "الهدف"
|
2384
2357
|
treatments: "العلاجات"
|
2385
|
-
lands:
|
2386
|
-
items:
|
2387
|
-
blaye: "بلايي"
|
2388
|
-
bordeaux: "بوردو"
|
2389
|
-
bordeaux_haut_benauge: "بوردو هوت benauge"
|
2390
|
-
bordeaux_superieur: "بوردو SUPERIEUR"
|
2391
|
-
cognac: "كونياك"
|
2392
|
-
name: "اراضي"
|
2393
2358
|
languages:
|
2394
2359
|
items:
|
2395
2360
|
afr: "لغة أفريقانية"
|
data/config/locales/cmn.yml
CHANGED
@@ -701,30 +701,6 @@ cmn:
|
|
701
701
|
name: "动物的生活状态"
|
702
702
|
cation_exchange_capacity_analysis_methods:
|
703
703
|
name: "阳离子交换量分析方法"
|
704
|
-
certification_labels:
|
705
|
-
items:
|
706
|
-
bio: "生物"
|
707
|
-
label_rouge: "红标签"
|
708
|
-
name: "认证标签"
|
709
|
-
certifications:
|
710
|
-
items:
|
711
|
-
bordeaux_blanc: "波尔多相思"
|
712
|
-
bordeaux_blanc_avec_sucres: "波尔多相思AVEC苏克雷"
|
713
|
-
bordeaux_clairet: "波尔多clairet"
|
714
|
-
bordeaux_claret: "波尔多红葡萄酒"
|
715
|
-
bordeaux_haut_benauge: "波尔多的Haut-Benauge"
|
716
|
-
bordeaux_haut_benauge_avec_sucres: "波尔多的Haut-Benauge AVEC苏克雷"
|
717
|
-
bordeaux_rose: "波尔多玫瑰"
|
718
|
-
bordeaux_rouge: "波尔多胭脂"
|
719
|
-
bordeaux_superieur_blanc: "波尔多Superieur的相思"
|
720
|
-
bordeaux_superieur_rouge: "波尔多Superieur的胭脂"
|
721
|
-
cognac: "科涅克白兰地"
|
722
|
-
eau_de_vie_de_cognac: "香水争夺科尼亚克"
|
723
|
-
eau_de_vie_des_charentes: "香水争夺德夏朗德"
|
724
|
-
name: "认证"
|
725
|
-
property_natures:
|
726
|
-
labels: "标签"
|
727
|
-
land: "土地"
|
728
704
|
chemical_classifications:
|
729
705
|
items:
|
730
706
|
dsd_corrosive: "腐蚀性的"
|
@@ -2366,14 +2342,6 @@ cmn:
|
|
2366
2342
|
cause: "原因"
|
2367
2343
|
target: "目标"
|
2368
2344
|
treatments: "治疗"
|
2369
|
-
lands:
|
2370
|
-
items:
|
2371
|
-
blaye: "布莱"
|
2372
|
-
bordeaux: "波尔多"
|
2373
|
-
bordeaux_haut_benauge: "波尔多的Haut benauge"
|
2374
|
-
bordeaux_superieur: "波尔多Superieur的"
|
2375
|
-
cognac: "科涅克白兰地"
|
2376
|
-
name: "土地"
|
2377
2345
|
languages:
|
2378
2346
|
items:
|
2379
2347
|
afr: "南非荷兰语"
|
data/config/locales/deu.yml
CHANGED
@@ -695,17 +695,6 @@ deu:
|
|
695
695
|
name: "Das Tierleben Staaten"
|
696
696
|
cation_exchange_capacity_analysis_methods:
|
697
697
|
name: "Kationenaustauschkapazität Analysemethoden"
|
698
|
-
certification_labels:
|
699
|
-
items:
|
700
|
-
ig: "ICH G"
|
701
|
-
name: "Zulassungsetiketten"
|
702
|
-
certifications:
|
703
|
-
items:
|
704
|
-
bordeaux_claret: "Bordeaux Rotwein"
|
705
|
-
bordeaux_rose: "Bordeaux Rose"
|
706
|
-
eau_de_vie_de_cognac: "Eau de vie de Cognac"
|
707
|
-
eau_de_vie_des_charentes: "Eau de vie des Charentes"
|
708
|
-
name: "Zertifizierungen"
|
709
698
|
chemical_classifications:
|
710
699
|
items:
|
711
700
|
dsd_corrosive: "Ätzend"
|
@@ -2085,10 +2074,6 @@ deu:
|
|
2085
2074
|
cause: "Ursache"
|
2086
2075
|
target: "Ziel"
|
2087
2076
|
treatments: "Behandlungen"
|
2088
|
-
lands:
|
2089
|
-
items:
|
2090
|
-
bordeaux_haut_benauge: "Bordeaux Haut Benauge"
|
2091
|
-
bordeaux_superieur: "Bordeaux Supérieur"
|
2092
2077
|
languages:
|
2093
2078
|
items:
|
2094
2079
|
amh: "Amharisch"
|
data/config/locales/eng.yml
CHANGED
@@ -29,6 +29,7 @@ eng:
|
|
29
29
|
drive: "Drive"
|
30
30
|
earth_up: "Earth up"
|
31
31
|
enclose: "Enclose"
|
32
|
+
extract: "Extract"
|
32
33
|
feed: "Feed"
|
33
34
|
fermentize: "Fermentize"
|
34
35
|
fertilize: "Fertilize"
|
@@ -37,6 +38,7 @@ eng:
|
|
37
38
|
grind: "Grind"
|
38
39
|
grow: "Grow"
|
39
40
|
harvest: "Harvest"
|
41
|
+
heat: "Heat"
|
40
42
|
hoe: "Hoe"
|
41
43
|
implant: "Implant"
|
42
44
|
inseminate: "Inseminate"
|
@@ -66,6 +68,7 @@ eng:
|
|
66
68
|
store_liquid: "Store liquid"
|
67
69
|
sulfurize: "Sulfurize"
|
68
70
|
tamp: "Tamp"
|
71
|
+
tie: "Tie"
|
69
72
|
tow: "Tow"
|
70
73
|
treat: "Treat"
|
71
74
|
uncompact: "Uncompact"
|
@@ -118,7 +121,6 @@ eng:
|
|
118
121
|
banks_and_similar: "Banks and similar"
|
119
122
|
banks_services_expenses: "Banks services expenses"
|
120
123
|
biocorporeal_asset_depreciations: "Biocorporeal asset depreciations"
|
121
|
-
bonus_staff_expenses: "Bonus staff expenses"
|
122
124
|
brands_and_patents_assets: "Brands and patents assets"
|
123
125
|
brands_and_patents_assets_amortization: "Brands and patents assets amortization"
|
124
126
|
building_assets: "Building assets"
|
@@ -145,6 +147,7 @@ eng:
|
|
145
147
|
cooperative_participation_assets: "Cooperative participation assets"
|
146
148
|
corporeal_asset_depreciations: "Corporeal asset depreciations"
|
147
149
|
corporeal_asset_revenues: "Corporeal asset revenues"
|
150
|
+
corporeal_asset_revenues_of_livestock: "Corporeal asset revenues of livestock"
|
148
151
|
corporeal_assets: "Corporeal assets"
|
149
152
|
corporeal_depreciations_inputations_expenses: "Land parcel construction depreciations inputations expenses"
|
150
153
|
corporeal_depreciations_inputations_expenses_living_goods: "Animals depreciations inputations expenses"
|
@@ -173,7 +176,6 @@ eng:
|
|
173
176
|
employee_representative_committees: "Employee representative committees"
|
174
177
|
end_products_stock: "End products stock"
|
175
178
|
enterprise_collected_vat: "Enterprise collected VAT"
|
176
|
-
enterprise_deductible_vat: "Enterprise deductible VAT"
|
177
179
|
entity_collectable_taxes: "Entity collectable taxes"
|
178
180
|
equipment_asset_depreciations: "Equipment assets depreciations"
|
179
181
|
equipment_assets: "Equipment assets"
|
@@ -267,6 +269,7 @@ eng:
|
|
267
269
|
initial_society_capital: "Initial society capital"
|
268
270
|
installation_sustainable_plant_assets: "Installation sustainable plant assets"
|
269
271
|
insurance_expenses: "Insurance expenses"
|
272
|
+
intangible_fixed_asset_in_progress: "Intangible fixed asset in progress"
|
270
273
|
intangible_fixed_assets_revenues: "Intangible fixed assets revenues"
|
271
274
|
internal_transfers: "Internal transfers"
|
272
275
|
inventory_variations: "Inventory variations"
|
@@ -355,6 +358,7 @@ eng:
|
|
355
358
|
other_investment_subventions: "Other investment subventions"
|
356
359
|
other_investment_subventions_in_earnings_statement: "Other investment subventions in earnings statement"
|
357
360
|
other_materials_stock: "Other materials stock"
|
361
|
+
other_plants_tangible_fixed_asset_in_progress: "Other plants tangible fixed asset in progress"
|
358
362
|
other_professional_agricultural_participation_assets: "Other professional agricultural participation assets"
|
359
363
|
other_reserves: "Other reserves"
|
360
364
|
other_social_expenses: "Other social expenses"
|
@@ -395,47 +399,10 @@ eng:
|
|
395
399
|
participations: "Participations"
|
396
400
|
particular_operation_with_state: "Particular operation with state"
|
397
401
|
payment_guarantees: "Payment guarantees"
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
paid_vacation: "Paid vacation"
|
403
|
-
services_expenses: "Services expenses"
|
404
|
-
tangible_fixed_assets_revenues_without_livestock: "Tangible fixed assets revenues without livestock"
|
405
|
-
pcga:
|
406
|
-
animal_expenses: "Animal expenses"
|
407
|
-
animal_rent_expenses: "Animal rent expenses"
|
408
|
-
animals_making_expenses: "Animals making expenses"
|
409
|
-
associates_salary: "Associates salary"
|
410
|
-
corporeal_depreciations_inputations_expenses: "Corporeal depreciations inputations expenses"
|
411
|
-
corporeal_depreciations_inputations_expenses_living_goods: "Corporeal depreciations inputations expenses living goods"
|
412
|
-
electricity_expenses: "Électricity expenses"
|
413
|
-
insurance_compensations: "Insurance compensations"
|
414
|
-
little_office_equipment_expenses: "Little office equipment expenses"
|
415
|
-
maintenances_consumables_stocks_variation: "Maintenances consumables stocks variation"
|
416
|
-
making_services_expenses: "Making services expenses"
|
417
|
-
managing_associates_salary: "Managing associates salary"
|
418
|
-
materials_stocks_variation: "Materials stocks variation"
|
419
|
-
office_supplies_stock: "Office supplies stock"
|
420
|
-
office_supply_matter_stocks_variation: "Office supply matter stocks variation"
|
421
|
-
other_consumable_matter_stocks_variation: "Other consumable matter stocks variation"
|
422
|
-
other_rent_expenses: "Other rent expenses"
|
423
|
-
packaging_stock: "Packaging stock"
|
424
|
-
packaging_stocks_variation: "Packaging stocks variation"
|
425
|
-
paid_vacation: "Paid vacation"
|
426
|
-
permanent_staff_salary: "Permanent staff salary"
|
427
|
-
products_specials_taxes_for_animal_products: "Products specials taxes for animal products"
|
428
|
-
products_specials_taxes_for_animals: "Products specials taxes for animals"
|
429
|
-
products_specials_taxes_for_plant_products: "Products specials taxes for plant products"
|
430
|
-
products_specials_taxes_for_processed_products: "Products specials taxes for processed products"
|
431
|
-
raw_material_stocks_variation: "Raw material stocks variation"
|
432
|
-
staff_supply_expenses: "Staff supply expenses"
|
433
|
-
staff_supply_stocks_variation: "Staff supply stocks variation"
|
434
|
-
tangible_fixed_assets_revenues_livestock: "Tangible fixed assets revenues livestock"
|
435
|
-
tangible_fixed_assets_revenues_without_livestock: "Tangible fixed assets revenues without livestock"
|
436
|
-
temporary_staff_salary: "Temporary staff salary"
|
437
|
-
workshop_and_warehouse_supplies_expenses: "Workshop and warehouse supplies expenses"
|
438
|
-
workshop_and_warehouse_supplies_stocks_variation: "Workshop and warehouse supplies stocks variation"
|
402
|
+
payments_on_account_on_intangible_fixed_assets: "Payments on account on intangible fixed assets"
|
403
|
+
payments_on_account_on_orders_for_tangible_fixed_assets: "Payments on account on orders for tangible fixed assets"
|
404
|
+
payments_on_account_on_orders_for_tangible_fixed_assets_except_for_livestock: "Payments on account on orders for tangible fixed assets except for livestock"
|
405
|
+
payments_on_account_on_orders_for_tangible_fixed_assets_for_livestock: "Payments on account on orders for tangible fixed assets for livestock"
|
439
406
|
pending_deposit_payments: "Pending deposit payments"
|
440
407
|
plant_derivative_stock: "Plant derivative stock"
|
441
408
|
plant_derivatives_revenues: "Plant derivatives revenues"
|
@@ -515,6 +482,7 @@ eng:
|
|
515
482
|
staff_remuneration: "Staff remuneration"
|
516
483
|
staff_salary: "Staff salary"
|
517
484
|
staff_submissions: "Staff submissions"
|
485
|
+
staff_supply_stock: "Staff supply stock"
|
518
486
|
state_and_other_public_entities: "State and other public entities"
|
519
487
|
state_emission_quota_to_restitute: "State emission quota to restitute"
|
520
488
|
stocks: "Stocks"
|
@@ -590,6 +558,7 @@ eng:
|
|
590
558
|
processing: "Processing"
|
591
559
|
service_delivering: "Service delivering"
|
592
560
|
tool_maintaining: "Tool maintaining"
|
561
|
+
vine_farming: "Vine farming"
|
593
562
|
wine_making: "Wine making"
|
594
563
|
name: "Activity families"
|
595
564
|
property_natures:
|
@@ -768,35 +737,6 @@ eng:
|
|
768
737
|
cobaltihexamine: "Cobaltihexamine"
|
769
738
|
metson: "Metson"
|
770
739
|
name: "Cation exchange capacity analysis methods"
|
771
|
-
certification_labels:
|
772
|
-
items:
|
773
|
-
aoc: "AOC"
|
774
|
-
aop: "AOP"
|
775
|
-
aor: "AOR"
|
776
|
-
bio: "Bio"
|
777
|
-
ig: "IG"
|
778
|
-
igp: "IGP"
|
779
|
-
label_rouge: "Label Rouge"
|
780
|
-
name: "Certification labels"
|
781
|
-
certifications:
|
782
|
-
items:
|
783
|
-
bordeaux_blanc: "Bordeaux blanc"
|
784
|
-
bordeaux_blanc_avec_sucres: "Bordeaux blanc avec sucres"
|
785
|
-
bordeaux_clairet: "Bordeaux clairet"
|
786
|
-
bordeaux_claret: "Bordeaux claret"
|
787
|
-
bordeaux_haut_benauge: "Bordeaux Haut-Benauge"
|
788
|
-
bordeaux_haut_benauge_avec_sucres: "Bordeaux Haut-Benauge avec sucres"
|
789
|
-
bordeaux_rose: "Bordeaux rose"
|
790
|
-
bordeaux_rouge: "Bordeaux rouge"
|
791
|
-
bordeaux_superieur_blanc: "Bordeaux supérieur blanc"
|
792
|
-
bordeaux_superieur_rouge: "Bordeaux supérieur rouge"
|
793
|
-
cognac: "Cognac"
|
794
|
-
eau_de_vie_de_cognac: "Eau de vie de cognac"
|
795
|
-
eau_de_vie_des_charentes: "Eau de vie des charentes"
|
796
|
-
name: "Certifications"
|
797
|
-
property_natures:
|
798
|
-
labels: "Labels"
|
799
|
-
land: "Land"
|
800
740
|
chemical_classifications:
|
801
741
|
items:
|
802
742
|
dsd_corrosive: "Corrosive (EU)"
|
@@ -1968,6 +1908,7 @@ eng:
|
|
1968
1908
|
animal_list: "Animal list"
|
1969
1909
|
animal_sheet: "Animal sheet"
|
1970
1910
|
balance_sheet: "Balance sheet"
|
1911
|
+
by_account_fixed_asset_registry: "Fixed asset registry by account"
|
1971
1912
|
deposit_list: "Deposit list"
|
1972
1913
|
entity_sheet: "Entity sheet"
|
1973
1914
|
equipment_certification: "Equipment certification"
|
@@ -1978,6 +1919,7 @@ eng:
|
|
1978
1919
|
fr_pcg82_profit_and_loss_statement: "French classical profit and loss statement"
|
1979
1920
|
fr_pcga_balance_sheet: "French agricultural balance sheet"
|
1980
1921
|
fr_pcga_profit_and_loss_statement: "French agricultural profit and loss statement"
|
1922
|
+
gain_and_loss_fixed_asset_registry: "Gain and loss fixed asset registry"
|
1981
1923
|
general_journal: "General journal"
|
1982
1924
|
general_ledger: "General ledger"
|
1983
1925
|
income_statement: "Profit and loss statement"
|
@@ -1994,6 +1936,7 @@ eng:
|
|
1994
1936
|
outgoing_deliveries_journal: "Outgoing deliveries journal"
|
1995
1937
|
outgoing_delivery_docket: "Outgoing delivery docket"
|
1996
1938
|
outgoing_payment_list: "Outgoing payment list"
|
1939
|
+
pending_vat_register: "Pending VAT register"
|
1997
1940
|
phytosanitary_certification: "Phytosanitary certification"
|
1998
1941
|
phytosanitary_register: "Phytosanitary register"
|
1999
1942
|
prescription: "Prescription"
|
@@ -2008,6 +1951,7 @@ eng:
|
|
2008
1951
|
sales_order: "Sales order"
|
2009
1952
|
security_data_sheet: "Security data sheet"
|
2010
1953
|
shipping_note: "Shipping note"
|
1954
|
+
short_balance_sheet: "Short balance sheet"
|
2011
1955
|
stocks: "Stocks"
|
2012
1956
|
tax_assessment: "Tax assessment"
|
2013
1957
|
trial_balance: "Trial balance"
|
@@ -2182,13 +2126,16 @@ eng:
|
|
2182
2126
|
birth_farm_number: "Birth farm number"
|
2183
2127
|
boron_concentration: "Boron concentration"
|
2184
2128
|
calcium_concentration: "Calcium concentration"
|
2129
|
+
caliber: "Caliber"
|
2185
2130
|
calving_ease_index: "Calving ease index"
|
2186
2131
|
cation_exchange_capacity: "Cation exchange capacity"
|
2187
2132
|
cation_exchange_capacity_analysis_method: "Cation exchange capacity analysis method"
|
2188
2133
|
cells_concentration: "Cells concentration"
|
2189
2134
|
cells_mass_concentration: "Cells mass concentration"
|
2190
2135
|
certification: "Certification"
|
2136
|
+
certification_label: "Certification label"
|
2191
2137
|
clostridial_spores_concentration: "Clostridial spores concentration"
|
2138
|
+
complanted_vine_stock: "Complanted vine stock"
|
2192
2139
|
consumption_period: "Consumption period"
|
2193
2140
|
copper_concentration: "Copper concentration"
|
2194
2141
|
country_code: "Country code"
|
@@ -2197,6 +2144,7 @@ eng:
|
|
2197
2144
|
daily_average_working_time: "Daily average working time"
|
2198
2145
|
daily_nitrogen_production: "Daily nitrogen production"
|
2199
2146
|
daily_pest_count: "Pest count (last night)"
|
2147
|
+
dead_vine_stock: "Dead vine stock"
|
2200
2148
|
diameter: "Diameter"
|
2201
2149
|
dry_matter_rate: "Dry matter rate"
|
2202
2150
|
easement_area: "Easement area"
|
@@ -2237,6 +2185,7 @@ eng:
|
|
2237
2185
|
items_count: "Items count"
|
2238
2186
|
lactating: "Lactating"
|
2239
2187
|
last_birth_children_count: "Last birth children count"
|
2188
|
+
layered_vine_stock: "Layered vine stock"
|
2240
2189
|
length: "Length"
|
2241
2190
|
lifespan: "Lifespan"
|
2242
2191
|
lipolysis: "Lipolysis"
|
@@ -2272,6 +2221,7 @@ eng:
|
|
2272
2221
|
minimal_solar_irradiance: "Minimal solar irradiance"
|
2273
2222
|
minimal_temperature: "Minimal temperature"
|
2274
2223
|
minimal_wind_speed: "Minimal wind speed"
|
2224
|
+
missing_vine_stock: "Missing vine stock"
|
2275
2225
|
molybdenum_concentration: "Molybdenum concentration"
|
2276
2226
|
mother_country_code: "Mother country code"
|
2277
2227
|
mother_identification_number: "Mother identification number"
|
@@ -2311,6 +2261,7 @@ eng:
|
|
2311
2261
|
relative_humidity: "Relative humidity"
|
2312
2262
|
reproductor: "Reproductor"
|
2313
2263
|
residue_elimination_method: "Residue elimination method"
|
2264
|
+
rootstock_variety: "Rootstock variety"
|
2314
2265
|
rows_count: "Rows count"
|
2315
2266
|
rows_interval: "Rows interval"
|
2316
2267
|
rows_orientation: "Rows orientation"
|
@@ -2318,6 +2269,7 @@ eng:
|
|
2318
2269
|
seedling_count: "Seedling count"
|
2319
2270
|
sex: "Sex"
|
2320
2271
|
shape: "Shape"
|
2272
|
+
sodium_concentration: "Sodium concentration"
|
2321
2273
|
soil_cultural_state: "Soil cultural state"
|
2322
2274
|
soil_depth: "Soil depth"
|
2323
2275
|
soil_nature: "Soil nature"
|
@@ -2342,6 +2294,8 @@ eng:
|
|
2342
2294
|
untreated_zone_length: "Untreated zone length"
|
2343
2295
|
urea_concentration: "Urea concentration"
|
2344
2296
|
usage_duration: "Usage duration"
|
2297
|
+
vine_pruning_system: "Vine pruning system"
|
2298
|
+
vine_stock_bud_charge: "Vine stock bud charge"
|
2345
2299
|
volume_area_density: "Volume area density"
|
2346
2300
|
volume_density: "Volume density"
|
2347
2301
|
volume_flow: "Volume flow"
|
@@ -2353,7 +2307,6 @@ eng:
|
|
2353
2307
|
wind_direction: "Wind direction"
|
2354
2308
|
wind_speed: "Wind speed"
|
2355
2309
|
witness: "Witness"
|
2356
|
-
woodstock_variety: "Woodstock variety"
|
2357
2310
|
working_lifespan: "Working lifespan"
|
2358
2311
|
zinc_concentration: "Zinc concentration"
|
2359
2312
|
name: "Indicators"
|
@@ -2480,7 +2433,6 @@ eng:
|
|
2480
2433
|
wheat_helminthosporiosis: "Wheat helminthosporiosis"
|
2481
2434
|
wheat_powdery_mildew: "Wheat powdery mildew"
|
2482
2435
|
wild_animal_ravage: "Wild animal ravage"
|
2483
|
-
witness: "Witness"
|
2484
2436
|
wood_leopard_moth: "Wood leopard moth"
|
2485
2437
|
yellow_acarine: "Yellow acarine"
|
2486
2438
|
yellow_rust: "Yellow rust"
|
@@ -2489,14 +2441,6 @@ eng:
|
|
2489
2441
|
cause: "Cause"
|
2490
2442
|
target: "Target"
|
2491
2443
|
treatments: "Treatments"
|
2492
|
-
lands:
|
2493
|
-
items:
|
2494
|
-
blaye: "Blaye"
|
2495
|
-
bordeaux: "Bordeaux"
|
2496
|
-
bordeaux_haut_benauge: "Bordeaux haut benauge"
|
2497
|
-
bordeaux_superieur: "Bordeaux superieur"
|
2498
|
-
cognac: "Cognac"
|
2499
|
-
name: "Lands"
|
2500
2444
|
languages:
|
2501
2445
|
items:
|
2502
2446
|
afr: "Afrikaans"
|
@@ -2728,6 +2672,7 @@ eng:
|
|
2728
2672
|
bactericide: "Bactericide"
|
2729
2673
|
biostimulation: "Biostimulation"
|
2730
2674
|
bird_repellent: "Bird repellent"
|
2675
|
+
braiding: "Braiding"
|
2731
2676
|
bridge_construction: "Bridge construction"
|
2732
2677
|
building_construction: "Building construction"
|
2733
2678
|
building_extension_construction: "Building extension construction"
|
@@ -2746,6 +2691,7 @@ eng:
|
|
2746
2691
|
detasseling: "Detasseling"
|
2747
2692
|
disease_protection: "Disease protection"
|
2748
2693
|
disease_treatment: "Disease treatment"
|
2694
|
+
doubling: "Doubling"
|
2749
2695
|
drainage_improvement: "Drainage improvement"
|
2750
2696
|
drainage_system_installation: "Drainage system installation"
|
2751
2697
|
draining: "Draining"
|
@@ -2758,7 +2704,10 @@ eng:
|
|
2758
2704
|
fermentation: "Fermentation"
|
2759
2705
|
fertilization: "Fertilization"
|
2760
2706
|
field_plant_sorting: "Field plant sorting"
|
2707
|
+
finishing_rerun: "Finishing rerun"
|
2761
2708
|
fireproofing: "Fireproofing"
|
2709
|
+
first_lifting: "First lifting"
|
2710
|
+
folding: "Folding"
|
2762
2711
|
food_preparation: "Food preparation"
|
2763
2712
|
forest_grinding: "Forest grinding"
|
2764
2713
|
frost_protection: "Frost protection"
|
@@ -2771,10 +2720,13 @@ eng:
|
|
2771
2720
|
greasing: "Greasing"
|
2772
2721
|
greenhouse_assembling: "Greenhouse assembling"
|
2773
2722
|
growth_regulator: "Growth regulator"
|
2723
|
+
hail_protection: "Hail protection"
|
2774
2724
|
handling: "Handling"
|
2775
2725
|
hardpan_destruction: "Hardpan destruction"
|
2776
2726
|
harvest: "Harvest"
|
2727
|
+
heading: "Heading"
|
2777
2728
|
herbicide: "Herbicide"
|
2729
|
+
herbicide_protection: "Herbicide protection"
|
2778
2730
|
hilling: "Hilling"
|
2779
2731
|
hilling_for_sifting: "Hilling for sifting"
|
2780
2732
|
hoof_trimming: "Hoof trimming"
|
@@ -2827,7 +2779,9 @@ eng:
|
|
2827
2779
|
rain_protection: "Rain protection"
|
2828
2780
|
residue_destruction: "Residue destruction"
|
2829
2781
|
ridging: "Ridging"
|
2782
|
+
rodent_protection: "Rodent protection"
|
2830
2783
|
rodenticide: "Rodenticide"
|
2784
|
+
second_lifting: "Second lifting"
|
2831
2785
|
seedbed_preparing: "Seedbed preparing"
|
2832
2786
|
semen_collecting: "Semen collecting"
|
2833
2787
|
semen_freezing: "Semen freezing"
|
@@ -2847,12 +2801,16 @@ eng:
|
|
2847
2801
|
talpicide: "Talpicide"
|
2848
2802
|
temperature_improvement: "Temperature improvement"
|
2849
2803
|
topkilling: "Topkilling"
|
2804
|
+
topping: "Topping"
|
2850
2805
|
tractor_troubleshooting: "Tractor troubleshooting"
|
2851
2806
|
transportation: "Transportation"
|
2807
|
+
trimming: "Trimming"
|
2852
2808
|
troubleshooting: "Troubleshooting"
|
2809
|
+
trunking: "Trunking"
|
2853
2810
|
tunnel_installation: "Tunnel installation"
|
2854
2811
|
tunnel_removal: "Tunnel removal"
|
2855
2812
|
tunnel_removing: "Tunnel removing"
|
2813
|
+
tying: "Tying"
|
2856
2814
|
upgrading_maintenance: "Upgrading maintenance"
|
2857
2815
|
virucide: "Virucide"
|
2858
2816
|
water_flow_improvement: "Water flow improvement"
|
@@ -2894,6 +2852,13 @@ eng:
|
|
2894
2852
|
soil_working: "Soil preparation"
|
2895
2853
|
textile_transformation: "Textile transformation"
|
2896
2854
|
troubleshooting: "Troubleshooting"
|
2855
|
+
vine_fertilizing: "Vine fertilizing"
|
2856
|
+
vine_land_maintenance: "Vine land maintenance"
|
2857
|
+
vine_planting: "Vine planting"
|
2858
|
+
vine_protection: "Vine protection"
|
2859
|
+
vine_soil_working_and_maintenance: "Vine soil working and maintenance"
|
2860
|
+
vineyard_maintenance: "Vineyard maintenance"
|
2861
|
+
vintage: "Vintage"
|
2897
2862
|
viticulture_transformation: "Viticulture transformation"
|
2898
2863
|
washing_packaging_transformation: "Washing packaging transformation"
|
2899
2864
|
name: "Procedure categories"
|
@@ -3269,12 +3234,21 @@ eng:
|
|
3269
3234
|
animals_making_service: "Animals making service"
|
3270
3235
|
annual_fallow_crop: "Annual fallow crop"
|
3271
3236
|
anti_slug: "Anti slug"
|
3237
|
+
antidrift_panel_lv: "Antidrift panel LV"
|
3238
|
+
antidrift_panel_tv: "Antidrift panel TV"
|
3272
3239
|
apple_crop: "Apple crop"
|
3240
|
+
arboreal_tractor: "Arboreal tractor"
|
3241
|
+
arboricultural_cultivator: "Arboricultural cultivator"
|
3242
|
+
arboricultural_mounted_jet_sprayer: "Arboricultural mounted jet sprayer"
|
3243
|
+
arboricultural_platform: "Arboricultural platform"
|
3244
|
+
arboricultural_pneumatic_sprayer: "Arboricultural pneumatic sprayer"
|
3245
|
+
arboricultural_weeding_boom: "Arboricultural weeding boom"
|
3273
3246
|
arezzo_wheat_crop: "Arezzo wheat crop"
|
3274
3247
|
ascott_wheat_crop: "Ascott wheat crop"
|
3275
3248
|
ascott_wheat_seed_25: "Ascott wheat seed 25"
|
3276
3249
|
asparagus_crop: "Asparagus crop"
|
3277
3250
|
associate_social_contribution: "Associate social contribution"
|
3251
|
+
back_arboricultural_hay_rake: "Back arboricultural hay rake"
|
3278
3252
|
bale_collector: "Bale collector"
|
3279
3253
|
baler: "Baler"
|
3280
3254
|
bank_service: "Bank service"
|
@@ -3293,6 +3267,7 @@ eng:
|
|
3293
3267
|
big_sticker: "Big sticker"
|
3294
3268
|
blackcurrant_crop: "Blackcurrant crop"
|
3295
3269
|
blackcurrant_seedling: "Blackcurrant seedling"
|
3270
|
+
blade_intercep_vtv: "Blade intercep VTV"
|
3296
3271
|
bolt: "Bolt"
|
3297
3272
|
bordelaise_100cl_bottle: "Bordelaise 100cl bottle"
|
3298
3273
|
bordelaise_75cl_bottle: "Bordelaise 75cl bottle"
|
@@ -3309,6 +3284,8 @@ eng:
|
|
3309
3284
|
bottle_75cl_wine: "Bottle 75cl wine"
|
3310
3285
|
bottle_900cl_wine: "Bottle 900cl wine"
|
3311
3286
|
brassicaceae_fungicide: "Brassicaceae fungicide"
|
3287
|
+
brush_intercep_tv: "Brush intercep TV"
|
3288
|
+
brush_intercep_vtv: "Brush intercep VTV"
|
3312
3289
|
buckwheat_crop: "Buckwheat crop"
|
3313
3290
|
buckwheat_grain: "Buckwheat grain"
|
3314
3291
|
buckwheat_seed: "Buckwheat seed"
|
@@ -3344,6 +3321,12 @@ eng:
|
|
3344
3321
|
car_moving_travel: "Car moving travel"
|
3345
3322
|
card: "Card"
|
3346
3323
|
carriage: "Carriage"
|
3324
|
+
carrier_confined_sprayer_lv: "Carrier confined sprayer LV"
|
3325
|
+
carrier_manure_spreader: "Carrier manure spreader"
|
3326
|
+
carrier_pre_pruner_lv: "Carrier pre pruner LV"
|
3327
|
+
carrier_sprayer_lv: "Carrier sprayer LV"
|
3328
|
+
carrier_topper_trimmer_lv: "Carrier topper trimmer LV"
|
3329
|
+
carrier_topper_trimmer_tv: "Carrier topper trimmer TV"
|
3347
3330
|
carrot: "Carrot"
|
3348
3331
|
carrot_crop: "Carrot crop"
|
3349
3332
|
carrot_seed: "Carrot seed"
|
@@ -3359,11 +3342,13 @@ eng:
|
|
3359
3342
|
chandler_walnut: "Chandler walnut"
|
3360
3343
|
chard: "Chard"
|
3361
3344
|
chemical_fertilizer_division: "Chemical fertilizer division"
|
3345
|
+
chemical_trunck_cleaner_lv: "Chemical trunck cleaner LV"
|
3362
3346
|
cherry_laurel_crop: "Cherry laurel crop"
|
3363
3347
|
chick_hen_band: "Chick hen band"
|
3364
3348
|
chicken_egg: "Chicken egg"
|
3365
3349
|
chicken_meat: "Chicken meat"
|
3366
3350
|
chicory_crop: "Chicory crop"
|
3351
|
+
claw_interrow_vtv: "Claw interrow VTV"
|
3367
3352
|
common_beta_crop: "Common beta crop"
|
3368
3353
|
common_carrot_crop: "Common carrot crop"
|
3369
3354
|
common_consumable: "Common consumable"
|
@@ -3372,10 +3357,12 @@ eng:
|
|
3372
3357
|
common_onion_crop: "Common onion crop"
|
3373
3358
|
common_package: "Common package"
|
3374
3359
|
complete_herbicide: "Complete herbicide"
|
3360
|
+
compost_spreader_lv: "Compost spreader LV"
|
3375
3361
|
computer_display: "Computer display"
|
3376
3362
|
computer_item: "Computer item"
|
3377
3363
|
computer_mouse: "Computer mouse"
|
3378
3364
|
concrete_tank: "Concrete tank"
|
3365
|
+
confined_sprayer_lv: "Confined sprayer LV"
|
3379
3366
|
congress: "Congress"
|
3380
3367
|
consumer_goods_office_item: "Consumer goods office item"
|
3381
3368
|
coop:adexar_5l: "Coop:adexar 5l"
|
@@ -3494,15 +3481,20 @@ eng:
|
|
3494
3481
|
cover_crop: "Cover crop"
|
3495
3482
|
cover_implanter: "Cover implanter"
|
3496
3483
|
cow_milk: "Cow milk"
|
3484
|
+
crawler_tractor: "Crawler tractor"
|
3497
3485
|
creation_society_study: "Creation society study"
|
3486
|
+
crop_duster: "Crop duster"
|
3498
3487
|
crop_residue: "Crop residue"
|
3499
3488
|
cultivable_zone: "Cultivable zone"
|
3500
3489
|
daily_project_management: "Daily project management"
|
3501
3490
|
daily_software_engineering: "Daily software engineering"
|
3502
3491
|
daily_training_course: "Daily training course"
|
3503
3492
|
dairy_equipment_cleaner: "Dairy equipment cleaner"
|
3493
|
+
destructive_crush_roller: "Destructive crush roller"
|
3504
3494
|
diesel: "Diesel"
|
3505
3495
|
disc_harrow: "Disc harrow"
|
3496
|
+
disc_harrow_lv: "Disc harrow LV"
|
3497
|
+
disc_intercep_vtv: "Disc intercep VTV"
|
3506
3498
|
discount_and_reduction: "Discount and reduction"
|
3507
3499
|
disinfectant_product: "Disinfectant product"
|
3508
3500
|
domain_name_subscription: "Domain name subscription"
|
@@ -3514,7 +3506,9 @@ eng:
|
|
3514
3506
|
duck_slurry: "Duck slurry"
|
3515
3507
|
dumper: "Dumper"
|
3516
3508
|
eco_participation: "Eco participation"
|
3509
|
+
electric_pruning: "Electric pruning"
|
3517
3510
|
electricity: "Electricity"
|
3511
|
+
electronic_mechanical_pruner_lv: "Electronic mechanical pruner LV"
|
3518
3512
|
employee: "Employee"
|
3519
3513
|
ennis_hazelnut: "Ennis hazelnut"
|
3520
3514
|
equipment: "Equipment"
|
@@ -3573,6 +3567,7 @@ eng:
|
|
3573
3567
|
franquette_walnut: "Franquette walnut"
|
3574
3568
|
freelance_sofware_development: "Freelance sofware development"
|
3575
3569
|
freezer_tank: "Freezer tank"
|
3570
|
+
front_arboricultural_hay_rake: "Front arboricultural hay rake"
|
3576
3571
|
frozen_fruit: "Frozen fruit"
|
3577
3572
|
fruit_derivative_good: "Fruit derivative good"
|
3578
3573
|
fuel_tank: "Fuel tank"
|
@@ -3592,6 +3587,8 @@ eng:
|
|
3592
3587
|
grain_crusher: "Grain crusher"
|
3593
3588
|
grain_tank: "Grain tank"
|
3594
3589
|
granulated_insecticide_12: "Granulated insecticide 12"
|
3590
|
+
grape_harvester_lv: "Grape harvester LV"
|
3591
|
+
grape_harvester_tv: "Grape harvester TV"
|
3595
3592
|
grape_reaper: "Grape reaper"
|
3596
3593
|
grape_trailer: "Grape trailer"
|
3597
3594
|
grass: "Grass"
|
@@ -3599,9 +3596,11 @@ eng:
|
|
3599
3596
|
grass_silage: "Grass silage"
|
3600
3597
|
green_compost: "Green compost"
|
3601
3598
|
grinder: "Grinder"
|
3599
|
+
grinder_vine_shoot_extractor: "Grinder vine shoot extractor"
|
3602
3600
|
growth_regulator: "Growth regulator"
|
3603
3601
|
guineafowl_manure: "Guineafowl manure"
|
3604
3602
|
hand_drawn: "Hand drawn"
|
3603
|
+
hand_tying_lv: "Hand tying LV"
|
3605
3604
|
hanging_scroll: "Hanging scroll"
|
3606
3605
|
hard_wheat_crop: "Hard wheat crop"
|
3607
3606
|
hard_wheat_grain: "Hard wheat grain"
|
@@ -3638,7 +3637,12 @@ eng:
|
|
3638
3637
|
hourly_training_course: "Hourly training course"
|
3639
3638
|
hourly_user_support: "Hourly user support"
|
3640
3639
|
howard_walnut: "Howard walnut"
|
3640
|
+
hydraulic_blade_intercep_tv: "Hydraulic blade intercep TV"
|
3641
|
+
hydraulic_intercep_lv: "Hydraulic intercep LV"
|
3641
3642
|
hydraulic_oil: "Hydraulic oil"
|
3643
|
+
hydraulic_plow_lv: "Hydraulic plow LV"
|
3644
|
+
hydraulic_plow_tv: "Hydraulic plow TV"
|
3645
|
+
hydraulic_trunck_cleaner_lv: "Hydraulic trunck cleaner LV"
|
3642
3646
|
ichn_subsidies: "Ichn subsidies"
|
3643
3647
|
implanter: "Implanter"
|
3644
3648
|
infirmity_and_death_insurance: "Infirmity and death insurance"
|
@@ -3647,6 +3651,7 @@ eng:
|
|
3647
3651
|
inseminator: "Inseminator"
|
3648
3652
|
insurance: "Insurance"
|
3649
3653
|
internet_line_subscription: "Internet line subscription"
|
3654
|
+
interrow_sower_lv: "Interrow sower LV"
|
3650
3655
|
intership: "Intership"
|
3651
3656
|
ip_address_subscription: "Ip address subscription"
|
3652
3657
|
irrigation_pivot: "Irrigation pivot"
|
@@ -3707,10 +3712,16 @@ eng:
|
|
3707
3712
|
malic_acid_25kg: "Malic acid 25kg"
|
3708
3713
|
manager: "Manager"
|
3709
3714
|
manual_implanter: "Manual planter"
|
3715
|
+
manual_mechanical_pruner_lv: "Manual mechanical pruner LV"
|
3710
3716
|
manure_division: "Manure division"
|
3717
|
+
manure_spreader_lv: "Manure spreader LV"
|
3718
|
+
manure_spreader_tv: "Manure spreader TV"
|
3711
3719
|
market_gardening_crop: "Market gardening crop"
|
3712
3720
|
meadow_grass: "Meadow grass"
|
3713
3721
|
meal_travel: "Meal travel"
|
3722
|
+
mechanical_blade_intercep_tv: "Mechanical blade intercep TV"
|
3723
|
+
mechanical_plow_lv: "Mechanical plow LV"
|
3724
|
+
mechanical_plow_tv: "Mechanical plow TV"
|
3714
3725
|
merlot_noir_so4_vine_seedling: "Merlot noir so4 vine seedling"
|
3715
3726
|
merveille_hazelnut: "Merveille hazelnut"
|
3716
3727
|
milk_tank: "Milk tank"
|
@@ -3733,6 +3744,10 @@ eng:
|
|
3733
3744
|
monthly_enterprise_support: "Monthly enterprise support"
|
3734
3745
|
motor_hoe: "Motor hoe"
|
3735
3746
|
motor_oil: "Motor oil"
|
3747
|
+
mounted_jet_sprayer_lv: "Mounted jet sprayer LV"
|
3748
|
+
mounted_jet_sprayer_tv: "Mounted jet sprayer TV"
|
3749
|
+
mounted_jet_sprayer_vtv: "Mounted jet sprayer VTV"
|
3750
|
+
mounted_pneumatic_sprayer_tv: "Mounted pneumatic sprayer TV"
|
3736
3751
|
moving_travel: "Moving travel"
|
3737
3752
|
mower: "Windrower"
|
3738
3753
|
mud: "Mud"
|
@@ -3781,13 +3796,17 @@ eng:
|
|
3781
3796
|
pig_slurry: "Pig slurry"
|
3782
3797
|
piglet_band: "Piglet band"
|
3783
3798
|
piglet_meat: "Piglet meat"
|
3799
|
+
plant_cover_sower: "Plant cover sower"
|
3784
3800
|
plant_medicine_tank: "Plant medicine tank"
|
3785
3801
|
plastic_cover_500m: "Plastic cover 500m"
|
3786
3802
|
plow: "Plough"
|
3803
|
+
plow_interrow_vtv: "Plow interrow VTV"
|
3787
3804
|
plum: "Plum"
|
3788
3805
|
plum_crop: "Plum crop"
|
3789
3806
|
plum_reaper: "Plum reaper"
|
3790
3807
|
plum_seedling: "Plum seedling"
|
3808
|
+
pneumatic_pruning: "Pneumatic pruning"
|
3809
|
+
pneumatic_sprayer_vtv: "Pneumatic sprayer VTV"
|
3791
3810
|
poaceae_fungicide: "Poaceae fungicide"
|
3792
3811
|
poaceae_herbicide: "Poaceae herbicide"
|
3793
3812
|
pollination_tool: "Pollination tool"
|
@@ -3806,10 +3825,15 @@ eng:
|
|
3806
3825
|
potato: "Potato"
|
3807
3826
|
potato_crop: "Potato crop"
|
3808
3827
|
poultry_sausage: "Poultry sausage"
|
3828
|
+
pre_pruner_lv: "Pre pruner LV"
|
3829
|
+
pre_pruner_pruner_lv: "Pre pruner pruner LV"
|
3830
|
+
pre_pruner_tv: "Pre pruner TV"
|
3809
3831
|
preparation_division: "Preparation division"
|
3810
3832
|
printer: "Printer"
|
3811
3833
|
product_warranty: "Product warranty"
|
3812
3834
|
project_study: "Project study"
|
3835
|
+
projected_jet_sprayer_tv: "Projected jet sprayer TV"
|
3836
|
+
projected_jet_sprayer_vtv: "Projected jet sprayer VTV"
|
3813
3837
|
protective_canvas: "Protective canvas"
|
3814
3838
|
protective_net: "Protective net"
|
3815
3839
|
pruning_platform: "Pruning platform"
|
@@ -3831,10 +3855,19 @@ eng:
|
|
3831
3855
|
riflexine: "Riflexine"
|
3832
3856
|
roast_veal_meat: "Roast veal meat"
|
3833
3857
|
roll: "Roll"
|
3858
|
+
roller_stripper_lv: "Roller stripper LV"
|
3834
3859
|
rollup: "Rollup"
|
3835
3860
|
ronde_de_piemont_hazelnut: "Ronde de piemont hazelnut"
|
3836
3861
|
rose_crop: "Rose crop"
|
3837
3862
|
rose_seedling: "Rose seedling"
|
3863
|
+
rotary_cultivator_lv: "Rotary cultivator LV"
|
3864
|
+
rotary_cultivator_tv: "Rotary cultivator TV"
|
3865
|
+
rotary_flail_intercep_vtv: "Rotary flail intercep VTV"
|
3866
|
+
rotary_grinder_tv: "Rotary grinder TV"
|
3867
|
+
rotary_spade_interrow_vtv: "Rotary spade interrow VTV"
|
3868
|
+
rotary_trimmer_lv: "Rotary trimmer LV"
|
3869
|
+
rotary_trimmer_tv: "Rotary trimmer TV"
|
3870
|
+
rotative_intercep_lv: "Rotative intercep LV"
|
3838
3871
|
rotavator: "Rotavator"
|
3839
3872
|
rubisko_wheat_crop: "Rubisko wheat crop"
|
3840
3873
|
running_water: "Running water"
|
@@ -3847,14 +3880,19 @@ eng:
|
|
3847
3880
|
saffron_seedling: "Saffron seedling"
|
3848
3881
|
salary_social_contribution: "Salary social contribution"
|
3849
3882
|
salmon_band: "Salmon band"
|
3883
|
+
scarifier_tv: "Scarifier TV"
|
3850
3884
|
screed_building: "Screed building"
|
3851
3885
|
seed: "Seed"
|
3852
3886
|
seedling: "Seedling"
|
3853
3887
|
segorbe_hazelnut: "Segorbe hazelnut"
|
3888
|
+
self_propelled_grape_harvester_lv: "Self propelled grape harvester LV"
|
3889
|
+
self_propelled_grape_harvester_tv: "Self propelled grape harvester TV"
|
3854
3890
|
server_certificate_subscription: "Server certificate subscription"
|
3855
3891
|
server_rental: "Server rental"
|
3856
3892
|
settlement: "Settlement"
|
3857
3893
|
sheep_herd: "Sheep herd"
|
3894
|
+
shoot_grinder_lv: "Shoot grinder LV"
|
3895
|
+
shoot_hay_rake_lv: "Shoot hay rake LV"
|
3858
3896
|
shoulder_veal_meat: "Shoulder veal meat"
|
3859
3897
|
sieve_shaker: "Sieve shaker"
|
3860
3898
|
silage_distributor: "Silage distributor"
|
@@ -3880,18 +3918,29 @@ eng:
|
|
3880
3918
|
sprayer: "Sprayer"
|
3881
3919
|
spread_renting: "Spread renting"
|
3882
3920
|
spreader: "Fertilizer spreader"
|
3921
|
+
spreader_lv: "Spreader LV"
|
3883
3922
|
spreader_trailer: "Manure spreader"
|
3923
|
+
spreader_tv: "Spreader TV"
|
3884
3924
|
spring_barley_crop: "Spring barley crop"
|
3885
3925
|
spring_barley_seed_25: "Spring barley seed 25"
|
3886
3926
|
spring_oat_crop: "Spring oat crop"
|
3887
3927
|
squash: "Squash"
|
3888
3928
|
stainless_steel_tank: "Stainless steel tank"
|
3929
|
+
star_intercep_vtv: "Star intercep VTV"
|
3889
3930
|
steam_engine: "Steam engine"
|
3931
|
+
stone_grinder: "Stone grinder"
|
3932
|
+
straddle_tractor: "Straddle tractor"
|
3933
|
+
straddle_tractor_shoot_grinder_tv: "Straddle tractor shoot grinder TV"
|
3934
|
+
straddle_tractor_trimmer_tv: "Straddle tractor trimmer TV"
|
3935
|
+
strap_trunck_cleaner_tv: "Strap trunck cleaner TV"
|
3890
3936
|
strawberry_crop: "Strawberry crop"
|
3891
3937
|
strawberry_seedling: "Strawberry seedling"
|
3938
|
+
stripper_lv: "Stripper LV"
|
3939
|
+
stripper_tv: "Stripper TV"
|
3892
3940
|
stubble_cultivator: "Stubble cultivator"
|
3893
3941
|
subscription_professional_society: "Subscription professional society"
|
3894
3942
|
subsoil_plow: "Subsoiler"
|
3943
|
+
subsoiler_lv: "Subsoiler LV"
|
3895
3944
|
sugar_vinasse: "Sugar vinasse"
|
3896
3945
|
sunflower_crop: "Sunflower crop"
|
3897
3946
|
sunflower_grain: "Sunflower grain"
|
@@ -3900,6 +3949,8 @@ eng:
|
|
3900
3949
|
tablur_hard_wheat_crop: "Tablur hard wheat crop"
|
3901
3950
|
tablur_hard_wheat_seed_25: "Tablur hard wheat seed 25"
|
3902
3951
|
tangerine_crop: "Tangerine crop"
|
3952
|
+
tank_pump_lv: "Tank pump LV"
|
3953
|
+
tank_pump_tv: "Tank pump TV"
|
3903
3954
|
taxe: "Taxe"
|
3904
3955
|
technician: "Technician"
|
3905
3956
|
telescopic_handler: "Telescopic handler"
|
@@ -3908,9 +3959,15 @@ eng:
|
|
3908
3959
|
tobacco_crop: "Tobacco crop"
|
3909
3960
|
tonda_giffoni_hazelnut: "Tonda giffoni hazelnut"
|
3910
3961
|
topper: "Topper"
|
3962
|
+
topper_trimmer_lv: "Topper trimmer LV"
|
3911
3963
|
tractor: "Tractor"
|
3964
|
+
tractor_shoot_grinder_tv: "Tractor shoot grinder TV"
|
3965
|
+
trailed_pneumatic_sprayer_lv: "Trailed pneumatic sprayer LV"
|
3966
|
+
trailed_pneumatic_sprayer_tv: "Trailed pneumatic sprayer TV"
|
3912
3967
|
trailer: "Trailer"
|
3913
3968
|
trimmer: "Trimmer"
|
3969
|
+
trimmer_lv: "Trimmer LV"
|
3970
|
+
trimmer_tv: "Trimmer TV"
|
3914
3971
|
triticale_crop: "Triticale crop"
|
3915
3972
|
triticale_grain: "Triticale grain"
|
3916
3973
|
triticale_seed: "Triticale seed"
|
@@ -3926,13 +3983,18 @@ eng:
|
|
3926
3983
|
vine_grape_crop: "Vine grape crop"
|
3927
3984
|
vine_grape_juice: "Vine grape juice"
|
3928
3985
|
vine_grape_must: "Vine grape must"
|
3986
|
+
vine_lifter_lv: "Vine lifter LV"
|
3929
3987
|
vine_residu: "Vine residu"
|
3988
|
+
vine_shoot_extractor: "Vine shoot extractor"
|
3989
|
+
vine_tractor: "Vine tractor"
|
3930
3990
|
vines_harvest_insurance: "Vines harvest insurance"
|
3931
3991
|
walnut: "Walnut"
|
3932
3992
|
walnut_crop: "Walnut crop"
|
3933
3993
|
water_bowser: "Water bowser"
|
3934
3994
|
water_spreader: "Water spreader"
|
3935
3995
|
weeder: "Weeder"
|
3996
|
+
weeding_boom_lv: "Weeding boom LV"
|
3997
|
+
weeding_boom_tv: "Weeding boom TV"
|
3936
3998
|
weeding_kit: "Weeding kit"
|
3937
3999
|
wheat_crop: "Wheat crop"
|
3938
4000
|
wheat_grain: "Wheat grain"
|
@@ -3943,8 +4005,12 @@ eng:
|
|
3943
4005
|
wheel_loader: "Wheel loader"
|
3944
4006
|
white_sugar_25kg: "White sugar 25kg"
|
3945
4007
|
wine: "Wine"
|
4008
|
+
wine_cultivator_lv: "Wine cultivator LV"
|
4009
|
+
wine_cultivator_tv: "Wine cultivator TV"
|
4010
|
+
wine_disc_stubble_cultivator: "Wine disc stubble cultivator"
|
3946
4011
|
wine_press: "Wine press"
|
3947
4012
|
wine_storage_division: "Wine storage division"
|
4013
|
+
wine_tipper_trailer: "Wine tipper trailer"
|
3948
4014
|
wine_vinasse: "Wine vinasse"
|
3949
4015
|
winter_barley_crop: "Winter barley crop"
|
3950
4016
|
winter_barley_seed_25: "Winter barley seed 25"
|
@@ -4031,6 +4097,7 @@ eng:
|
|
4031
4097
|
crop_residue: "Crop residue"
|
4032
4098
|
crop_taxe: "Crop taxe"
|
4033
4099
|
cultivable_zone: "Cultivable zone"
|
4100
|
+
cutting_equipment: "Cutting equipment"
|
4034
4101
|
discount_and_reduction: "Discount and reduction"
|
4035
4102
|
disinfectant_product: "Disinfectant product"
|
4036
4103
|
draining_item: "Draining item"
|
@@ -4187,8 +4254,10 @@ eng:
|
|
4187
4254
|
pig_band: "Pig band"
|
4188
4255
|
pig_herd: "Pig herd"
|
4189
4256
|
piglet_band: "Piglet band"
|
4257
|
+
plant_grinder: "Plant grinder"
|
4190
4258
|
plant_medicine_tank: "Plant medicine tank"
|
4191
4259
|
plastic_cover: "Plastic cover"
|
4260
|
+
platform: "Platform"
|
4192
4261
|
plow: "Plough"
|
4193
4262
|
plum: "Plum"
|
4194
4263
|
plum_reaper: "Plum reaper"
|
@@ -4227,6 +4296,7 @@ eng:
|
|
4227
4296
|
seed: "Seed"
|
4228
4297
|
seedbed_preparator: "Seedbed preparator"
|
4229
4298
|
seedling: "Seedling"
|
4299
|
+
self_propelled_harvester: "Self propelled harvester"
|
4230
4300
|
settlement: "Settlement"
|
4231
4301
|
sheep_herd: "Sheep herd"
|
4232
4302
|
shell_fruit_reaper: "Shell fruit reaper"
|
@@ -4236,6 +4306,7 @@ eng:
|
|
4236
4306
|
small_equipment: "Small equipment"
|
4237
4307
|
so2_solution: "SO₂ solution"
|
4238
4308
|
software_engineering: "Software engineering"
|
4309
|
+
soil_grinder: "Soil grinder"
|
4239
4310
|
soil_loosener: "Soil loosener"
|
4240
4311
|
sower: "Seeder"
|
4241
4312
|
species: "Species"
|
@@ -4254,6 +4325,7 @@ eng:
|
|
4254
4325
|
taxe: "Taxe"
|
4255
4326
|
technician: "Technician"
|
4256
4327
|
telescopic_handler: "Telescopic handler"
|
4328
|
+
tool: "Tool"
|
4257
4329
|
topper: "Topper"
|
4258
4330
|
tractor: "Tractor"
|
4259
4331
|
trade_show: "Trade show"
|
@@ -4270,6 +4342,9 @@ eng:
|
|
4270
4342
|
vegetable_crop: "Vegetable crop"
|
4271
4343
|
vegetals_making_services: "Vegetals making services"
|
4272
4344
|
vial: "Vial"
|
4345
|
+
vine_crop: "Vine crop"
|
4346
|
+
vine_lifter: "Vine lifter"
|
4347
|
+
vine_shoot_extractor: "Vine shoot extractor"
|
4273
4348
|
walnut: "Walnut"
|
4274
4349
|
walnut_crop: "Walnut crop"
|
4275
4350
|
water_spreader: "Water spreader"
|
@@ -4280,7 +4355,6 @@ eng:
|
|
4280
4355
|
wine: "Wine"
|
4281
4356
|
wine_acidifying: "Wine acidifying"
|
4282
4357
|
wine_alkalinizing: "Wine alkalinizing"
|
4283
|
-
wine_crop: "Wine crop"
|
4284
4358
|
wine_press: "Wine press"
|
4285
4359
|
wine_storage_division: "Wine storage division"
|
4286
4360
|
wine_tank: "Wine tank"
|
@@ -4302,7 +4376,10 @@ eng:
|
|
4302
4376
|
name: "Production natures"
|
4303
4377
|
production_systems:
|
4304
4378
|
items:
|
4379
|
+
biodynamic_agriculture: "Biodynamic agriculture"
|
4380
|
+
conservation_agriculture: "Conservation agriculture"
|
4305
4381
|
extensive_farming: "Extensive farming"
|
4382
|
+
integrated_agriculture: "Integrated agriculture"
|
4306
4383
|
intensive_farming: "Intensive farming"
|
4307
4384
|
organic_farming: "Organic farming"
|
4308
4385
|
permaculture: "Permaculture"
|
@@ -4476,6 +4553,7 @@ eng:
|
|
4476
4553
|
billionth: "Billionth"
|
4477
4554
|
candela: "Candela"
|
4478
4555
|
celsius: "Celsius"
|
4556
|
+
centiare: "Centiare"
|
4479
4557
|
centiliter: "Centiliter"
|
4480
4558
|
centiliter_per_hectoliter: "Centiliter per hectoliter"
|
4481
4559
|
centiliter_per_liter: "Centiliter per liter"
|
@@ -4596,7 +4674,7 @@ eng:
|
|
4596
4674
|
acipenser_sturio: "Acipenser sturio"
|
4597
4675
|
acipenser_transmontanus: "Acipenser transmontanus"
|
4598
4676
|
acipenseridae: "Acipenseridae"
|
4599
|
-
actinidia: "
|
4677
|
+
actinidia: "Kiwi"
|
4600
4678
|
actinidia_chinensis: "Actinidia chinensis"
|
4601
4679
|
actinidia_deliciosa: "Actinidia deliciosa"
|
4602
4680
|
actinidiaceae: "Actinidiaceae"
|
@@ -4703,6 +4781,7 @@ eng:
|
|
4703
4781
|
arctium: "Arctium"
|
4704
4782
|
arctium_lappa: "Arctium lappa"
|
4705
4783
|
arctium_minus: "Arctium minus"
|
4784
|
+
arecaceae: "Palm tree"
|
4706
4785
|
argania: "Argania"
|
4707
4786
|
argania_spinosa: "Argan"
|
4708
4787
|
artemisia: "Artemisia"
|
@@ -5284,7 +5363,10 @@ eng:
|
|
5284
5363
|
dioscorea_trifida: "Indian yam"
|
5285
5364
|
dioscorea_villosa: "Wild yam"
|
5286
5365
|
dioscoreaceae: "Yam family"
|
5366
|
+
diospyros: "Persimmons"
|
5367
|
+
diospyros_kaki: "Chinese persimmon"
|
5287
5368
|
easement: "Easement"
|
5369
|
+
ebenaceae: "Ebony"
|
5288
5370
|
egg: "Egg"
|
5289
5371
|
elaeagnaceae: "Elaeagnaceae"
|
5290
5372
|
elaeagnus: "Elaeagnus"
|
@@ -5310,6 +5392,8 @@ eng:
|
|
5310
5392
|
erysiphaceae: "Erysiphaceae"
|
5311
5393
|
eucalyptus: "Eucalyptus"
|
5312
5394
|
euphorbiaceae: "Euphorbiaceae"
|
5395
|
+
euterpe: "Euterpe"
|
5396
|
+
euterpe_oleracea: "Assai palm"
|
5313
5397
|
excrement: "Excrement"
|
5314
5398
|
fabaceae: "Fabaceae"
|
5315
5399
|
fagaceae: "Fagaceae"
|
@@ -5949,6 +6033,8 @@ eng:
|
|
5949
6033
|
mytilus_edulis: "Blue mussel"
|
5950
6034
|
mytilus_galloprovincialis: "Mediterranean mussel"
|
5951
6035
|
mytilus_trossulus: "Bay mussel"
|
6036
|
+
nasturtium: "Nasturtium"
|
6037
|
+
nasturtium_officinale: "Watercress"
|
5952
6038
|
nematoda: "Nematode"
|
5953
6039
|
nicotiana: "Nicotiana"
|
5954
6040
|
nicotiana_tabacum: "Cultivated tobacco"
|
@@ -7310,6 +7396,14 @@ eng:
|
|
7310
7396
|
europa_tsn: "Europa number id"
|
7311
7397
|
french_race_code: "French race code"
|
7312
7398
|
itis_tsn: "Itis number id"
|
7399
|
+
vine_pruning_systems:
|
7400
|
+
items:
|
7401
|
+
cordon_pruning: "Cordon pruning"
|
7402
|
+
formation_pruning: "Formation pruning"
|
7403
|
+
gobelet_pruning: "Gobelet pruning"
|
7404
|
+
guyot_double_pruning: "Guyot double pruning"
|
7405
|
+
guyot_simple_pruning: "Guyot simple pruning"
|
7406
|
+
name: "Vine pruning systems"
|
7313
7407
|
working_sets:
|
7314
7408
|
items:
|
7315
7409
|
animal_foods: "Animal foods"
|