That's still a pretty big question. I can give you some basic definitions for those terms if that is what you are asking - but to show summary statistics from your dataset and ask to have them all explained for every variable is probably too broad a question for this forum. You may have better luck with your question if you tell us what goal you are trying to accomplish, and what you have tried already to accomplish that goal.
With that being said, for what it's worth, here are some basic definitions of the terms you are asking for:
- mean: A measure of central tendency, typically calculated by adding up all observations and dividing that sum by the number of observations
- standard deviation: a measure of dispersion. A good heuristic for thinking about standard deviation is that the higher the standard deviation is, the further apart each observation is from other observations (this is just a heuristic and strictly speaking isn't mathematically true).
- trimmed: I'm not sure what function you are using to produce this, but this probably refers to a trimmed mean. A trimmed mean is the same as the mean mentioned above, but it excludes values on either extreme. A typical example would be to remove the 10% of values that are highest, 10% of values that are lowest, and calculate the mean from the remaining values.
- kurtosis: This is a measure of "tail fatness". A normal distribution has a kurtosis of 3. A kurtosis higher than three indicates fat tails i.e. more extreme outliers, and vice versa for a kurtosis of less than 3.