onoma 0.3.1 → 0.4.2
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/eng.yml +134 -46
- data/config/locales/fra.yml +233 -195
- 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/20200925153320_fix_outgoing_payment_list_document_nature.xml +7 -0
- data/db/reference.xml +1434 -1265
- 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/certification.rb +4 -0
- data/lib/onoma/models/certification_label.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/land.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 +119 -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: 14216d00ab6af41d9a4960dc4447637e37a122e7454680cbe441a42d1defc2cd
|
4
|
+
data.tar.gz: a5e741e14cabb8abbda0bd77ebde9fea8205ec4ecdd70e4e318f5add6f06235b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 744d639e54aeea8ad0a3e1b4a4a8c4fc7bb788bc5db2d2512dd0ff7fbb15f6aaf67b386b3c02092932a118b12b0debdd8d6ab69f8373f7ccb8fbbcf8c80455aa
|
7
|
+
data.tar.gz: b24e1edef23249a771e067363ebd3a7c3a26a120d40c6aa9731fe3c6fe6ea7f5c73b53c5399e0a2b7f69fc79b6a9c09460c0b9a6a5e30fb7ecb9d1a600d880df
|
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/eng.yml
CHANGED
@@ -118,7 +118,6 @@ eng:
|
|
118
118
|
banks_and_similar: "Banks and similar"
|
119
119
|
banks_services_expenses: "Banks services expenses"
|
120
120
|
biocorporeal_asset_depreciations: "Biocorporeal asset depreciations"
|
121
|
-
bonus_staff_expenses: "Bonus staff expenses"
|
122
121
|
brands_and_patents_assets: "Brands and patents assets"
|
123
122
|
brands_and_patents_assets_amortization: "Brands and patents assets amortization"
|
124
123
|
building_assets: "Building assets"
|
@@ -145,6 +144,7 @@ eng:
|
|
145
144
|
cooperative_participation_assets: "Cooperative participation assets"
|
146
145
|
corporeal_asset_depreciations: "Corporeal asset depreciations"
|
147
146
|
corporeal_asset_revenues: "Corporeal asset revenues"
|
147
|
+
corporeal_asset_revenues_of_livestock: "Corporeal asset revenues of livestock"
|
148
148
|
corporeal_assets: "Corporeal assets"
|
149
149
|
corporeal_depreciations_inputations_expenses: "Land parcel construction depreciations inputations expenses"
|
150
150
|
corporeal_depreciations_inputations_expenses_living_goods: "Animals depreciations inputations expenses"
|
@@ -173,7 +173,6 @@ eng:
|
|
173
173
|
employee_representative_committees: "Employee representative committees"
|
174
174
|
end_products_stock: "End products stock"
|
175
175
|
enterprise_collected_vat: "Enterprise collected VAT"
|
176
|
-
enterprise_deductible_vat: "Enterprise deductible VAT"
|
177
176
|
entity_collectable_taxes: "Entity collectable taxes"
|
178
177
|
equipment_asset_depreciations: "Equipment assets depreciations"
|
179
178
|
equipment_assets: "Equipment assets"
|
@@ -267,6 +266,7 @@ eng:
|
|
267
266
|
initial_society_capital: "Initial society capital"
|
268
267
|
installation_sustainable_plant_assets: "Installation sustainable plant assets"
|
269
268
|
insurance_expenses: "Insurance expenses"
|
269
|
+
intangible_fixed_asset_in_progress: "Intangible fixed asset in progress"
|
270
270
|
intangible_fixed_assets_revenues: "Intangible fixed assets revenues"
|
271
271
|
internal_transfers: "Internal transfers"
|
272
272
|
inventory_variations: "Inventory variations"
|
@@ -355,6 +355,7 @@ eng:
|
|
355
355
|
other_investment_subventions: "Other investment subventions"
|
356
356
|
other_investment_subventions_in_earnings_statement: "Other investment subventions in earnings statement"
|
357
357
|
other_materials_stock: "Other materials stock"
|
358
|
+
other_plants_tangible_fixed_asset_in_progress: "Other plants tangible fixed asset in progress"
|
358
359
|
other_professional_agricultural_participation_assets: "Other professional agricultural participation assets"
|
359
360
|
other_reserves: "Other reserves"
|
360
361
|
other_social_expenses: "Other social expenses"
|
@@ -395,47 +396,10 @@ eng:
|
|
395
396
|
participations: "Participations"
|
396
397
|
particular_operation_with_state: "Particular operation with state"
|
397
398
|
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"
|
399
|
+
payments_on_account_on_intangible_fixed_assets: "Payments on account on intangible fixed assets"
|
400
|
+
payments_on_account_on_orders_for_tangible_fixed_assets: "Payments on account on orders for tangible fixed assets"
|
401
|
+
payments_on_account_on_orders_for_tangible_fixed_assets_except_for_livestock: "Payments on account on orders for tangible fixed assets except for livestock"
|
402
|
+
payments_on_account_on_orders_for_tangible_fixed_assets_for_livestock: "Payments on account on orders for tangible fixed assets for livestock"
|
439
403
|
pending_deposit_payments: "Pending deposit payments"
|
440
404
|
plant_derivative_stock: "Plant derivative stock"
|
441
405
|
plant_derivatives_revenues: "Plant derivatives revenues"
|
@@ -515,6 +479,7 @@ eng:
|
|
515
479
|
staff_remuneration: "Staff remuneration"
|
516
480
|
staff_salary: "Staff salary"
|
517
481
|
staff_submissions: "Staff submissions"
|
482
|
+
staff_supply_stock: "Staff supply stock"
|
518
483
|
state_and_other_public_entities: "State and other public entities"
|
519
484
|
state_emission_quota_to_restitute: "State emission quota to restitute"
|
520
485
|
stocks: "Stocks"
|
@@ -1968,6 +1933,7 @@ eng:
|
|
1968
1933
|
animal_list: "Animal list"
|
1969
1934
|
animal_sheet: "Animal sheet"
|
1970
1935
|
balance_sheet: "Balance sheet"
|
1936
|
+
by_account_fixed_asset_registry: "Fixed asset registry by account"
|
1971
1937
|
deposit_list: "Deposit list"
|
1972
1938
|
entity_sheet: "Entity sheet"
|
1973
1939
|
equipment_certification: "Equipment certification"
|
@@ -1978,6 +1944,7 @@ eng:
|
|
1978
1944
|
fr_pcg82_profit_and_loss_statement: "French classical profit and loss statement"
|
1979
1945
|
fr_pcga_balance_sheet: "French agricultural balance sheet"
|
1980
1946
|
fr_pcga_profit_and_loss_statement: "French agricultural profit and loss statement"
|
1947
|
+
gain_and_loss_fixed_asset_registry: "Gain and loss fixed asset registry"
|
1981
1948
|
general_journal: "General journal"
|
1982
1949
|
general_ledger: "General ledger"
|
1983
1950
|
income_statement: "Profit and loss statement"
|
@@ -1993,7 +1960,9 @@ eng:
|
|
1993
1960
|
manure_management_plan_sheet: "Manure management plan (detail)"
|
1994
1961
|
outgoing_deliveries_journal: "Outgoing deliveries journal"
|
1995
1962
|
outgoing_delivery_docket: "Outgoing delivery docket"
|
1996
|
-
|
1963
|
+
outgoing_payment_list__check_letter: "Outgoing payment list: Check letter"
|
1964
|
+
outgoing_payment_list__standard: "Outgoing payment list"
|
1965
|
+
pending_vat_register: "Pending VAT register"
|
1997
1966
|
phytosanitary_certification: "Phytosanitary certification"
|
1998
1967
|
phytosanitary_register: "Phytosanitary register"
|
1999
1968
|
prescription: "Prescription"
|
@@ -2008,6 +1977,7 @@ eng:
|
|
2008
1977
|
sales_order: "Sales order"
|
2009
1978
|
security_data_sheet: "Security data sheet"
|
2010
1979
|
shipping_note: "Shipping note"
|
1980
|
+
short_balance_sheet: "Short balance sheet"
|
2011
1981
|
stocks: "Stocks"
|
2012
1982
|
tax_assessment: "Tax assessment"
|
2013
1983
|
trial_balance: "Trial balance"
|
@@ -2182,6 +2152,7 @@ eng:
|
|
2182
2152
|
birth_farm_number: "Birth farm number"
|
2183
2153
|
boron_concentration: "Boron concentration"
|
2184
2154
|
calcium_concentration: "Calcium concentration"
|
2155
|
+
caliber: "Caliber"
|
2185
2156
|
calving_ease_index: "Calving ease index"
|
2186
2157
|
cation_exchange_capacity: "Cation exchange capacity"
|
2187
2158
|
cation_exchange_capacity_analysis_method: "Cation exchange capacity analysis method"
|
@@ -2318,6 +2289,7 @@ eng:
|
|
2318
2289
|
seedling_count: "Seedling count"
|
2319
2290
|
sex: "Sex"
|
2320
2291
|
shape: "Shape"
|
2292
|
+
sodium_concentration: "Sodium concentration"
|
2321
2293
|
soil_cultural_state: "Soil cultural state"
|
2322
2294
|
soil_depth: "Soil depth"
|
2323
2295
|
soil_nature: "Soil nature"
|
@@ -2480,7 +2452,6 @@ eng:
|
|
2480
2452
|
wheat_helminthosporiosis: "Wheat helminthosporiosis"
|
2481
2453
|
wheat_powdery_mildew: "Wheat powdery mildew"
|
2482
2454
|
wild_animal_ravage: "Wild animal ravage"
|
2483
|
-
witness: "Witness"
|
2484
2455
|
wood_leopard_moth: "Wood leopard moth"
|
2485
2456
|
yellow_acarine: "Yellow acarine"
|
2486
2457
|
yellow_rust: "Yellow rust"
|
@@ -3269,12 +3240,21 @@ eng:
|
|
3269
3240
|
animals_making_service: "Animals making service"
|
3270
3241
|
annual_fallow_crop: "Annual fallow crop"
|
3271
3242
|
anti_slug: "Anti slug"
|
3243
|
+
antidrift_panel_lv: "Antidrift panel LV"
|
3244
|
+
antidrift_panel_tv: "Antidrift panel TV"
|
3272
3245
|
apple_crop: "Apple crop"
|
3246
|
+
arboreal_tractor: "Arboreal tractor"
|
3247
|
+
arboricultural_cultivator: "Arboricultural cultivator"
|
3248
|
+
arboricultural_mounted_jet_sprayer: "Arboricultural mounted jet sprayer"
|
3249
|
+
arboricultural_platform: "Arboricultural platform"
|
3250
|
+
arboricultural_pneumatic_sprayer: "Arboricultural pneumatic sprayer"
|
3251
|
+
arboricultural_weeding_boom: "Arboricultural weeding boom"
|
3273
3252
|
arezzo_wheat_crop: "Arezzo wheat crop"
|
3274
3253
|
ascott_wheat_crop: "Ascott wheat crop"
|
3275
3254
|
ascott_wheat_seed_25: "Ascott wheat seed 25"
|
3276
3255
|
asparagus_crop: "Asparagus crop"
|
3277
3256
|
associate_social_contribution: "Associate social contribution"
|
3257
|
+
back_arboricultural_hay_rake: "Back arboricultural hay rake"
|
3278
3258
|
bale_collector: "Bale collector"
|
3279
3259
|
baler: "Baler"
|
3280
3260
|
bank_service: "Bank service"
|
@@ -3293,6 +3273,7 @@ eng:
|
|
3293
3273
|
big_sticker: "Big sticker"
|
3294
3274
|
blackcurrant_crop: "Blackcurrant crop"
|
3295
3275
|
blackcurrant_seedling: "Blackcurrant seedling"
|
3276
|
+
blade_intercep_vtv: "Blade intercep VTV"
|
3296
3277
|
bolt: "Bolt"
|
3297
3278
|
bordelaise_100cl_bottle: "Bordelaise 100cl bottle"
|
3298
3279
|
bordelaise_75cl_bottle: "Bordelaise 75cl bottle"
|
@@ -3309,6 +3290,8 @@ eng:
|
|
3309
3290
|
bottle_75cl_wine: "Bottle 75cl wine"
|
3310
3291
|
bottle_900cl_wine: "Bottle 900cl wine"
|
3311
3292
|
brassicaceae_fungicide: "Brassicaceae fungicide"
|
3293
|
+
brush_intercep_tv: "Brush intercep TV"
|
3294
|
+
brush_intercep_vtv: "Brush intercep VTV"
|
3312
3295
|
buckwheat_crop: "Buckwheat crop"
|
3313
3296
|
buckwheat_grain: "Buckwheat grain"
|
3314
3297
|
buckwheat_seed: "Buckwheat seed"
|
@@ -3344,6 +3327,12 @@ eng:
|
|
3344
3327
|
car_moving_travel: "Car moving travel"
|
3345
3328
|
card: "Card"
|
3346
3329
|
carriage: "Carriage"
|
3330
|
+
carrier_confined_sprayer_lv: "Carrier confined sprayer LV"
|
3331
|
+
carrier_manure_spreader: "Carrier manure spreader"
|
3332
|
+
carrier_pre_pruner_lv: "Carrier pre pruner LV"
|
3333
|
+
carrier_sprayer_lv: "Carrier sprayer LV"
|
3334
|
+
carrier_topper_trimmer_lv: "Carrier topper trimmer LV"
|
3335
|
+
carrier_topper_trimmer_tv: "Carrier topper trimmer TV"
|
3347
3336
|
carrot: "Carrot"
|
3348
3337
|
carrot_crop: "Carrot crop"
|
3349
3338
|
carrot_seed: "Carrot seed"
|
@@ -3359,11 +3348,13 @@ eng:
|
|
3359
3348
|
chandler_walnut: "Chandler walnut"
|
3360
3349
|
chard: "Chard"
|
3361
3350
|
chemical_fertilizer_division: "Chemical fertilizer division"
|
3351
|
+
chemical_trunck_cleaner_lv: "Chemical trunck cleaner LV"
|
3362
3352
|
cherry_laurel_crop: "Cherry laurel crop"
|
3363
3353
|
chick_hen_band: "Chick hen band"
|
3364
3354
|
chicken_egg: "Chicken egg"
|
3365
3355
|
chicken_meat: "Chicken meat"
|
3366
3356
|
chicory_crop: "Chicory crop"
|
3357
|
+
claw_interrow_vtv: "Claw interrow VTV"
|
3367
3358
|
common_beta_crop: "Common beta crop"
|
3368
3359
|
common_carrot_crop: "Common carrot crop"
|
3369
3360
|
common_consumable: "Common consumable"
|
@@ -3372,10 +3363,12 @@ eng:
|
|
3372
3363
|
common_onion_crop: "Common onion crop"
|
3373
3364
|
common_package: "Common package"
|
3374
3365
|
complete_herbicide: "Complete herbicide"
|
3366
|
+
compost_spreader_lv: "Compost spreader LV"
|
3375
3367
|
computer_display: "Computer display"
|
3376
3368
|
computer_item: "Computer item"
|
3377
3369
|
computer_mouse: "Computer mouse"
|
3378
3370
|
concrete_tank: "Concrete tank"
|
3371
|
+
confined_sprayer_lv: "Confined sprayer LV"
|
3379
3372
|
congress: "Congress"
|
3380
3373
|
consumer_goods_office_item: "Consumer goods office item"
|
3381
3374
|
coop:adexar_5l: "Coop:adexar 5l"
|
@@ -3494,15 +3487,20 @@ eng:
|
|
3494
3487
|
cover_crop: "Cover crop"
|
3495
3488
|
cover_implanter: "Cover implanter"
|
3496
3489
|
cow_milk: "Cow milk"
|
3490
|
+
crawler_tractor: "Crawler tractor"
|
3497
3491
|
creation_society_study: "Creation society study"
|
3492
|
+
crop_duster: "Crop duster"
|
3498
3493
|
crop_residue: "Crop residue"
|
3499
3494
|
cultivable_zone: "Cultivable zone"
|
3500
3495
|
daily_project_management: "Daily project management"
|
3501
3496
|
daily_software_engineering: "Daily software engineering"
|
3502
3497
|
daily_training_course: "Daily training course"
|
3503
3498
|
dairy_equipment_cleaner: "Dairy equipment cleaner"
|
3499
|
+
destructive_crush_roller: "Destructive crush roller"
|
3504
3500
|
diesel: "Diesel"
|
3505
3501
|
disc_harrow: "Disc harrow"
|
3502
|
+
disc_harrow_lv: "Disc harrow LV"
|
3503
|
+
disc_intercep_vtv: "Disc intercep VTV"
|
3506
3504
|
discount_and_reduction: "Discount and reduction"
|
3507
3505
|
disinfectant_product: "Disinfectant product"
|
3508
3506
|
domain_name_subscription: "Domain name subscription"
|
@@ -3514,7 +3512,9 @@ eng:
|
|
3514
3512
|
duck_slurry: "Duck slurry"
|
3515
3513
|
dumper: "Dumper"
|
3516
3514
|
eco_participation: "Eco participation"
|
3515
|
+
electric_pruning: "Electric pruning"
|
3517
3516
|
electricity: "Electricity"
|
3517
|
+
electronic_mechanical_pruner_lv: "Electronic mechanical pruner LV"
|
3518
3518
|
employee: "Employee"
|
3519
3519
|
ennis_hazelnut: "Ennis hazelnut"
|
3520
3520
|
equipment: "Equipment"
|
@@ -3573,6 +3573,7 @@ eng:
|
|
3573
3573
|
franquette_walnut: "Franquette walnut"
|
3574
3574
|
freelance_sofware_development: "Freelance sofware development"
|
3575
3575
|
freezer_tank: "Freezer tank"
|
3576
|
+
front_arboricultural_hay_rake: "Front arboricultural hay rake"
|
3576
3577
|
frozen_fruit: "Frozen fruit"
|
3577
3578
|
fruit_derivative_good: "Fruit derivative good"
|
3578
3579
|
fuel_tank: "Fuel tank"
|
@@ -3592,6 +3593,8 @@ eng:
|
|
3592
3593
|
grain_crusher: "Grain crusher"
|
3593
3594
|
grain_tank: "Grain tank"
|
3594
3595
|
granulated_insecticide_12: "Granulated insecticide 12"
|
3596
|
+
grape_harvester_lv: "Grape harvester LV"
|
3597
|
+
grape_harvester_tv: "Grape harvester TV"
|
3595
3598
|
grape_reaper: "Grape reaper"
|
3596
3599
|
grape_trailer: "Grape trailer"
|
3597
3600
|
grass: "Grass"
|
@@ -3599,9 +3602,11 @@ eng:
|
|
3599
3602
|
grass_silage: "Grass silage"
|
3600
3603
|
green_compost: "Green compost"
|
3601
3604
|
grinder: "Grinder"
|
3605
|
+
grinder_vine_shoot_extractor: "Grinder vine shoot extractor"
|
3602
3606
|
growth_regulator: "Growth regulator"
|
3603
3607
|
guineafowl_manure: "Guineafowl manure"
|
3604
3608
|
hand_drawn: "Hand drawn"
|
3609
|
+
hand_tying_lv: "Hand tying LV"
|
3605
3610
|
hanging_scroll: "Hanging scroll"
|
3606
3611
|
hard_wheat_crop: "Hard wheat crop"
|
3607
3612
|
hard_wheat_grain: "Hard wheat grain"
|
@@ -3638,7 +3643,12 @@ eng:
|
|
3638
3643
|
hourly_training_course: "Hourly training course"
|
3639
3644
|
hourly_user_support: "Hourly user support"
|
3640
3645
|
howard_walnut: "Howard walnut"
|
3646
|
+
hydraulic_blade_intercep_tv: "Hydraulic blade intercep TV"
|
3647
|
+
hydraulic_intercep_lv: "Hydraulic intercep LV"
|
3641
3648
|
hydraulic_oil: "Hydraulic oil"
|
3649
|
+
hydraulic_plow_lv: "Hydraulic plow LV"
|
3650
|
+
hydraulic_plow_tv: "Hydraulic plow TV"
|
3651
|
+
hydraulic_trunck_cleaner_lv: "Hydraulic trunck cleaner LV"
|
3642
3652
|
ichn_subsidies: "Ichn subsidies"
|
3643
3653
|
implanter: "Implanter"
|
3644
3654
|
infirmity_and_death_insurance: "Infirmity and death insurance"
|
@@ -3647,6 +3657,7 @@ eng:
|
|
3647
3657
|
inseminator: "Inseminator"
|
3648
3658
|
insurance: "Insurance"
|
3649
3659
|
internet_line_subscription: "Internet line subscription"
|
3660
|
+
interrow_sower_lv: "Interrow sower LV"
|
3650
3661
|
intership: "Intership"
|
3651
3662
|
ip_address_subscription: "Ip address subscription"
|
3652
3663
|
irrigation_pivot: "Irrigation pivot"
|
@@ -3707,10 +3718,16 @@ eng:
|
|
3707
3718
|
malic_acid_25kg: "Malic acid 25kg"
|
3708
3719
|
manager: "Manager"
|
3709
3720
|
manual_implanter: "Manual planter"
|
3721
|
+
manual_mechanical_pruner_lv: "Manual mechanical pruner LV"
|
3710
3722
|
manure_division: "Manure division"
|
3723
|
+
manure_spreader_lv: "Manure spreader LV"
|
3724
|
+
manure_spreader_tv: "Manure spreader TV"
|
3711
3725
|
market_gardening_crop: "Market gardening crop"
|
3712
3726
|
meadow_grass: "Meadow grass"
|
3713
3727
|
meal_travel: "Meal travel"
|
3728
|
+
mechanical_blade_intercep_tv: "Mechanical blade intercep TV"
|
3729
|
+
mechanical_plow_lv: "Mechanical plow LV"
|
3730
|
+
mechanical_plow_tv: "Mechanical plow TV"
|
3714
3731
|
merlot_noir_so4_vine_seedling: "Merlot noir so4 vine seedling"
|
3715
3732
|
merveille_hazelnut: "Merveille hazelnut"
|
3716
3733
|
milk_tank: "Milk tank"
|
@@ -3733,6 +3750,10 @@ eng:
|
|
3733
3750
|
monthly_enterprise_support: "Monthly enterprise support"
|
3734
3751
|
motor_hoe: "Motor hoe"
|
3735
3752
|
motor_oil: "Motor oil"
|
3753
|
+
mounted_jet_sprayer_lv: "Mounted jet sprayer LV"
|
3754
|
+
mounted_jet_sprayer_tv: "Mounted jet sprayer TV"
|
3755
|
+
mounted_jet_sprayer_vtv: "Mounted jet sprayer VTV"
|
3756
|
+
mounted_pneumatic_sprayer_tv: "Mounted pneumatic sprayer TV"
|
3736
3757
|
moving_travel: "Moving travel"
|
3737
3758
|
mower: "Windrower"
|
3738
3759
|
mud: "Mud"
|
@@ -3781,13 +3802,17 @@ eng:
|
|
3781
3802
|
pig_slurry: "Pig slurry"
|
3782
3803
|
piglet_band: "Piglet band"
|
3783
3804
|
piglet_meat: "Piglet meat"
|
3805
|
+
plant_cover_sower: "Plant cover sower"
|
3784
3806
|
plant_medicine_tank: "Plant medicine tank"
|
3785
3807
|
plastic_cover_500m: "Plastic cover 500m"
|
3786
3808
|
plow: "Plough"
|
3809
|
+
plow_interrow_vtv: "Plow interrow VTV"
|
3787
3810
|
plum: "Plum"
|
3788
3811
|
plum_crop: "Plum crop"
|
3789
3812
|
plum_reaper: "Plum reaper"
|
3790
3813
|
plum_seedling: "Plum seedling"
|
3814
|
+
pneumatic_pruning: "Pneumatic pruning"
|
3815
|
+
pneumatic_sprayer_vtv: "Pneumatic sprayer VTV"
|
3791
3816
|
poaceae_fungicide: "Poaceae fungicide"
|
3792
3817
|
poaceae_herbicide: "Poaceae herbicide"
|
3793
3818
|
pollination_tool: "Pollination tool"
|
@@ -3806,10 +3831,15 @@ eng:
|
|
3806
3831
|
potato: "Potato"
|
3807
3832
|
potato_crop: "Potato crop"
|
3808
3833
|
poultry_sausage: "Poultry sausage"
|
3834
|
+
pre_pruner_lv: "Pre pruner LV"
|
3835
|
+
pre_pruner_pruner_lv: "Pre pruner pruner LV"
|
3836
|
+
pre_pruner_tv: "Pre pruner TV"
|
3809
3837
|
preparation_division: "Preparation division"
|
3810
3838
|
printer: "Printer"
|
3811
3839
|
product_warranty: "Product warranty"
|
3812
3840
|
project_study: "Project study"
|
3841
|
+
projected_jet_sprayer_tv: "Projected jet sprayer TV"
|
3842
|
+
projected_jet_sprayer_vtv: "Projected jet sprayer VTV"
|
3813
3843
|
protective_canvas: "Protective canvas"
|
3814
3844
|
protective_net: "Protective net"
|
3815
3845
|
pruning_platform: "Pruning platform"
|
@@ -3831,10 +3861,19 @@ eng:
|
|
3831
3861
|
riflexine: "Riflexine"
|
3832
3862
|
roast_veal_meat: "Roast veal meat"
|
3833
3863
|
roll: "Roll"
|
3864
|
+
roller_stripper_lv: "Roller stripper LV"
|
3834
3865
|
rollup: "Rollup"
|
3835
3866
|
ronde_de_piemont_hazelnut: "Ronde de piemont hazelnut"
|
3836
3867
|
rose_crop: "Rose crop"
|
3837
3868
|
rose_seedling: "Rose seedling"
|
3869
|
+
rotary_cultivator_lv: "Rotary cultivator LV"
|
3870
|
+
rotary_cultivator_tv: "Rotary cultivator TV"
|
3871
|
+
rotary_flail_intercep_vtv: "Rotary flail intercep VTV"
|
3872
|
+
rotary_grinder_tv: "Rotary grinder TV"
|
3873
|
+
rotary_spade_interrow_vtv: "Rotary spade interrow VTV"
|
3874
|
+
rotary_trimmer_lv: "Rotary trimmer LV"
|
3875
|
+
rotary_trimmer_tv: "Rotary trimmer TV"
|
3876
|
+
rotative_intercep_lv: "Rotative intercep LV"
|
3838
3877
|
rotavator: "Rotavator"
|
3839
3878
|
rubisko_wheat_crop: "Rubisko wheat crop"
|
3840
3879
|
running_water: "Running water"
|
@@ -3847,14 +3886,19 @@ eng:
|
|
3847
3886
|
saffron_seedling: "Saffron seedling"
|
3848
3887
|
salary_social_contribution: "Salary social contribution"
|
3849
3888
|
salmon_band: "Salmon band"
|
3889
|
+
scarifier_tv: "Scarifier TV"
|
3850
3890
|
screed_building: "Screed building"
|
3851
3891
|
seed: "Seed"
|
3852
3892
|
seedling: "Seedling"
|
3853
3893
|
segorbe_hazelnut: "Segorbe hazelnut"
|
3894
|
+
self_propelled_grape_harvester_lv: "Self propelled grape harvester LV"
|
3895
|
+
self_propelled_grape_harvester_tv: "Self propelled grape harvester TV"
|
3854
3896
|
server_certificate_subscription: "Server certificate subscription"
|
3855
3897
|
server_rental: "Server rental"
|
3856
3898
|
settlement: "Settlement"
|
3857
3899
|
sheep_herd: "Sheep herd"
|
3900
|
+
shoot_grinder_lv: "Shoot grinder LV"
|
3901
|
+
shoot_hay_rake_lv: "Shoot hay rake LV"
|
3858
3902
|
shoulder_veal_meat: "Shoulder veal meat"
|
3859
3903
|
sieve_shaker: "Sieve shaker"
|
3860
3904
|
silage_distributor: "Silage distributor"
|
@@ -3880,18 +3924,29 @@ eng:
|
|
3880
3924
|
sprayer: "Sprayer"
|
3881
3925
|
spread_renting: "Spread renting"
|
3882
3926
|
spreader: "Fertilizer spreader"
|
3927
|
+
spreader_lv: "Spreader LV"
|
3883
3928
|
spreader_trailer: "Manure spreader"
|
3929
|
+
spreader_tv: "Spreader TV"
|
3884
3930
|
spring_barley_crop: "Spring barley crop"
|
3885
3931
|
spring_barley_seed_25: "Spring barley seed 25"
|
3886
3932
|
spring_oat_crop: "Spring oat crop"
|
3887
3933
|
squash: "Squash"
|
3888
3934
|
stainless_steel_tank: "Stainless steel tank"
|
3935
|
+
star_intercep_vtv: "Star intercep VTV"
|
3889
3936
|
steam_engine: "Steam engine"
|
3937
|
+
stone_grinder: "Stone grinder"
|
3938
|
+
straddle_tractor: "Straddle tractor"
|
3939
|
+
straddle_tractor_shoot_grinder_tv: "Straddle tractor shoot grinder TV"
|
3940
|
+
straddle_tractor_trimmer_tv: "Straddle tractor trimmer TV"
|
3941
|
+
strap_trunck_cleaner_tv: "Strap trunck cleaner TV"
|
3890
3942
|
strawberry_crop: "Strawberry crop"
|
3891
3943
|
strawberry_seedling: "Strawberry seedling"
|
3944
|
+
stripper_lv: "Stripper LV"
|
3945
|
+
stripper_tv: "Stripper TV"
|
3892
3946
|
stubble_cultivator: "Stubble cultivator"
|
3893
3947
|
subscription_professional_society: "Subscription professional society"
|
3894
3948
|
subsoil_plow: "Subsoiler"
|
3949
|
+
subsoiler_lv: "Subsoiler LV"
|
3895
3950
|
sugar_vinasse: "Sugar vinasse"
|
3896
3951
|
sunflower_crop: "Sunflower crop"
|
3897
3952
|
sunflower_grain: "Sunflower grain"
|
@@ -3900,6 +3955,8 @@ eng:
|
|
3900
3955
|
tablur_hard_wheat_crop: "Tablur hard wheat crop"
|
3901
3956
|
tablur_hard_wheat_seed_25: "Tablur hard wheat seed 25"
|
3902
3957
|
tangerine_crop: "Tangerine crop"
|
3958
|
+
tank_pump_lv: "Tank pump LV"
|
3959
|
+
tank_pump_tv: "Tank pump TV"
|
3903
3960
|
taxe: "Taxe"
|
3904
3961
|
technician: "Technician"
|
3905
3962
|
telescopic_handler: "Telescopic handler"
|
@@ -3908,9 +3965,15 @@ eng:
|
|
3908
3965
|
tobacco_crop: "Tobacco crop"
|
3909
3966
|
tonda_giffoni_hazelnut: "Tonda giffoni hazelnut"
|
3910
3967
|
topper: "Topper"
|
3968
|
+
topper_trimmer_lv: "Topper trimmer LV"
|
3911
3969
|
tractor: "Tractor"
|
3970
|
+
tractor_shoot_grinder_tv: "Tractor shoot grinder TV"
|
3971
|
+
trailed_pneumatic_sprayer_lv: "Trailed pneumatic sprayer LV"
|
3972
|
+
trailed_pneumatic_sprayer_tv: "Trailed pneumatic sprayer TV"
|
3912
3973
|
trailer: "Trailer"
|
3913
3974
|
trimmer: "Trimmer"
|
3975
|
+
trimmer_lv: "Trimmer LV"
|
3976
|
+
trimmer_tv: "Trimmer TV"
|
3914
3977
|
triticale_crop: "Triticale crop"
|
3915
3978
|
triticale_grain: "Triticale grain"
|
3916
3979
|
triticale_seed: "Triticale seed"
|
@@ -3926,13 +3989,18 @@ eng:
|
|
3926
3989
|
vine_grape_crop: "Vine grape crop"
|
3927
3990
|
vine_grape_juice: "Vine grape juice"
|
3928
3991
|
vine_grape_must: "Vine grape must"
|
3992
|
+
vine_lifter_lv: "Vine lifter LV"
|
3929
3993
|
vine_residu: "Vine residu"
|
3994
|
+
vine_shoot_extractor: "Vine shoot extractor"
|
3995
|
+
vine_tractor: "Vine tractor"
|
3930
3996
|
vines_harvest_insurance: "Vines harvest insurance"
|
3931
3997
|
walnut: "Walnut"
|
3932
3998
|
walnut_crop: "Walnut crop"
|
3933
3999
|
water_bowser: "Water bowser"
|
3934
4000
|
water_spreader: "Water spreader"
|
3935
4001
|
weeder: "Weeder"
|
4002
|
+
weeding_boom_lv: "Weeding boom LV"
|
4003
|
+
weeding_boom_tv: "Weeding boom TV"
|
3936
4004
|
weeding_kit: "Weeding kit"
|
3937
4005
|
wheat_crop: "Wheat crop"
|
3938
4006
|
wheat_grain: "Wheat grain"
|
@@ -3943,8 +4011,12 @@ eng:
|
|
3943
4011
|
wheel_loader: "Wheel loader"
|
3944
4012
|
white_sugar_25kg: "White sugar 25kg"
|
3945
4013
|
wine: "Wine"
|
4014
|
+
wine_cultivator_lv: "Wine cultivator LV"
|
4015
|
+
wine_cultivator_tv: "Wine cultivator TV"
|
4016
|
+
wine_disc_stubble_cultivator: "Wine disc stubble cultivator"
|
3946
4017
|
wine_press: "Wine press"
|
3947
4018
|
wine_storage_division: "Wine storage division"
|
4019
|
+
wine_tipper_trailer: "Wine tipper trailer"
|
3948
4020
|
wine_vinasse: "Wine vinasse"
|
3949
4021
|
winter_barley_crop: "Winter barley crop"
|
3950
4022
|
winter_barley_seed_25: "Winter barley seed 25"
|
@@ -4031,6 +4103,7 @@ eng:
|
|
4031
4103
|
crop_residue: "Crop residue"
|
4032
4104
|
crop_taxe: "Crop taxe"
|
4033
4105
|
cultivable_zone: "Cultivable zone"
|
4106
|
+
cutting_equipment: "Cutting equipment"
|
4034
4107
|
discount_and_reduction: "Discount and reduction"
|
4035
4108
|
disinfectant_product: "Disinfectant product"
|
4036
4109
|
draining_item: "Draining item"
|
@@ -4187,8 +4260,10 @@ eng:
|
|
4187
4260
|
pig_band: "Pig band"
|
4188
4261
|
pig_herd: "Pig herd"
|
4189
4262
|
piglet_band: "Piglet band"
|
4263
|
+
plant_grinder: "Plant grinder"
|
4190
4264
|
plant_medicine_tank: "Plant medicine tank"
|
4191
4265
|
plastic_cover: "Plastic cover"
|
4266
|
+
platform: "Platform"
|
4192
4267
|
plow: "Plough"
|
4193
4268
|
plum: "Plum"
|
4194
4269
|
plum_reaper: "Plum reaper"
|
@@ -4227,6 +4302,7 @@ eng:
|
|
4227
4302
|
seed: "Seed"
|
4228
4303
|
seedbed_preparator: "Seedbed preparator"
|
4229
4304
|
seedling: "Seedling"
|
4305
|
+
self_propelled_harvester: "Self propelled harvester"
|
4230
4306
|
settlement: "Settlement"
|
4231
4307
|
sheep_herd: "Sheep herd"
|
4232
4308
|
shell_fruit_reaper: "Shell fruit reaper"
|
@@ -4236,6 +4312,7 @@ eng:
|
|
4236
4312
|
small_equipment: "Small equipment"
|
4237
4313
|
so2_solution: "SO₂ solution"
|
4238
4314
|
software_engineering: "Software engineering"
|
4315
|
+
soil_grinder: "Soil grinder"
|
4239
4316
|
soil_loosener: "Soil loosener"
|
4240
4317
|
sower: "Seeder"
|
4241
4318
|
species: "Species"
|
@@ -4254,6 +4331,7 @@ eng:
|
|
4254
4331
|
taxe: "Taxe"
|
4255
4332
|
technician: "Technician"
|
4256
4333
|
telescopic_handler: "Telescopic handler"
|
4334
|
+
tool: "Tool"
|
4257
4335
|
topper: "Topper"
|
4258
4336
|
tractor: "Tractor"
|
4259
4337
|
trade_show: "Trade show"
|
@@ -4270,6 +4348,8 @@ eng:
|
|
4270
4348
|
vegetable_crop: "Vegetable crop"
|
4271
4349
|
vegetals_making_services: "Vegetals making services"
|
4272
4350
|
vial: "Vial"
|
4351
|
+
vine_lifter: "Vine lifter"
|
4352
|
+
vine_shoot_extractor: "Vine shoot extractor"
|
4273
4353
|
walnut: "Walnut"
|
4274
4354
|
walnut_crop: "Walnut crop"
|
4275
4355
|
water_spreader: "Water spreader"
|
@@ -4596,7 +4676,7 @@ eng:
|
|
4596
4676
|
acipenser_sturio: "Acipenser sturio"
|
4597
4677
|
acipenser_transmontanus: "Acipenser transmontanus"
|
4598
4678
|
acipenseridae: "Acipenseridae"
|
4599
|
-
actinidia: "
|
4679
|
+
actinidia: "Kiwi"
|
4600
4680
|
actinidia_chinensis: "Actinidia chinensis"
|
4601
4681
|
actinidia_deliciosa: "Actinidia deliciosa"
|
4602
4682
|
actinidiaceae: "Actinidiaceae"
|
@@ -4703,6 +4783,7 @@ eng:
|
|
4703
4783
|
arctium: "Arctium"
|
4704
4784
|
arctium_lappa: "Arctium lappa"
|
4705
4785
|
arctium_minus: "Arctium minus"
|
4786
|
+
arecaceae: "Palm tree"
|
4706
4787
|
argania: "Argania"
|
4707
4788
|
argania_spinosa: "Argan"
|
4708
4789
|
artemisia: "Artemisia"
|
@@ -5284,7 +5365,10 @@ eng:
|
|
5284
5365
|
dioscorea_trifida: "Indian yam"
|
5285
5366
|
dioscorea_villosa: "Wild yam"
|
5286
5367
|
dioscoreaceae: "Yam family"
|
5368
|
+
diospyros: "Persimmons"
|
5369
|
+
diospyros_kaki: "Chinese persimmon"
|
5287
5370
|
easement: "Easement"
|
5371
|
+
ebenaceae: "Ebony"
|
5288
5372
|
egg: "Egg"
|
5289
5373
|
elaeagnaceae: "Elaeagnaceae"
|
5290
5374
|
elaeagnus: "Elaeagnus"
|
@@ -5310,6 +5394,8 @@ eng:
|
|
5310
5394
|
erysiphaceae: "Erysiphaceae"
|
5311
5395
|
eucalyptus: "Eucalyptus"
|
5312
5396
|
euphorbiaceae: "Euphorbiaceae"
|
5397
|
+
euterpe: "Euterpe"
|
5398
|
+
euterpe_oleracea: "Assai palm"
|
5313
5399
|
excrement: "Excrement"
|
5314
5400
|
fabaceae: "Fabaceae"
|
5315
5401
|
fagaceae: "Fagaceae"
|
@@ -5949,6 +6035,8 @@ eng:
|
|
5949
6035
|
mytilus_edulis: "Blue mussel"
|
5950
6036
|
mytilus_galloprovincialis: "Mediterranean mussel"
|
5951
6037
|
mytilus_trossulus: "Bay mussel"
|
6038
|
+
nasturtium: "Nasturtium"
|
6039
|
+
nasturtium_officinale: "Watercress"
|
5952
6040
|
nematoda: "Nematode"
|
5953
6041
|
nicotiana: "Nicotiana"
|
5954
6042
|
nicotiana_tabacum: "Cultivated tobacco"
|