Compare commits
2 Commits
974fc860c6
...
eb9834ca20
Author | SHA1 | Date | |
---|---|---|---|
eb9834ca20 | |||
e68daaa9e6 |
16
ar/measurement_type_set.php
Normal file
16
ar/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
ar/units_count_copies_set.php
Normal file
6
ar/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
ar/units_count_parts_set.php
Normal file
6
ar/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
ar/units_die_axis_set.php
Normal file
5
ar/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
de/measurement_type_set.php
Normal file
16
de/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Länge',
|
||||
'height' => 'Höhe',
|
||||
'width' => 'Breite',
|
||||
'number_of_copies' => 'Anzahl / Stückzahl',
|
||||
'weight' => 'Gewicht',
|
||||
'diameter' => 'Durchmesser',
|
||||
'wall' => 'Wandungsstärke',
|
||||
'number_of_parts' => 'Anzahl von Teilen',
|
||||
'die_axis' => 'Stempelstellung',
|
||||
'length_socle' => 'Länge (Sockel)',
|
||||
'height_socle' => 'Höhe (Sockel)',
|
||||
'width_socle' => 'Breite (Sockel)',
|
||||
);
|
6
de/units_count_copies_set.php
Normal file
6
de/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Kopien',
|
||||
'specimen' => 'Exemplare',
|
||||
);
|
6
de/units_count_parts_set.php
Normal file
6
de/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Bestandteile',
|
||||
'pages' => 'Seiten',
|
||||
);
|
5
de/units_die_axis_set.php
Normal file
5
de/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
dsb/measurement_type_set.php
Normal file
16
dsb/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
dsb/units_count_copies_set.php
Normal file
6
dsb/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
dsb/units_count_parts_set.php
Normal file
6
dsb/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
dsb/units_die_axis_set.php
Normal file
5
dsb/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
en/measurement_type_set.php
Normal file
16
en/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
en/units_count_copies_set.php
Normal file
6
en/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
en/units_count_parts_set.php
Normal file
6
en/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
en/units_die_axis_set.php
Normal file
5
en/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
es/measurement_type_set.php
Normal file
16
es/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
es/units_count_copies_set.php
Normal file
6
es/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
es/units_count_parts_set.php
Normal file
6
es/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
es/units_die_axis_set.php
Normal file
5
es/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
fr/measurement_type_set.php
Normal file
16
fr/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
fr/units_count_copies_set.php
Normal file
6
fr/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
fr/units_count_parts_set.php
Normal file
6
fr/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
fr/units_die_axis_set.php
Normal file
5
fr/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
hsb/measurement_type_set.php
Normal file
16
hsb/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
hsb/units_count_copies_set.php
Normal file
6
hsb/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
hsb/units_count_parts_set.php
Normal file
6
hsb/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
hsb/units_die_axis_set.php
Normal file
5
hsb/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
hu/measurement_type_set.php
Normal file
16
hu/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
hu/units_count_copies_set.php
Normal file
6
hu/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
hu/units_count_parts_set.php
Normal file
6
hu/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
hu/units_die_axis_set.php
Normal file
5
hu/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
id/measurement_type_set.php
Normal file
16
id/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
id/units_count_copies_set.php
Normal file
6
id/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
id/units_count_parts_set.php
Normal file
6
id/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
id/units_die_axis_set.php
Normal file
5
id/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
it/measurement_type_set.php
Normal file
16
it/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
it/units_count_copies_set.php
Normal file
6
it/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
it/units_count_parts_set.php
Normal file
6
it/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
it/units_die_axis_set.php
Normal file
5
it/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
iw/measurement_type_set.php
Normal file
16
iw/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
iw/units_count_copies_set.php
Normal file
6
iw/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
iw/units_count_parts_set.php
Normal file
6
iw/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
iw/units_die_axis_set.php
Normal file
5
iw/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
nl/measurement_type_set.php
Normal file
16
nl/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
nl/units_count_copies_set.php
Normal file
6
nl/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
nl/units_count_parts_set.php
Normal file
6
nl/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
nl/units_die_axis_set.php
Normal file
5
nl/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
pl/measurement_type_set.php
Normal file
16
pl/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
pl/units_count_copies_set.php
Normal file
6
pl/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
pl/units_count_parts_set.php
Normal file
6
pl/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
pl/units_die_axis_set.php
Normal file
5
pl/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
pt/measurement_type_set.php
Normal file
16
pt/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
pt/units_count_copies_set.php
Normal file
6
pt/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
pt/units_count_parts_set.php
Normal file
6
pt/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
pt/units_die_axis_set.php
Normal file
5
pt/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
qu/measurement_type_set.php
Normal file
16
qu/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
qu/units_count_copies_set.php
Normal file
6
qu/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
qu/units_count_parts_set.php
Normal file
6
qu/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
qu/units_die_axis_set.php
Normal file
5
qu/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
ro/measurement_type_set.php
Normal file
16
ro/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
ro/units_count_copies_set.php
Normal file
6
ro/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
ro/units_count_parts_set.php
Normal file
6
ro/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
ro/units_die_axis_set.php
Normal file
5
ro/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
ru/measurement_type_set.php
Normal file
16
ru/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
ru/units_count_copies_set.php
Normal file
6
ru/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
ru/units_count_parts_set.php
Normal file
6
ru/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
ru/units_die_axis_set.php
Normal file
5
ru/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
tl/measurement_type_set.php
Normal file
16
tl/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
tl/units_count_copies_set.php
Normal file
6
tl/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
tl/units_count_parts_set.php
Normal file
6
tl/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
tl/units_die_axis_set.php
Normal file
5
tl/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
tr/measurement_type_set.php
Normal file
16
tr/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
tr/units_count_copies_set.php
Normal file
6
tr/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
tr/units_count_parts_set.php
Normal file
6
tr/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
tr/units_die_axis_set.php
Normal file
5
tr/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
uk/measurement_type_set.php
Normal file
16
uk/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
uk/units_count_copies_set.php
Normal file
6
uk/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
uk/units_count_parts_set.php
Normal file
6
uk/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
uk/units_die_axis_set.php
Normal file
5
uk/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
16
zh/measurement_type_set.php
Normal file
16
zh/measurement_type_set.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
);
|
6
zh/units_count_copies_set.php
Normal file
6
zh/units_count_copies_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
);
|
6
zh/units_count_parts_set.php
Normal file
6
zh/units_count_parts_set.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
);
|
5
zh/units_die_axis_set.php
Normal file
5
zh/units_die_axis_set.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
);
|
Loading…
Reference in New Issue
Block a user