mirror of
https://github.com/woheller69/solxpect.git
synced 2026-04-17 21:49:01 +02:00
Refactoring
Renaming parameters Update Readme
This commit is contained in:
parent
b734fef432
commit
6c78e772bd
14 changed files with 131 additions and 202 deletions
|
|
@ -54,13 +54,13 @@
|
|||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/edit_location_hint_elevation"/>
|
||||
android:hint="@string/edit_location_hint_tilt"/>
|
||||
<androidx.appcompat.widget.AppCompatEditText
|
||||
android:id="@+id/EditLocation_Elevation"
|
||||
android:id="@+id/EditLocation_Tilt"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:inputType="numberDecimal|numberSigned"
|
||||
android:hint="@string/edit_location_hint_elevation"/>
|
||||
android:hint="@string/edit_location_hint_tilt"/>
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
@ -104,22 +104,22 @@
|
|||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/edit_location_hint_converter_power_limit"/>
|
||||
android:hint="@string/edit_location_hint_inverter_power_limit"/>
|
||||
<androidx.appcompat.widget.AppCompatEditText
|
||||
android:id="@+id/EditLocation_Converter_Power_Limit"
|
||||
android:id="@+id/EditLocation_Inverter_Power_Limit"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:inputType="numberDecimal|numberSigned"
|
||||
android:hint="@string/edit_location_hint_converter_power_limit"/>
|
||||
android:hint="@string/edit_location_hint_inverter_power_limit"/>
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/edit_location_hint_converter_efficiency"/>
|
||||
android:hint="@string/edit_location_hint_inverter_efficiency"/>
|
||||
<androidx.appcompat.widget.AppCompatEditText
|
||||
android:id="@+id/EditLocation_Converter_Efficiency"
|
||||
android:id="@+id/EditLocation_Inverter_Efficiency"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:inputType="numberDecimal|numberSigned"
|
||||
android:hint="@string/edit_location_hint_converter_efficiency"/>
|
||||
android:hint="@string/edit_location_hint_inverter_efficiency"/>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
|
@ -54,11 +54,11 @@
|
|||
tools:visibility="visible" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/city_elevation_angle"
|
||||
android:id="@+id/city_tilt_angle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:text="@string/edit_location_hint_elevation"
|
||||
android:text="@string/edit_location_hint_tilt"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
tools:visibility="visible" />
|
||||
|
||||
|
|
@ -100,20 +100,20 @@
|
|||
tools:visibility="visible" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/city_converter_power_limit"
|
||||
android:id="@+id/city_inverter_power_limit"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:text="@string/edit_location_hint_converter_power_limit"
|
||||
android:text="@string/edit_location_hint_inverter_power_limit"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
tools:visibility="visible" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/city_converter_efficiency"
|
||||
android:id="@+id/city_inverter_efficiency"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:text="@string/edit_location_hint_converter_efficiency"
|
||||
android:text="@string/edit_location_hint_inverter_efficiency"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
tools:visibility="visible" />
|
||||
|
||||
|
|
|
|||
|
|
@ -117,13 +117,13 @@
|
|||
<string name="edit_location_hint_latitude">Breitengrad [°]</string>
|
||||
<string name="edit_location_hint_longitude">Längengrad [°]</string>
|
||||
<string name="edit_location_hint_azimuth">Azimuth [°]</string>
|
||||
<string name="edit_location_hint_elevation">Neigung [°]</string>
|
||||
<string name="edit_location_hint_tilt">Neigung [°]</string>
|
||||
<string name="edit_location_hint_cells_max_power">Maximalleistung Zelle [W]</string>
|
||||
<string name="edit_location_hint_cells_efficiency">Wirkungsgrad Zelle [%]</string>
|
||||
<string name="edit_location_hint_cells_area">Fläche Zelle [m\u00b2]</string>
|
||||
<string name="edit_location_hint_diffuse_efficiency">Effizienz diffuse Strahlung [%]</string>
|
||||
<string name="edit_location_hint_converter_power_limit">Leistung Wechselrichter [W]</string>
|
||||
<string name="edit_location_hint_converter_efficiency">Effizienz Wechselrichter [%]</string>
|
||||
<string name="edit_location_hint_inverter_power_limit">Leistung Wechselrichter [W]</string>
|
||||
<string name="edit_location_hint_inverter_efficiency">Effizienz Wechselrichter [%]</string>
|
||||
<string name="units_Wh">Wh</string>
|
||||
<string name="edit_location_title">Ort bearbeiten</string>
|
||||
|
||||
|
|
|
|||
|
|
@ -119,13 +119,13 @@
|
|||
<string name="edit_location_hint_latitude">Latitude [°]</string>
|
||||
<string name="edit_location_hint_longitude">Longitude [°]</string>
|
||||
<string name="edit_location_hint_azimuth">Azimuth [°]</string>
|
||||
<string name="edit_location_hint_elevation">Elevation [°]</string>
|
||||
<string name="edit_location_hint_tilt">Tilt [°]</string>
|
||||
<string name="edit_location_hint_cells_max_power">Cells max power [W]</string>
|
||||
<string name="edit_location_hint_cells_efficiency">Cells efficiency [%]</string>
|
||||
<string name="edit_location_hint_cells_area">Cell area [m\u00b2]</string>
|
||||
<string name="edit_location_hint_diffuse_efficiency">Diffuse radiation efficiency [%]</string>
|
||||
<string name="edit_location_hint_converter_power_limit">Converter power [W]</string>
|
||||
<string name="edit_location_hint_converter_efficiency">Converter efficiency [%]</string>
|
||||
<string name="edit_location_hint_inverter_power_limit">Inverter power [W]</string>
|
||||
<string name="edit_location_hint_inverter_efficiency">Inverter efficiency [%]</string>
|
||||
<string name="units_Wh">Wh</string>
|
||||
<string name="edit_location_title">Edit location</string>
|
||||
</resources>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue