├── .gitignore
├── CHANGELOG.md
├── LICENSE.txt
├── README.md
├── app
├── build.gradle
├── proguard-project.pro
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── ultramegatech
│ │ └── ey
│ │ ├── AboutFragment.java
│ │ ├── ElementDetailsActivity.java
│ │ ├── ElementDetailsFragment.java
│ │ ├── ElementListActivity.java
│ │ ├── ElementListFragment.java
│ │ ├── ElementaryApplication.java
│ │ ├── PeriodicTableActivity.java
│ │ ├── SettingsActivity.java
│ │ ├── SettingsFragment.java
│ │ ├── provider
│ │ ├── Element.java
│ │ ├── Elements.java
│ │ ├── Isotope.java
│ │ └── Isotopes.java
│ │ ├── util
│ │ ├── CommonMenuHandler.java
│ │ ├── ElementUtils.java
│ │ ├── PreferenceUtils.java
│ │ ├── SubtextValuesHelper.java
│ │ └── UnitUtils.java
│ │ └── widget
│ │ ├── BlockSubtextValueListAdapter.java
│ │ ├── ElementListAdapter.java
│ │ ├── PeriodicTableBlock.java
│ │ ├── PeriodicTableLegend.java
│ │ ├── PeriodicTableView.java
│ │ └── Zoomer.java
│ ├── play
│ ├── contactEmail
│ ├── de
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── defaultLanguage
│ ├── en-US
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── icon
│ │ │ │ └── logo.png
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── promoGraphic
│ │ │ │ └── promo.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── es
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── fr
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── it
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── ja
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── nb
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── nl
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── pt-BR
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ ├── ru
│ │ ├── listing
│ │ │ ├── featureGraphic
│ │ │ │ └── feature.png
│ │ │ ├── fulldescription
│ │ │ ├── keywords
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ ├── shortdescription
│ │ │ ├── tenInchScreenshots
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ └── 5.png
│ │ │ └── title
│ │ └── whatsnew
│ └── tr
│ │ ├── listing
│ │ ├── fulldescription
│ │ ├── keywords
│ │ ├── shortdescription
│ │ └── title
│ │ └── whatsnew
│ └── res
│ ├── drawable-hdpi
│ ├── ic_video_black.png
│ ├── ic_video_white.png
│ ├── ic_wikipedia_black.png
│ ├── ic_wikipedia_white.png
│ └── icon.png
│ ├── drawable-mdpi
│ ├── ic_video_black.png
│ ├── ic_video_white.png
│ ├── ic_wikipedia_black.png
│ ├── ic_wikipedia_white.png
│ └── icon.png
│ ├── drawable-xhdpi
│ ├── ic_video_black.png
│ ├── ic_video_white.png
│ ├── ic_wikipedia_black.png
│ ├── ic_wikipedia_white.png
│ └── icon.png
│ ├── drawable-xxhdpi
│ ├── ic_video_black.png
│ ├── ic_video_white.png
│ ├── ic_wikipedia_black.png
│ ├── ic_wikipedia_white.png
│ └── icon.png
│ ├── drawable-xxxhdpi
│ ├── ic_video_black.png
│ ├── ic_video_white.png
│ ├── ic_wikipedia_black.png
│ ├── ic_wikipedia_white.png
│ └── icon.png
│ ├── layout-land
│ └── fragment_element_details.xml
│ ├── layout-normal
│ └── ptable_controls.xml
│ ├── layout-w600dp
│ └── activity_element_list.xml
│ ├── layout
│ ├── activity_element_list.xml
│ ├── activity_periodic_table.xml
│ ├── element_block.xml
│ ├── element_details_table.xml
│ ├── element_list_head.xml
│ ├── element_list_item.xml
│ ├── element_list_item_content.xml
│ ├── fragment_about.xml
│ ├── fragment_element_details.xml
│ ├── isotope_table_row.xml
│ └── ptable_controls.xml
│ ├── menu
│ ├── common.xml
│ ├── element_list.xml
│ └── periodic_table.xml
│ ├── values-de
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-es
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-fr
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-it
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-ja
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-nb
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-nl
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-pt-rBR
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-ru
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values-tr
│ ├── arrays.xml
│ ├── elements.xml
│ └── strings.xml
│ ├── values
│ ├── arrays.xml
│ ├── attrs.xml
│ ├── elements.xml
│ ├── strings.xml
│ ├── styles.xml
│ └── video.xml
│ └── xml
│ └── preferences.xml
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle/
3 | local.properties
4 | .idea/
5 | .DS_Store
6 | build/
7 | captures/
8 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 | Copyright © 2012 Steve Guidetti
3 |
4 | Permission is hereby granted, free of charge, to any person obtaining a copy
5 | of this software and associated documentation files (the “Software”), to deal
6 | in the Software without restriction, including without limitation the rights
7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the Software is
9 | furnished to do so, subject to the following conditions:
10 |
11 | The above copyright notice and this permission notice shall be included in
12 | all copies or substantial portions of the Software.
13 |
14 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 | THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Elementary (Periodic Table)
2 |
3 | Elementary is a simple Periodic Table and element reference application for Android.
4 |
5 | [
](https://play.google.com/store/apps/details?id=com.ultramegatech.ey)
8 | [
](https://f-droid.org/packages/com.ultramegatech.ey/)
11 | [
](https://www.amazon.com/gp/product/B00A3HPLWW)
14 |
15 | [Also available for Windows 10](https://github.com/ultramega/elementary-uwp).
16 |
17 | ## Features
18 |
19 | - Zoomable Periodic Table of the Elements
20 | - Tap an element to view some basic details
21 | - Easy access to Wikipedia and a YouTube video on the element
22 | - Free and open-source
23 |
24 | ## Notes
25 |
26 | Videos provided by Periodic Table of Videos (http://www.periodicvideos.com/)
27 |
28 | ## Donate
29 |
30 | If you find this application useful, please consider supporting the project by donating.
31 |
32 | [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=76UJ7AX8VJT5Q)
33 |
34 | ## Credits
35 |
36 | - German translation: [C4R2T3N](https://github.com/C4R2T3N)
37 | - Italian translation: [rapgenic](https://github.com/rapgenic)
38 | - French translation: [Poussinou](https://github.com/Poussinou)
39 | - Brazilian Portuguese translation: [amalvarenga](https://github.com/amalvarenga)
40 | - Japanese translation: [naofum](https://github.com/naofum)
41 | - Russian translation: [ashed](https://github.com/ashed)
42 | - Norwegian translation: [FTno](https://github.com/FTno)
43 | - Dutch translation: [eddriesen](https://github.com/eddriesen)
44 |
45 | ## License
46 |
47 | The source code for Elementary is released under the terms of the [MIT License](http://sguidetti.mit-license.org/).
48 |
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 30
5 | buildToolsVersion '30.0.3'
6 | defaultConfig {
7 | applicationId "com.ultramegatech.ey"
8 | minSdkVersion 14
9 | targetSdkVersion 30
10 | versionCode 37
11 | versionName '0.12.0'
12 | }
13 | buildTypes {
14 | release {
15 | minifyEnabled true
16 | shrinkResources true
17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.pro'
18 | }
19 | }
20 | compileOptions {
21 | encoding = 'UTF-8'
22 | sourceCompatibility JavaVersion.VERSION_1_8
23 | targetCompatibility JavaVersion.VERSION_1_8
24 | }
25 | }
26 |
27 | dependencies {
28 | implementation 'androidx.fragment:fragment:1.2.5'
29 | implementation 'androidx.preference:preference:1.1.1'
30 | }
31 |
--------------------------------------------------------------------------------
/app/proguard-project.pro:
--------------------------------------------------------------------------------
1 | # To enable ProGuard in your project, edit project.properties
2 | # to define the proguard.config property as described in that file.
3 | #
4 | # Add project specific ProGuard rules here.
5 | # By default, the flags in this file are appended to flags specified
6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt
7 | # You can edit the include path and order by changing the ProGuard
8 | # include property in project.properties.
9 | #
10 | # For more details, see
11 | # http://developer.android.com/guide/developing/tools/proguard.html
12 |
13 | # Add any project specific keep options here:
14 |
15 | # If your project uses WebView with JS, uncomment the following
16 | # and specify the fully qualified class name to the JavaScript interface
17 | # class:
18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19 | # public *;
20 | #}
21 |
22 | -keep class com.ultramegatech.ey.ElementListFragment
23 |
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
23 |
26 |
27 |
33 |
34 |
40 |
41 |
42 |
43 |
44 |
45 |
48 |
53 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
66 |
67 |
68 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/AboutFragment.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey;
24 |
25 | import android.annotation.SuppressLint;
26 | import android.app.Dialog;
27 | import android.content.Intent;
28 | import android.net.Uri;
29 | import android.os.Bundle;
30 | import android.view.LayoutInflater;
31 | import android.view.View;
32 | import android.view.ViewGroup;
33 | import android.widget.TextView;
34 |
35 | import androidx.annotation.NonNull;
36 | import androidx.annotation.Nullable;
37 | import androidx.fragment.app.DialogFragment;
38 | import androidx.fragment.app.FragmentManager;
39 |
40 | /**
41 | * Dialog that shows information about the application.
42 | *
43 | * @author Steve Guidetti
44 | */
45 | public class AboutFragment extends DialogFragment {
46 | @NonNull
47 | private static final String TAG = "AboutDialog";
48 |
49 | /**
50 | * Show the Dialog.
51 | *
52 | * @param fm The FragmentManager
53 | */
54 | public static void showDialog(@NonNull FragmentManager fm) {
55 | final DialogFragment fragment = new AboutFragment();
56 | fragment.show(fm, TAG);
57 | }
58 |
59 | @SuppressLint("InflateParams")
60 | @Nullable
61 | @Override
62 | public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
63 | @Nullable Bundle savedInstanceState) {
64 | final View root = inflater.inflate(R.layout.fragment_about, null, false);
65 |
66 | ((TextView)root.findViewById(R.id.version)).setText(BuildConfig.VERSION_NAME);
67 | root.findViewById(R.id.website).setOnClickListener(v -> openWebsite());
68 | root.findViewById(R.id.license).setOnClickListener(v -> openLicense());
69 |
70 | return root;
71 | }
72 |
73 | @Override
74 | public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
75 | super.onViewCreated(view, savedInstanceState);
76 |
77 | final Dialog dialog = getDialog();
78 | if (dialog != null) {
79 | dialog.setTitle(R.string.titleAbout);
80 | }
81 | }
82 |
83 | /**
84 | * Open the Elementary GitHub website in a browser.
85 | */
86 | private void openWebsite() {
87 | final Intent intent = new Intent(Intent.ACTION_VIEW);
88 | intent.setData(Uri.parse(getString(R.string.aboutWebsiteUrl)));
89 | startActivity(intent);
90 | }
91 |
92 | /**
93 | * Open the software license in a browser.
94 | */
95 | private void openLicense() {
96 | final Intent intent = new Intent(Intent.ACTION_VIEW);
97 | intent.setData(Uri.parse(getString(R.string.aboutLicenseUrl)));
98 | startActivity(intent);
99 | }
100 | }
101 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/ElementListActivity.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey;
24 |
25 | import android.content.Intent;
26 | import android.os.Bundle;
27 | import android.view.Menu;
28 | import android.view.MenuInflater;
29 | import android.view.MenuItem;
30 |
31 | import androidx.appcompat.app.AppCompatActivity;
32 | import androidx.fragment.app.Fragment;
33 |
34 | import com.ultramegatech.ey.util.CommonMenuHandler;
35 | import com.ultramegatech.ey.util.PreferenceUtils;
36 |
37 | /**
38 | * This Activity displays the list of elements. On large screens, this also shows the details for
39 | * the selected element in a second pane.
40 | *
41 | * @author Steve Guidetti
42 | */
43 | public class ElementListActivity extends AppCompatActivity {
44 | /**
45 | * Whether the Activity has a two-pane layout
46 | */
47 | private boolean mTwoPane;
48 |
49 | @Override
50 | protected void onCreate(Bundle savedInstanceState) {
51 | final boolean darkTheme = PreferenceUtils.getPrefDarkTheme();
52 | setTheme(darkTheme ? R.style.DarkTheme : R.style.LightTheme);
53 |
54 | super.onCreate(savedInstanceState);
55 |
56 | setContentView(R.layout.activity_element_list);
57 | }
58 |
59 | @Override
60 | protected void onStart() {
61 | super.onStart();
62 |
63 | if (findViewById(R.id.elementDetails) != null) {
64 | mTwoPane = true;
65 | final ElementListFragment fragment = (ElementListFragment) getSupportFragmentManager()
66 | .findFragmentById(R.id.elementList);
67 | if (fragment != null) {
68 | fragment.setActivateOnItemClick(true);
69 | }
70 | }
71 | }
72 |
73 | public void onItemSelected(int id) {
74 | if(mTwoPane) {
75 | final Fragment fragment = ElementDetailsFragment.getInstance(id);
76 | getSupportFragmentManager().beginTransaction().replace(R.id.elementDetails, fragment)
77 | .commit();
78 | } else {
79 | final Intent intent = new Intent(this, ElementDetailsActivity.class);
80 | intent.putExtra(ElementDetailsActivity.EXTRA_ATOMIC_NUMBER, id);
81 | startActivity(intent);
82 | }
83 | }
84 |
85 | @Override
86 | public boolean onCreateOptionsMenu(Menu menu) {
87 | final MenuInflater inflater = getMenuInflater();
88 | inflater.inflate(R.menu.element_list, menu);
89 | inflater.inflate(R.menu.common, menu);
90 | return super.onCreateOptionsMenu(menu);
91 | }
92 |
93 | @Override
94 | public boolean onOptionsItemSelected(MenuItem item) {
95 | final int id = item.getItemId();
96 | switch(id) {
97 | case android.R.id.home:
98 | case R.id.menu_table:
99 | finish();
100 | return true;
101 | }
102 | return CommonMenuHandler.handleSelect(this, id) || super.onOptionsItemSelected(item);
103 | }
104 | }
105 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/ElementaryApplication.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey;
24 |
25 | import android.app.Application;
26 |
27 | import com.ultramegatech.ey.util.ElementUtils;
28 | import com.ultramegatech.ey.util.PreferenceUtils;
29 |
30 | /**
31 | * The Application object representing the app.
32 | *
33 | * @author Steve Guidetti
34 | */
35 | public class ElementaryApplication extends Application {
36 | @Override
37 | public void onCreate() {
38 | super.onCreate();
39 | PreferenceUtils.setup(this);
40 | ElementUtils.setup(this);
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/SettingsActivity.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey;
24 |
25 | import android.annotation.SuppressLint;
26 | import android.content.Intent;
27 | import android.content.SharedPreferences;
28 | import android.os.Bundle;
29 | import android.view.MenuItem;
30 |
31 | import androidx.annotation.NonNull;
32 | import androidx.annotation.Nullable;
33 | import androidx.appcompat.app.AppCompatActivity;
34 | import androidx.preference.PreferenceManager;
35 |
36 | import com.ultramegatech.ey.util.PreferenceUtils;
37 |
38 | public class SettingsActivity extends AppCompatActivity
39 | implements SharedPreferences.OnSharedPreferenceChangeListener {
40 | @Override
41 | protected void onCreate(@Nullable Bundle savedInstanceState) {
42 | final boolean darkTheme = PreferenceUtils.getPrefDarkTheme();
43 | setTheme(darkTheme ? R.style.DarkTheme_Preferences : R.style.LightTheme_Preferences);
44 |
45 | super.onCreate(savedInstanceState);
46 |
47 | final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
48 | prefs.registerOnSharedPreferenceChangeListener(this);
49 |
50 | if (savedInstanceState == null) {
51 | getSupportFragmentManager().beginTransaction()
52 | .add(android.R.id.content, new SettingsFragment()).commit();
53 | }
54 | }
55 |
56 | @Override
57 | public void onDestroy() {
58 | super.onDestroy();
59 | final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
60 | prefs.unregisterOnSharedPreferenceChangeListener(this);
61 | }
62 |
63 | @Override
64 | public boolean onOptionsItemSelected(@NonNull MenuItem item) {
65 | if (item.getItemId() == android.R.id.home) {
66 | finish();
67 | return true;
68 | }
69 |
70 | return super.onOptionsItemSelected(item);
71 | }
72 |
73 | @SuppressLint("ApplySharedPref")
74 | @Override
75 | public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
76 | if(PreferenceUtils.KEY_DARK_THEME.equals(key)) {
77 | sharedPreferences.edit().commit();
78 |
79 | final Intent intent = new Intent(this, SettingsActivity.class);
80 | intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
81 | startActivity(intent);
82 |
83 | Runtime.getRuntime().exit(0);
84 | }
85 | }
86 | }
87 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/SettingsFragment.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey;
24 |
25 | import android.content.Context;
26 | import android.os.Bundle;
27 |
28 | import androidx.annotation.NonNull;
29 | import androidx.preference.ListPreference;
30 | import androidx.preference.PreferenceFragmentCompat;
31 |
32 | import com.ultramegatech.ey.util.PreferenceUtils;
33 | import com.ultramegatech.ey.util.SubtextValuesHelper;
34 |
35 | /**
36 | * Simple implementation of PreferenceActivity for setting general application settings.
37 | *
38 | * @author Steve Guidetti
39 | */
40 | public class SettingsFragment extends PreferenceFragmentCompat
41 | implements SubtextValuesHelper.OnSubtextValuesChangedListener {
42 | /**
43 | * The Preference for setting the block subtext value
44 | */
45 | private ListPreference mSubtextValuePreference;
46 |
47 | @Override
48 | public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
49 | setPreferencesFromResource(R.xml.preferences, rootKey);
50 | mSubtextValuePreference = findPreference(PreferenceUtils.KEY_SUBTEXT_VALUE);
51 |
52 | final Context context = getContext();
53 | if (context != null) {
54 | final SubtextValuesHelper subtextValuesHelper = new SubtextValuesHelper(getContext(), this);
55 | mSubtextValuePreference.setEntries(subtextValuesHelper.getList());
56 | }
57 | }
58 |
59 | @Override
60 | public void onSubtextValuesChanged(@NonNull SubtextValuesHelper helper) {
61 | mSubtextValuePreference.setEntries(helper.getList());
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/provider/Isotope.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey.provider;
24 |
25 | import android.os.Build;
26 | import android.text.Html;
27 | import android.text.Spanned;
28 |
29 | import androidx.annotation.NonNull;
30 | import androidx.annotation.Nullable;
31 |
32 | import java.util.Locale;
33 |
34 | /**
35 | * Represents an isotope of an element.
36 | *
37 | * @author Steve Guidetti
38 | */
39 | public class Isotope {
40 | /**
41 | * The mass number of the isotope
42 | */
43 | private final int number;
44 |
45 | /**
46 | * The symbol for the isotope
47 | */
48 | @NonNull
49 | private final String symbol;
50 |
51 | /**
52 | * The relative atomic mass of the isotope
53 | */
54 | public final double mass;
55 |
56 | /**
57 | * The isotopic composition of the isotope
58 | */
59 | @Nullable
60 | public final Double ic;
61 |
62 | /**
63 | * @param number The mass number of the isotope
64 | * @param symbol The symbol for the isotope
65 | * @param mass The relative atomic mass of the isotope
66 | * @param ic The isotopic composition of the isotope
67 | */
68 | Isotope(int number, @NonNull String symbol, double mass, @Nullable Double ic) {
69 | this.number = number;
70 | this.symbol = symbol;
71 | this.mass = mass;
72 | this.ic = ic;
73 | }
74 |
75 | /**
76 | * Get the symbol representing the isotope, which is the mass number in superscript followed by
77 | * the symbol.
78 | *
79 | * @return The symbol representing the isotope
80 | */
81 | @NonNull
82 | public Spanned getSymbol() {
83 | final String html =
84 | String.format(Locale.US, "%d%s", number, symbol);
85 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
86 | return Html.fromHtml(html, 0);
87 | }
88 | //noinspection deprecation
89 | return Html.fromHtml(html);
90 | }
91 | }
92 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/util/CommonMenuHandler.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey.util;
24 |
25 | import android.content.Intent;
26 |
27 | import androidx.annotation.NonNull;
28 | import androidx.fragment.app.FragmentActivity;
29 |
30 | import com.ultramegatech.ey.AboutFragment;
31 | import com.ultramegatech.ey.R;
32 | import com.ultramegatech.ey.SettingsActivity;
33 |
34 | /**
35 | * Handles menu items shared by all Activities.
36 | *
37 | * @author Steve Guidetti
38 | */
39 | public class CommonMenuHandler {
40 | /**
41 | * Select an action based on a menu selection.
42 | *
43 | * @param activity The calling Activity
44 | * @param id Menu item ID
45 | * @return Whether the menu selection was handled
46 | */
47 | public static boolean handleSelect(@NonNull FragmentActivity activity, int id) {
48 | switch(id) {
49 | case R.id.menu_settings:
50 | activity.startActivity(new Intent(activity, SettingsActivity.class));
51 | return true;
52 | case R.id.menu_about:
53 | AboutFragment.showDialog(activity.getSupportFragmentManager());
54 | return true;
55 | }
56 | return false;
57 | }
58 | }
59 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/util/UnitUtils.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey.util;
24 |
25 | import androidx.annotation.NonNull;
26 |
27 | /**
28 | * Utility to convert values between different units.
29 | *
30 | * @author Steve Guidetti
31 | */
32 | public class UnitUtils {
33 | /**
34 | * Convert temperature value from Kelvin to degrees Celsius.
35 | *
36 | * @param k Value in Kelvin
37 | * @return Value in degrees Celsius
38 | */
39 | @NonNull
40 | public static Double KtoC(@NonNull Double k) {
41 | return k - 273.15;
42 | }
43 |
44 | /**
45 | * Convert temperature value from Kelvin to degrees Fahrenheit.
46 | *
47 | * @param k Value in Kelvin
48 | * @return Value in degrees Fahrenheit
49 | */
50 | @NonNull
51 | public static Double KtoF(@NonNull Double k) {
52 | return k * 9.0 / 5 - 459.67;
53 | }
54 | }
55 |
--------------------------------------------------------------------------------
/app/src/main/java/com/ultramegatech/ey/widget/PeriodicTableBlock.java:
--------------------------------------------------------------------------------
1 | /*
2 | * The MIT License (MIT)
3 | * Copyright © 2012 Steve Guidetti
4 | *
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy
6 | * of this software and associated documentation files (the “Software”), to deal
7 | * in the Software without restriction, including without limitation the rights
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | * copies of the Software, and to permit persons to whom the Software is
10 | * furnished to do so, subject to the following conditions:
11 | *
12 | * The above copyright notice and this permission notice shall be included in
13 | * all copies or substantial portions of the Software.
14 | *
15 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | * THE SOFTWARE.
22 | */
23 | package com.ultramegatech.ey.widget;
24 |
25 | import androidx.annotation.NonNull;
26 |
27 | import com.ultramegatech.ey.provider.Element;
28 |
29 | /**
30 | * Stores data for a single block on a PeriodicTableView.
31 | *
32 | * @author Steve Guidetti
33 | */
34 | public class PeriodicTableBlock {
35 | /**
36 | * The Element
37 | */
38 | @NonNull
39 | public final Element element;
40 |
41 | /**
42 | * Text to display below the symbol
43 | */
44 | public String subtext;
45 |
46 | /**
47 | * Block background color
48 | */
49 | public int color = 0xFFCCCCCC;
50 |
51 | /**
52 | * Grid position
53 | */
54 | int row;
55 | int col;
56 |
57 | /**
58 | * @param element The Element
59 | */
60 | public PeriodicTableBlock(@NonNull Element element) {
61 | this.element = element;
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/app/src/main/play/contactEmail:
--------------------------------------------------------------------------------
1 | elementary@ultramegasoft.com
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementar ist ein einfaches Periodensystem und Element-Referenzanwendung.
2 |
3 | Eigenschaften:
4 | - Zoomable Periodensystems der Elemente
5 | - Tippen Sie auf ein Element, einige grundlegende Details zu sehen
6 | - Einfacher Zugriff auf Wikipedia und ein YouTube-Video auf dem Element
7 | - Free mit absolut keine Werbung!
8 |
9 | Videos von Periodic Videos zur Verfügung gestellt (http://www.periodicvideos.com/)
10 |
11 | Unter der MIT-Lizenz
12 | Quelle verfügbar unter: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/keywords:
--------------------------------------------------------------------------------
1 | Wissenschaft
2 | Chemie
3 | Elements
4 | Periodensystem
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Open-Source-Periodensystem der Elemente und Elementverweis App.
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/de/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/de/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Periodensystem
--------------------------------------------------------------------------------
/app/src/main/play/de/whatsnew:
--------------------------------------------------------------------------------
1 | - Isotopenzusammensetzungsspalte zum Isotopendiagramm hinzugefügt
2 | - Niederländische Übersetzung hinzugefügt
3 | - Italienische Übersetzung aktualisiert
--------------------------------------------------------------------------------
/app/src/main/play/defaultLanguage:
--------------------------------------------------------------------------------
1 | en-US
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementary is a simple Periodic Table and element reference application.
2 |
3 | Features:
4 | - Zoomable Periodic Table of the Elements
5 | - Tap an element to view some basic details
6 | - Easy access to Wikipedia and a YouTube video on the element
7 | - Free with absolutely no ads!
8 |
9 | Videos provided by Periodic Videos (http://www.periodicvideos.com/)
10 |
11 | Licensed under The MIT License
12 | Source available at: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/icon/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/icon/logo.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/keywords:
--------------------------------------------------------------------------------
1 | Science
2 | Chemistry
3 | Elements
4 | Periodic Table
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/promoGraphic/promo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/promoGraphic/promo.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Open-source Periodic Table of the Elements and element reference app.
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/en-US/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/en-US/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Periodic Table
--------------------------------------------------------------------------------
/app/src/main/play/en-US/whatsnew:
--------------------------------------------------------------------------------
1 | - Added isotopic composition column to the isotopes chart
2 | - Added Dutch translation
3 | - Updated Italian translation
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Primaria es una aplicación de referencia Tabla Periódica y un elemento simple.
2 |
3 | caracteristicas:
4 | - Ampliable Tabla Periódica de los Elementos
5 | - Toque en un elemento para ver algunos detalles básicos
6 | - Fácil acceso a Wikipedia y un vídeo de YouTube en el elemento
7 | - Libre sin ningún tipo de anuncios!
8 |
9 | Videos proporcionados por la Periodic Videos (http://www.periodicvideos.com/)
10 |
11 | Licenciado bajo la licencia MIT
12 | Fuente disponible en: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/keywords:
--------------------------------------------------------------------------------
1 | Ciencia
2 | Química
3 | Elementos
4 | Tabla periódica
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/shortdescription:
--------------------------------------------------------------------------------
1 | De código abierto Tabla Periódica de los Elementos y referencia del elemento.
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/es/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/es/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Tabla Periódica
--------------------------------------------------------------------------------
/app/src/main/play/es/whatsnew:
--------------------------------------------------------------------------------
1 | - Se agregó una columna de composición isotópica a la tabla de isótopos
2 | - Se agregó traducción al holandés
3 | - Traducción italiana actualizada
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementary est un tableau périodique simple, et un outil référançant les élements ainsi que leurs principales caractéristiques.
2 |
3 | Fonctionnalités :
4 | - Tableau périodique des éléments zoomable
5 | - Cliquez sur un élément pour visualiser les détails basiques de l'élement (ex : température de fusion, densité...)
6 | - Pour chaque élément, un bouton permettant d'accéder à la page Wikipédia française dédiée à l'élément, et un autre bouton permettant de visualiser une vidéo à propos de l'élément
7 | - Gratuit, libre, open-source et sans aucune publicité!
8 |
9 | Les vidéos sont fournies par le site Periodic Videos (http://www.periodicvideos.com/)
10 |
11 | Application distribuée sous les termes de la licence MIT.
12 | Les sources de cette application sont disponibles à l'adresse : https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/keywords:
--------------------------------------------------------------------------------
1 | Science
2 | Chimie
3 | Éléments
4 | Tableau périodique
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Tableau périodique des éléments et référence des éléments.
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/fr/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/fr/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Tableau Périodique
--------------------------------------------------------------------------------
/app/src/main/play/fr/whatsnew:
--------------------------------------------------------------------------------
1 | - Ajout d'une colonne de composition isotopique au tableau des isotopes
2 | - Ajout de la traduction néerlandaise
3 | - Traduction italienne mise à jour
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementare è una semplice applicazione di riferimento Tabella ed elementi periodica.
2 |
3 | Caratteristiche:
4 | - Zoomable Tavola periodica degli elementi
5 | - Toccare un elemento per visualizzare alcuni dettagli di base
6 | - Facile accesso a Wikipedia e un video di YouTube sull'elemento
7 | - Free con assolutamente nessun annuncio!
8 |
9 | Video forniti da Periodic Videos (http://www.periodicvideos.com/)
10 |
11 | Rilasciato sotto la licenza MIT
12 | Fonte disponibile all'indirizzo: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/keywords:
--------------------------------------------------------------------------------
1 | Scienza
2 | Chimica
3 | Elementi
4 | Tavola periodica
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Open-source Tavola Periodica degli Elementi e app elemento di riferimento.
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/it/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/it/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Tavola periodica
--------------------------------------------------------------------------------
/app/src/main/play/it/whatsnew:
--------------------------------------------------------------------------------
1 | - Aggiunta la colonna di composizione isotopica alla tabella degli isotopi
2 | - Aggiunta la traduzione olandese
3 | - Traduzione italiana aggiornata
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementary はシンプルな周期表と元素を参照するアプリケーションです。
2 |
3 | 機能:
4 | - ズームできる元素の周期表
5 | - 元素をタップすると詳細を表示します
6 | - Wikipedia と、元素に関する YouTube 動画に簡単にアクセス
7 | - 無料で完全に広告はありません!
8 |
9 | ビデオは Periodic Videos によって提供されます (http://www.periodicvideos.com/)
10 |
11 | MIT ライセンスに基づいてライセンスされます
12 | ソースは以下で利用できます: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/keywords:
--------------------------------------------------------------------------------
1 | 科学
2 | 化学
3 | 元素
4 | 周期表
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/shortdescription:
--------------------------------------------------------------------------------
1 | オープンソースの、元素の周期表と元素を参照するアプリ。
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ja/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/ja/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: 周期表
--------------------------------------------------------------------------------
/app/src/main/play/ja/whatsnew:
--------------------------------------------------------------------------------
1 | -同位体チャートに同位体組成列を追加
2 | -オランダ語の翻訳を追加
3 | -イタリア語翻訳の更新
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementary er en enkel app med det periodiske system og grunnstoffreferanser.
2 |
3 | Funksjoner:
4 | - Det periodiske system er zoombart
5 | - Trykk på et grunnstoff for å vise noen grunnleggende detaljer
6 | - Lett tilgang til Wikipedia og en YouTube-video om grunnstoffet
7 | - Gratis og helt uten reklame!
8 |
9 | Videoer levert av Periodic Videos (http://www.periodicvideos.com/)
10 |
11 | Lisensiert under The MIT License
12 | Kildekoden tilgjengelig på: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/keywords:
--------------------------------------------------------------------------------
1 | Vitenskap
2 | Kjemi
3 | Grunnstoffer
4 | Periodiske system
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/shortdescription:
--------------------------------------------------------------------------------
1 | En åpen kildekode-app med det periodiske system og grunnstoffreferanser.
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nb/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/nb/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Det periodiske system
--------------------------------------------------------------------------------
/app/src/main/play/nb/whatsnew:
--------------------------------------------------------------------------------
1 | - Lagt isotopkomposisjonskolonne til isotopdiagrammet
2 | - Lagt til nederlandsk oversettelse
3 | - Oppdatert italiensk oversettelse
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementar is een eenvoudig periodiek systeem der elementen.
2 |
3 | Eigenschappen:
4 | - Zoombaar periodiek systeem der elementen
5 | - Tik op een element om alle details te zien
6 | - Eenvoudige link met Wikipedia en een YouTube-Video over het element
7 | - Vrij met absoluut geen reclame!
8 |
9 | Videos van de elementen beschikbaar gesteld door Periodic videos(http://www.periodicvideos.com/)
10 |
11 | Onder MIT licentie beschikbaar
12 | Bron beschikbaar via: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/keywords:
--------------------------------------------------------------------------------
1 | Wetenschap
2 | Chemie
3 | Elementen
4 | Periodiek systeem
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Open-Source periodiek systeem der elementen App.
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/nl/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/nl/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Periodiek systeem
--------------------------------------------------------------------------------
/app/src/main/play/nl/whatsnew:
--------------------------------------------------------------------------------
1 | - Isotopensamenstellingskolom toegevoegd aan de isotopenkaart
2 | - Nederlandse vertaling toegevoegd
3 | - Bijgewerkte Italiaanse vertaling
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementary é um aplicativo de Tabela Periódica que apresenta informações básicas sobre os elementos.
2 |
3 | Funcionalidades:
4 | - Tabela Periódica com ajustes de zoom
5 | - Toque um elemento para ver algumas informações básicas
6 | - Acesso fácil à Wikipédia e vídeo do YouTube sobre o elemento
7 | - Grátis e sem nenhuma propaganda!
8 |
9 | Vídeos fornecidos por Periodic Videos (http://www.periodicvideos.com/)
10 |
11 | Licenciado pela MIT License
12 | Código-fonte disponível em: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/keywords:
--------------------------------------------------------------------------------
1 | Ciência
2 | Química
3 | Elementos
4 | Tabela Periódica
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Um aplicativo de código aberto que apresenta a Tabela Periódica dos Elementos.
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/pt-BR/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Tabela Periódica
--------------------------------------------------------------------------------
/app/src/main/play/pt-BR/whatsnew:
--------------------------------------------------------------------------------
1 | - Adicionada coluna de composição isotópica ao gráfico de isótopos
2 | - Tradução holandesa adicionada
3 | - Tradução italiana atualizada
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/featureGraphic/feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/featureGraphic/feature.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Периодическая таблица элементов с открытыми исходными кодами.
2 |
3 | Особенности:
4 | - масштабируемая периодическая таблица элементов
5 | - нажмите на элемент для получения базовой информации
6 | - лёгкий доступ к Wikipedia и YouTube видео в описании элемента
7 | - бесплатно и без рекламы!
8 |
9 | видео предоставляется Periodic Videos (http://www.periodicvideos.com/)
10 |
11 | Лицензия The MIT License
12 | Исходные коды доступны: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/keywords:
--------------------------------------------------------------------------------
1 | Наука
2 | Химия
3 | Элементы
4 | Периодическая таблица
5 | Периодическая система Менделеева
6 | Менделеев
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/sevenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/sevenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/sevenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/sevenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/sevenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/sevenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Периодическая таблица элементов с открытыми исходными кодами.
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/tenInchScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/tenInchScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/tenInchScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/tenInchScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/tenInchScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/play/ru/listing/tenInchScreenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/ru/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: периодическая таблица
--------------------------------------------------------------------------------
/app/src/main/play/ru/whatsnew:
--------------------------------------------------------------------------------
1 | - Добавлен столбец изотопной композиции в таблицу изотопов.
2 | - Добавлен голландский перевод
3 | - Обновлен итальянский перевод
--------------------------------------------------------------------------------
/app/src/main/play/tr/listing/fulldescription:
--------------------------------------------------------------------------------
1 | Elementary basit bir Periyodik Tablo ve element referansı uygulamasıdır.
2 |
3 | Özellikler:
4 | - Elementlerin yakınlaştırılabilir Periyodik Tablosu
5 | - Bazı basit detayları görüntülemek için bir elemente dokunun
6 | - Element üstünde Vikipedi'ye ve bir YouTube videosuna kolay erişim
7 | - Kesinlikle reklamsız ve ücretsiz!
8 |
9 | Videolar Periodic Videos tarafından sağlanmaktadır (http://www.periodicvideos.com/)
10 |
11 | MIT Lisansı altında lisanslanmıştır
12 | Kaynak şurada mevcuttur: https://github.com/ultramega/elementary
--------------------------------------------------------------------------------
/app/src/main/play/tr/listing/keywords:
--------------------------------------------------------------------------------
1 | Bilim
2 | Kimya
3 | Elementler
4 | Periyodik Tablo
--------------------------------------------------------------------------------
/app/src/main/play/tr/listing/shortdescription:
--------------------------------------------------------------------------------
1 | Açık kaynak, Elementlerin Periyodik Tablosu ve element referansı uygulaması.
--------------------------------------------------------------------------------
/app/src/main/play/tr/listing/title:
--------------------------------------------------------------------------------
1 | Elementary: Periyodik Tablo
--------------------------------------------------------------------------------
/app/src/main/play/tr/whatsnew:
--------------------------------------------------------------------------------
1 | - İzotoplar grafiğine izotopik bileşim sütunu eklendi
2 | - Hollandaca çeviri eklendi
3 | - İtalyanca çeviri güncellendi
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_video_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_video_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_video_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_video_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_wikipedia_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_wikipedia_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_wikipedia_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/ic_wikipedia_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_video_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_video_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_video_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_video_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_wikipedia_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_wikipedia_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_wikipedia_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/ic_wikipedia_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-mdpi/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_video_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_video_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_video_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_video_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_wikipedia_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_wikipedia_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_wikipedia_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/ic_wikipedia_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_video_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_video_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_video_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_video_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_wikipedia_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_wikipedia_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_wikipedia_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/ic_wikipedia_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_video_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_video_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_video_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_video_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_wikipedia_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_wikipedia_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_wikipedia_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/ic_wikipedia_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/app/src/main/res/drawable-xxxhdpi/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/layout-land/fragment_element_details.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
31 |
32 |
37 |
38 |
39 |
40 |
51 |
52 |
60 |
61 |
69 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-normal/ptable_controls.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
34 |
35 |
42 |
43 |
46 |
47 |
52 |
53 |
59 |
60 |
63 |
64 |
69 |
70 |
77 |
78 |
--------------------------------------------------------------------------------
/app/src/main/res/layout-w600dp/activity_element_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
34 |
35 |
40 |
41 |
42 |
43 |
48 |
49 |
50 |
56 |
57 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_element_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
29 |
30 |
31 |
32 |
37 |
38 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_periodic_table.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
30 |
31 |
38 |
39 |
46 |
47 |
54 |
55 |
63 |
64 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/element_block.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
33 |
34 |
42 |
43 |
53 |
54 |
63 |
64 |
76 |
77 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/element_list_head.xml:
--------------------------------------------------------------------------------
1 |
23 |
29 |
30 |
41 |
42 |
48 |
49 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/element_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/element_list_item_content.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 |
30 |
31 |
41 |
42 |
49 |
50 |
51 |
60 |
61 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_element_details.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
30 |
31 |
39 |
40 |
45 |
46 |
47 |
48 |
52 |
53 |
61 |
62 |
70 |
71 |
72 |
73 |
74 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/isotope_table_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
28 |
29 |
34 |
35 |
36 |
37 |
41 |
42 |
43 |
44 |
49 |
50 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/ptable_controls.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
34 |
35 |
42 |
43 |
46 |
47 |
52 |
53 |
59 |
60 |
63 |
64 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/common.xml:
--------------------------------------------------------------------------------
1 |
23 |
37 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/element_list.xml:
--------------------------------------------------------------------------------
1 |
23 |
34 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/periodic_table.xml:
--------------------------------------------------------------------------------
1 |
23 |
34 |
--------------------------------------------------------------------------------
/app/src/main/res/values-de/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - Nichtmetalle
27 | - Edelgase
28 | - Alkalimetalle
29 | - Erdalkalimetalle
30 | - Halbmetalle
31 | - Halogene
32 | - Metalle
33 | - Übergangsmetalle
34 | - Lanthanoide
35 | - Actinoide
36 |
37 |
38 | - Serie
39 | - Block
40 |
41 |
42 | - Atommasse
43 | - Dichte (g/cm³)
44 | - Schmelzpunkt (K)
45 | - Siedepunkt (K)
46 | - Spezifisch Hitze (J/g·K)
47 | - Elektronegativität (Pauling)
48 | - Vorkommen (mg/kg)
49 |
50 |
51 | - Ordnungszahl
52 | - Name
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-de/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 | Über Elementary
26 | Element Details für %s
27 | Periodensystem der Elemente
28 | Liste aller Elemente
29 | Elementary Einstellungen
30 | Sortieren nach
31 |
32 | Video
33 | Wikipedia
34 | Sortieren
35 | Zoom
36 |
37 | Information
38 | Einstellungen
39 | Listen-Ansicht
40 | Tabellen-Ansicht
41 |
42 | Dunkles Theme
43 | Maßeinheit
44 | Bevorzugtes Einheitensystem
45 | Elementfarben
46 | Bevorzugtes Farbschema
47 | Blockwert
48 | Der unter dem Elementsymbol angezeigte Wert
49 | Tabellenansicht Steuerung
50 | Zeigen Sie die Bedienelemente für das Periodensystem in der Tabellenansicht
51 |
52 | Ordnungszahl
53 | Symbol
54 | Name
55 | Atomgewicht
56 | Serie
57 | Gruppe, Periode, Block
58 | Elektronenkonfiguration
59 | Elektronen pro Schale
60 | Dichte
61 | Schmelzpunkt
62 | Siedepunkt
63 | Spezifisch Hitze
64 | Elektronegativität
65 | Vorkommen
66 | Gemeinsame Isotope
67 | Isotopenzusammensetzung
68 |
69 | Anzeigen
70 | Färben nach
71 |
72 | Nach Name oder Symbol sortieren
73 |
74 | Version
75 | Webseite
76 | Lizenz
77 | Quellen
78 |
79 | Gruppe
80 | Periode
81 | Block
82 |
83 | unbekannt
84 |
85 |
--------------------------------------------------------------------------------
/app/src/main/res/values-es/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - No metal
27 | - Gas noble
28 | - Alcalino
29 | - Alcalinotérreo
30 | - Metaloide
31 | - Halógeno
32 | - Metal
33 | - Metal de transición
34 | - Lantánido
35 | - Actínido
36 |
37 |
38 | - Serie Química
39 | - Bloque
40 |
41 |
42 | - Masa atómica
43 | - Densidad (g/cm³)
44 | - Punto de fusión (K)
45 | - Punto de ebullición (K)
46 | - Calor especifico (J/g·K)
47 | - Electronegatividad (Pauling)
48 | - Abundancia (mg/kg)
49 |
50 |
51 | - Número atómico
52 | - Nombre de elemento
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-es/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 | Acerca de Elementary
26 | Detalles elemento por %s
27 | Tabla Periódica de los Elementos
28 | Lista de elementos
29 | Ajustes de Elementary
30 | Ordenar por
31 |
32 | Ver video
33 | Wikipedia
34 | Clase
35 | Enfocar
36 |
37 | Información
38 | Ajustes
39 | Vista de la lista
40 | Vista de la tabla
41 |
42 | Tema oscuro
43 | Unidades temperatura
44 | Unidades utilizan para mostrar los valores de temperatura
45 | Colores elemento
46 | Propiedad utiliza para dar color a los elementos
47 | Valor de bloque
48 | Valor a mostrar bajo el símbolo del elemento
49 | Controles de Tabla Periódica
50 | Mostrar los controles de Tabla Periódica en la vista de tabla
51 |
52 | Número atómico
53 | Símbolo
54 | Nombre
55 | Peso atomico
56 | Serie química
57 | Grupo, período, bloque
58 | Configuración electrónica
59 | Electrones por nivel
60 | Densidad
61 | Punto de fusión
62 | Punto de ebullición
63 | Calor especifico
64 | Electronegatividad
65 | Abundancia
66 | Isótopos comunes
67 | Composición isotópica
68 |
69 | Mostrar
70 | Colorear por
71 |
72 | Filtrar por nombre o símbolo
73 |
74 | Versión
75 | Sitio Web
76 | Licencia
77 | Fuentes
78 |
79 | grupo
80 | período
81 | bloque
82 |
83 | desconocido
84 |
85 |
--------------------------------------------------------------------------------
/app/src/main/res/values-fr/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - Non-métaux
27 | - Gaz nobles
28 | - Métaux alcalins
29 | - Métaux alcalino-terreux
30 | - Métalloïdes
31 | - Halogènes
32 | - Métaux
33 | - Métaux de transition
34 | - Lanthanides
35 | - Actinides
36 |
37 |
38 | - Famille
39 | - Bloc
40 |
41 |
42 | - Masse atomique
43 | - Densité (g/cm³)
44 | - Point de fusion (K)
45 | - Point d\'ebullition (K)
46 | - Chaleur spécifique (J/g·K)
47 | - Électronégativité (Pauling)
48 | - Abondance (mg/kg)
49 |
50 |
51 | - Numéro atomique
52 | - Nom de l\'élément
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-fr/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 | À propos de Elementary
26 | Détails de l\'élément pour %s
27 | Tableau Périodique des Éléments
28 | Liste des éléments
29 | Paramètres de Elementary
30 | Trier par
31 |
32 | Regarder la vidéo
33 | Wikipédia
34 | Trier
35 | Zoom
36 |
37 | Information
38 | Paramètres
39 | Liste
40 | Tableau
41 |
42 | Thème sombre
43 | Unité de température
44 | Unité utilisée pour afficher les températures
45 | Couleur des éléments
46 | Propriété utilisée pour colorer les éléments
47 | Valeur du bloc
48 | La valeur à afficher sous le symbole de l\'élément
49 | Contrôles du Tableau Périodique
50 | Afficher les contrôles du Tableau Périodique lorsque le tableau est affiché
51 |
52 | Numéro atomique
53 | Symbole
54 | Nom
55 | Masse atomique
56 | Famille
57 | Groupe, période, bloc
58 | Config. électronique
59 | Électrons par couche
60 | Densité
61 | Point de fusion
62 | Point d\'ébullition
63 | Chaleur spécifique
64 | Électronégativité
65 | Abondance
66 | Isotopes communs
67 | Composition isotopique
68 |
69 | Afficher
70 | Colorer par
71 |
72 | Filtrer par nom ou symbole
73 |
74 | Version
75 | Site Web
76 | Licence
77 | Sources
78 |
79 | groupe
80 | période
81 | bloc
82 |
83 | inconnu
84 |
85 |
--------------------------------------------------------------------------------
/app/src/main/res/values-it/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - Non metalli
27 | - Gas nobili
28 | - Metalli alcalini
29 | - Metalli alcalino-terrosi
30 | - Semimetalli
31 | - Alogeni
32 | - Metalli
33 | - Metalli di transizione
34 | - Lantanidi
35 | - Attinidi
36 |
37 |
38 | - Serie chimica
39 | - Blocco
40 |
41 |
42 | - Massa atomica
43 | - Densità (g/cm³)
44 | - Temperatura di fusione (K)
45 | - Temperatura di ebollizione (K)
46 | - Calore specifico (J/g·K)
47 | - Elettronegatività (Pauling)
48 | - Abondanza (mg/kg)
49 |
50 |
51 | - Numero atomico
52 | - Nome dell\'elemento
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-ja/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - 非金属
27 | - 希ガス
28 | - アルカリ金属
29 | - アルカリ土類金属
30 | - 半金属
31 | - ハロゲン
32 | - 金属
33 | - 遷移金属
34 | - ランタノイド (希土類)
35 | - アクチノイド
36 |
37 |
38 | - 分類
39 | - ブロック
40 |
41 |
42 | - 原子量
43 | - 密度 (g/cm³)
44 | - 融点 (K)
45 | - 沸点 (K)
46 | - 比熱 (J/g·K)
47 | - 電気陰性度 (ポーリング)
48 | - 存在度 (mg/kg)
49 |
50 |
51 | - 原子番号
52 | - 元素名
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-ja/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 | Elementary について
26 | %s 元素の詳細
27 | 元素の周期表
28 | 周期表
29 | Elementary 設定
30 | 並び順
31 |
32 | ビデオを見る
33 | Wikipedia
34 | 並び替え
35 | ズーム
36 |
37 | アプリについて
38 | 設定
39 | 一覧表示
40 | 表表示
41 |
42 | ダークテーマ
43 | 温度単位
44 | 温度の表示に使用される単位
45 | 元素の色
46 | 元素の色付けに使用するプロパティ
47 | ブロック値
48 | 元素記号の下に表示する値
49 | 周期表のコントロール
50 | 表表示で周期表のコントロールを表示します
51 |
52 | 原子番号
53 | 記号
54 | 名前
55 | 原子量
56 | 分類
57 | 族、周期、ブロック
58 | 電子配置
59 | 亜殻
60 | 密度
61 | 融点
62 | 沸点
63 | 比熱
64 | 電気陰性度
65 | 存在度
66 | 共通同位体
67 | 同位体組成
68 |
69 | 表示
70 | 色
71 |
72 | 名前または記号でフィルター
73 |
74 | バージョン
75 | Webサイト
76 | ライセンス
77 | ソース
78 |
79 | 族
80 | 周期
81 | ブロック
82 |
83 | 不明
84 |
85 |
--------------------------------------------------------------------------------
/app/src/main/res/values-nb/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - Ikke-metall
27 | - Edelgass
28 | - Alkalimetall
29 | - Jordalkalimetall
30 | - Halvmetall
31 | - Halogen
32 | - Metall
33 | - Overgangsmetall
34 | - Lantanoide
35 | - Aktinoide
36 |
37 |
38 | - Serie
39 | - Blokk
40 |
41 |
42 | - Atomvekt
43 | - Tetthet (g/cm³)
44 | - Smeltepunkt (K)
45 | - Kokepunkt (K)
46 | - Spesifikk varme (J/g·K)
47 | - Elektronegativitet (Pauling)
48 | - Forekomst (mg/kg)
49 |
50 |
51 | - Atomnummer
52 | - Grunnstoffnavn
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-nb/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 | Om Elementary
26 | Grunnstoffdetaljer for %s
27 | Det periodiske system
28 | Grunnstoffliste
29 | Elementary-innstillinger
30 | Sorter etter
31 |
32 | Video
33 | Wikipedia
34 | Sorter
35 | Zoom
36 |
37 | Om
38 | Innstillinger
39 | Listevisning
40 | Tabellvisning
41 |
42 | Mørkt tema
43 | Temperaturenhet
44 | Enheter brukt til å vise temperaturverdier
45 | Grunnstoffarger
46 | Egenskap brukt til å farge grunnstoffene
47 | Blokkverdi
48 | Verdien å vise under grunnstoffsymbolet
49 | Kontroller for Det periodiske system
50 | Vis betjeningskontroller for Det periodiske system i tabellvisningen
51 |
52 | Atomnummer
53 | Symbol
54 | Navn
55 | Atomvekt
56 | Serie
57 | Gruppe, periode, blokk
58 | Elektronkonfigurasjon
59 | Elektroner per skall
60 | Tetthet
61 | Smeltepunkt
62 | Kokepunkt
63 | Spesifikk varme
64 | Elektronegativitet
65 | Forekomst
66 | Vanlige isotoper
67 | Isotopisk sammensetning
68 |
69 | Vis
70 | Farg etter
71 |
72 | Filtrer etter navn eller symbol
73 |
74 | Versjon
75 | Nettsted
76 | Lisens
77 | Kilder
78 |
79 | gruppe
80 | periode
81 | blokk
82 |
83 | ukjent
84 |
85 |
--------------------------------------------------------------------------------
/app/src/main/res/values-nl/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
26 |
27 |
28 | - Niet-metalen
29 | - Noble gas
30 | - Alkalimetalen
31 | - Aardalkalimetalen
32 | - metalloïden
33 | - Halogenen
34 | - Hoofdgroepmetalen
35 | - Overgangsmetalen
36 | - Lanthaniden
37 | - Actiniden
38 |
39 |
40 | - Reeks
41 | - Blok
42 |
43 |
44 | - Atoom massa
45 | - Dichtheid (g/cm³)
46 | - Smeltpunt (K)
47 | - Kookpunt (K)
48 | - Soortelijke warmte (J/g·K)
49 | - Elektronegativiteit (Pauling)
50 | - Abundantie (mg/kg)
51 |
52 |
53 | - Atoomnummer
54 | - Element naam
55 |
56 |
57 |
--------------------------------------------------------------------------------
/app/src/main/res/values-nl/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
26 |
27 | Over Elementary
28 | Element details voor %s
29 | Periodiek systeem der elementen
30 | Lijst van elementen
31 | Elementary instellingen
32 | Sorteer op
33 |
34 | Kijk video
35 | Wikipedia
36 | Sorteer
37 | Zoom
38 |
39 | Over
40 | Instellingen
41 | Lijst
42 | Tabel
43 |
44 | Donker thema
45 | Temperatuur eenheden
46 | Eenheden om temperatuurwaarden weer te geven
47 | Element kleuren
48 | Eigenschappen gebruikt om de elementen te kleuren
49 | Blok waarde
50 | De waarde om onder het element symbool weer te geven
51 | Periodieke tabel besturing
52 | Toon de besturing voor de Periodieke Tabel in Tabel weergave
53 |
54 | Atoomnummer
55 | Symbool
56 | Naam
57 | Atoommassa
58 | Reeks
59 | Groep, periode, blok
60 | Elektronenconfiguratie
61 | Elektronen per schil
62 | Dichtheid
63 | Smeltpunt
64 | Kookpunt
65 | Soortelijke warmte
66 | Elektronegativiteit
67 | Abundantie
68 | Gemeenschappelijke isotopen
69 | Isotopische samenstelling
70 |
71 | Geef weer
72 | Kleur per
73 |
74 | Filter per naam of symbool
75 |
76 | Versie
77 | Website
78 | Licentie
79 | Bronnen
80 |
81 | groep
82 | periode
83 | blok
84 |
85 | onbekend
86 |
87 |
--------------------------------------------------------------------------------
/app/src/main/res/values-pt-rBR/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - Não-metais
27 | - Gases nobres
28 | - Metais alcalinos
29 | - Metais alcalino-terrosos
30 | - Semimetais
31 | - Halogênios
32 | - Metais
33 | - Metais de transição
34 | - Lantanídeos
35 | - Actinídeos
36 |
37 |
38 | - Categoria
39 | - Bloco
40 |
41 |
42 | - Massa atômica
43 | - Densidade (g/cm³)
44 | - Ponto de fusão (K)
45 | - Ponto de ebulição (K)
46 | - Calor específico (J/g·K)
47 | - Eletronegatividade (Pauling)
48 | - Abundância (mg/kg)
49 |
50 |
51 | - Número atômico
52 | - Nome do elemento
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-pt-rBR/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 | Sobre o Elementary
26 | Detalhes do elemento %s
27 | Tabela Periódica dos Elementos
28 | Lista dos elementos
29 | Configurações do Elementary
30 | Ordenar por
31 |
32 | Assistir vídeo
33 | Wikipédia
34 | Ordenar
35 | Zoom
36 |
37 | Sobre
38 | Configurações
39 | Exibição em lista
40 | Exibição em tabela
41 |
42 | Tema escuro
43 | Unidade de temperatura
44 | Unidade usada para mostrar os valores de temperatura
45 | Cores dos elementos
46 | Propriedade usada na cor dos elementos
47 | Valor do bloco
48 | Valor a exibir abaixo do símbolo do elemento
49 | Controles da Tabela Periódica
50 | Mostra os controles da Tabela Periódica na exibição em tabela
51 |
52 | Número atômico
53 | Símbolo
54 | Nome
55 | Massa atômica
56 | Categoria
57 | Grupo, período, bloco
58 | Configuração eletrônica
59 | Elétrons por nível
60 | Densidade
61 | Ponto de fusão
62 | Ponto de ebulição
63 | Calor específico
64 | Eletronegatividade
65 | Abundância
66 | Isótopos comuns
67 | Composição isotópica
68 |
69 | Mostrar
70 | Colorir por
71 |
72 | Filtrar por nome ou símbolo
73 |
74 | Versão
75 | Site
76 | Licença
77 | Fontes
78 |
79 | grupo
80 | período
81 | bloco
82 |
83 | desconhecido
84 |
85 |
--------------------------------------------------------------------------------
/app/src/main/res/values-ru/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | - Неметаллы
27 | - Благородные газы
28 | - Щелочные металлы
29 | - Щелочноземельные металлы
30 | - Металлоиды
31 | - Галогены
32 | - Металлы
33 | - Переходные металлы
34 | - Лантаноиды
35 | - Актиноиды
36 |
37 |
38 | - Категория
39 | - Блок
40 |
41 |
42 | - Атомный вес
43 | - Плотность (g/cm³)
44 | - Точка плавления (K)
45 | - Точка кипения (K)
46 | - Удельная теплоемкость (J/g·K)
47 | - Электроотрицательность (Pauling)
48 | - Кларковое число (mg/kg)
49 |
50 |
51 | - Атомное число
52 | - Название элемента
53 |
54 |
55 |
--------------------------------------------------------------------------------
/app/src/main/res/values-ru/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 | О Elementary
27 | Детали элемента %s
28 | Периодическая таблица элементов
29 | Список элементов
30 | Настройки Elementary
31 | Сортировка
32 |
33 | Просмотр видео
34 | Wikipedia
35 | Сортировка
36 | Масштаб
37 |
38 | О
39 | Настройки
40 | Список
41 | Таблица
42 |
43 | Темная тема
44 | Единицы температуры
45 | Единицы измерения температуры
46 | Цвета элемента
47 | Свойство для раскраски элементов
48 | Значение блока
49 | Значение под символом элемента
50 | Контролы периодической таблицы
51 | Показ контролов в режиме таблицы
52 |
53 | Атомное число
54 | Символ
55 | Имя
56 | Атомный вес
57 | Категория
58 | Группа, период, блок
59 | Электронная конфигурация
60 | Электронов на оболочку
61 | Плотность
62 | Точка плавления
63 | Точка кипения
64 | Specific heat
65 | Электроотрицательность
66 | Abundance
67 | Общие изотопы
68 | Изотопная композиция
69 |
70 | Отображение
71 | Раскраска по
72 |
73 | Фильтр по имени или символу
74 |
75 | Версия
76 | Вебсайт
77 | Лицензия
78 | Исходники
79 |
80 | группа
81 | период
82 | блок
83 |
84 | неизвестно
85 |
86 |
--------------------------------------------------------------------------------
/app/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
26 |
30 |
31 |
32 |
33 |
40 |
41 |
42 |
43 |
47 |
48 |
52 |
53 |
56 |
57 |
62 |
63 |
64 |
65 |
68 |
69 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/preferences.xml:
--------------------------------------------------------------------------------
1 |
2 |
24 |
25 |
29 |
37 |
45 |
52 |
57 |
58 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | repositories {
4 | google()
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:4.1.2'
9 | }
10 | }
11 |
12 | allprojects {
13 | repositories {
14 | google()
15 | jcenter()
16 | }
17 | }
18 |
19 | task clean(type: Delete) {
20 | delete rootProject.buildDir
21 | }
22 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | android.enableJetifier=true
2 | android.useAndroidX=true
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ultramega/elementary/4d3d8fa2aca373ac2b2676be1c6205c7e8934c9f/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sat Jan 30 11:08:21 PST 2021
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto init
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto init
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :init
68 | @rem Get command-line arguments, handling Windows variants
69 |
70 | if not "%OS%" == "Windows_NT" goto win9xME_args
71 |
72 | :win9xME_args
73 | @rem Slurp the command line arguments.
74 | set CMD_LINE_ARGS=
75 | set _SKIP=2
76 |
77 | :win9xME_args_slurp
78 | if "x%~1" == "x" goto execute
79 |
80 | set CMD_LINE_ARGS=%*
81 |
82 | :execute
83 | @rem Setup the command line
84 |
85 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
86 |
87 |
88 | @rem Execute Gradle
89 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
90 |
91 | :end
92 | @rem End local scope for the variables with windows NT shell
93 | if "%ERRORLEVEL%"=="0" goto mainEnd
94 |
95 | :fail
96 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
97 | rem the _cmd.exe /c_ return code!
98 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
99 | exit /b 1
100 |
101 | :mainEnd
102 | if "%OS%"=="Windows_NT" endlocal
103 |
104 | :omega
105 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------